Skip to content

Instantly share code, notes, and snippets.

@agustarc
Created April 30, 2019 00:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agustarc/92011eef7347ea47e415bc5e307a4010 to your computer and use it in GitHub Desktop.
Save agustarc/92011eef7347ea47e415bc5e307a4010 to your computer and use it in GitHub Desktop.
public interface Account {
@NotNull
String getName();
void setName(@NotNull String var1);
int getAge();
void setAge(int var1);
boolean getHireable();
void setHireable(boolean var1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment