public class JRPropertyExpressionFactory extends JRBaseFactory
{
public Object createObject(Attributes attrs) throws Exception
{
JRDesignPropertyExpression propertyExpression = new JRDesignPropertyExpression();
String name = attrs.getValue(JRXmlConstants.ATTRIBUTE_name);
propertyExpression.setName(name);
return propertyExpression;
}