package org.jboss.tools.jsf.test; public class RefBean1 { private String property1; private String property2; private String property3; private String property4; private RefBean1 property5; public String getProperty1() { return property1; } public void setProperty1(String property1) { this.property1 = property1; } public String getProperty2() { return property2; } public void setProperty2(String property2) { this.property2 = property2; } public String getProperty3() { return property3; } public void setProperty3(String property3) { this.property3 = property3; } public String getProperty4() { return property4; } public void setProperty4(String property4) { this.property4 = property4; } public RefBean1 getProperty5() { return property5; } public void setProperty5(RefBean1 property5) { this.property5 = property5; } }