Skip to content

Instantly share code, notes, and snippets.

@javadude
Created February 14, 2019 06:19
Show Gist options
  • Save javadude/e43c6c1f8791f0b2e6b63b2dd4179b92 to your computer and use it in GitHub Desktop.
Save javadude/e43c6c1f8791f0b2e6b63b2dd4179b92 to your computer and use it in GitHub Desktop.
// JAVA CODE
class Foo {
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