Created
October 22, 2019 10:12
-
-
Save HyeonUkCho/5d1bfb0a0e42ab5620b1bd7f32780c8a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Getter @Setter private boolean employed = true; | |
@Setter(AccessLevel.PROTECTED) private String name; | |
private boolean employed = true; | |
private String name; | |
public boolean isEmployed() { | |
return employed; | |
} | |
public void setEmployed(final boolean employed) { | |
this.employed = employed; | |
} | |
protected void setName(final String name) { | |
this.name = name; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment