Skip to content

Instantly share code, notes, and snippets.

@werpu
Created July 8, 2011 07:25
Show Gist options
  • Select an option

  • Save werpu/1071307 to your computer and use it in GitHub Desktop.

Select an option

Save werpu/1071307 to your computer and use it in GitHub Desktop.
@ManagedBean
public class TestBean implements Serializable {
List<Person> _personList = new LinkedList();
Integer _val1 = 1;
public List<Person> getPersonList() {
return _personList;
}
public void setPersonList(List<Person> personList) {
_personList = personList;
}
public Integer getVal1() {
return _val1;
}
public void setVal1(Integer val1) {
_val1 = val1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment