Skip to content

Instantly share code, notes, and snippets.

@bricker
Created February 15, 2015 06:25
Show Gist options
  • Save bricker/747e20b4c4292a64941d to your computer and use it in GitHub Desktop.
Save bricker/747e20b4c4292a64941d to your computer and use it in GitHub Desktop.
public class Person {
private String mName;
public Person() {}
public void setName(String mName) { this.mName = mName; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment