Skip to content

Instantly share code, notes, and snippets.

@ecanuto
Created April 16, 2018 09:59
Show Gist options
  • Save ecanuto/0ba0e6609d7357df7a141f38ab33d827 to your computer and use it in GitHub Desktop.
Save ecanuto/0ba0e6609d7357df7a141f38ab33d827 to your computer and use it in GitHub Desktop.
Java class property
public class User {
private String name;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
User user = new User();
user.SetName("Joe Doe");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment