Created
July 8, 2011 07:25
-
-
Save werpu/1071307 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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