Skip to content

Instantly share code, notes, and snippets.

@battlesteel
Last active November 1, 2019 19:45
Show Gist options
  • Save battlesteel/9c9b3b1bbb505d70774b3b948819dffe to your computer and use it in GitHub Desktop.
Save battlesteel/9c9b3b1bbb505d70774b3b948819dffe to your computer and use it in GitHub Desktop.
sout #Java
class GetterSetter {
private String name;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment