1 22 package org.jboss.test.system.controller.support; 23 24 import java.util.Iterator ; 25 26 32 public class JavaBean 33 { 34 private String property1; 35 private Integer property2; 36 private Iterator property3; 37 38 public String getProperty1() 39 { 40 return property1; 41 } 42 43 public void setProperty1(String property1) 44 { 45 this.property1 = property1; 46 } 47 48 public Integer getProperty2() 49 { 50 return property2; 51 } 52 53 public void setProperty2(Integer property2) 54 { 55 this.property2 = property2; 56 } 57 58 public Iterator getProperty3() 59 { 60 return property3; 61 } 62 63 public void setProperty3(Iterator property3) 64 { 65 this.property3 = property3; 66 } 67 } 68 | Popular Tags |