12-20-2010 06:30 AM
class AlfrescoClass {
protected String test = new String("Test");
public String getTest() {
return this.test;
}
public void setName(String Test) {
this.example = Text;
}
}
class Example extends AlfrescoClass{
protected String name = new String("Name");
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
<h:outputText value="#{Example.name}" />
<h:outputText value="#{Example.test}" />
12-20-2010 11:22 AM
12-20-2010 02:56 PM
<bean id="Example" class="com.test.web.bean.Example" >
</bean>
would I put the properties from parent class?12-22-2010 04:05 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.