Package org.jfree.xml.attributehandlers
Class BooleanAttributeHandler
- java.lang.Object
-
- org.jfree.xml.attributehandlers.BooleanAttributeHandler
-
- All Implemented Interfaces:
AttributeHandler
public class BooleanAttributeHandler extends java.lang.Object implements AttributeHandler
A class that handles the conversion ofBooleanattributes to and from theirStringrepresentation.
-
-
Constructor Summary
Constructors Constructor Description BooleanAttributeHandler()Creates a new attribute handler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoAttributeValue(java.lang.Object o)Converts the attribute to a string.java.lang.ObjecttoPropertyValue(java.lang.String s)Converts a string to aBoolean.
-
-
-
Constructor Detail
-
BooleanAttributeHandler
public BooleanAttributeHandler()
Creates a new attribute handler.
-
-
Method Detail
-
toAttributeValue
public java.lang.String toAttributeValue(java.lang.Object o)
Converts the attribute to a string.- Specified by:
toAttributeValuein interfaceAttributeHandler- Parameters:
o- the attribute (Booleanexpected).- Returns:
- A string representing the
Booleanvalue.
-
toPropertyValue
public java.lang.Object toPropertyValue(java.lang.String s)
Converts a string to aBoolean.- Specified by:
toPropertyValuein interfaceAttributeHandler- Parameters:
s- the string.- Returns:
- a
Boolean.
-
-