return df.formatValue(propertyId,value,l);
}
public Object parsePropertyValue(String value) throws Exception {
DataPropertyFormatter df = getDataPropertyFormatter();
return isStaticProperty() ? df.parsePropertyValue(getPropertyClass(), value) : df.parsePropertyValue(getDataProperty(),value);
}
public Class getPropertyClass() {
return filter.getPropertyClass(propertyId);
}