Skip to content

Instantly share code, notes, and snippets.

@Riduidel
Created June 29, 2011 13:37
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 Riduidel/1053851 to your computer and use it in GitHub Desktop.
Save Riduidel/1053851 to your computer and use it in GitHub Desktop.
Un bean tout simple (mais sans révisions)
public class Bean {
private String name;
public String getName() { return 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