Package org.jfree.xml.util
Class AttributeDefinition
- java.lang.Object
-
- org.jfree.xml.util.AttributeDefinition
-
public class AttributeDefinition extends Object
An attribute definition.
-
-
Constructor Summary
Constructors Constructor Description AttributeDefinition(String propertyName, String attributeName, AttributeHandler handler)
Creates a new attribute definition.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAttributeName()
Returns the attribute name.AttributeHandler
getHandler()
Returns the handler.String
getPropertyName()
Returns the property name.
-
-
-
Constructor Detail
-
AttributeDefinition
public AttributeDefinition(String propertyName, String attributeName, AttributeHandler handler)
Creates a new attribute definition.- Parameters:
propertyName
- the property name.attributeName
- the attribute name.handler
- the handler.
-
-
Method Detail
-
getPropertyName
public String getPropertyName()
Returns the property name.- Returns:
- the property name.
-
getAttributeName
public String getAttributeName()
Returns the attribute name.- Returns:
- the attribute name.
-
getHandler
public AttributeHandler getHandler()
Returns the handler.- Returns:
- the handler.
-
-