}
public Object _text(Property property) {
if( property.getValue() instanceof SimpleValueProperty ) {
StyledString s = new StyledString(property.getName());
SimpleValueProperty p = (SimpleValueProperty) property.getValue();
s.append(" : " + getSimplePropertValue(p), StyledString.QUALIFIER_STYLER);
return s;
} else if( property.getValue() instanceof ControllerHandledValueProperty ) {
StyledString s = new StyledString(property.getName());
ControllerHandledValueProperty p = (ControllerHandledValueProperty) property.getValue();
s.append( " : " + p.getMethodname(),StyledString.QUALIFIER_STYLER);
return s;
} else if( property.getValue() instanceof ReferenceValueProperty ) {
StyledString s = new StyledString(property.getName());
ReferenceValueProperty p = (ReferenceValueProperty) property.getValue();
if( p.getReference() != null ) {
s.append(" : " + (p.getReference() instanceof Element ? ((Element)p.getReference()).getName() : ((IncludeValueProperty)p.getReference()).getName()),StyledString.QUALIFIER_STYLER);
}
return s;
} else if( property.getValue() instanceof ResourceValueProperty ) {
StyledString s = new StyledString(property.getName());