Skip to content

Instantly share code, notes, and snippets.

@naoto
Created March 11, 2013 07:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naoto/5132477 to your computer and use it in GitHub Desktop.
Save naoto/5132477 to your computer and use it in GitHub Desktop.
// Java1.4 で書くと...
public class User {
private String name;
public void setName(String name){
this.name = name;
}
public String getName(){
return this.name;
}
}
// Java7 で書くと...
public class User {
@Getter @Setter String name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment