Package org.jfree.xml.attributehandlers
Class DoubleAttributeHandler
- java.lang.Object
-
- org.jfree.xml.attributehandlers.DoubleAttributeHandler
-
- All Implemented Interfaces:
AttributeHandler
public class DoubleAttributeHandler extends Object implements AttributeHandler
-
-
Constructor Summary
Constructors Constructor Description DoubleAttributeHandler()
Creates a new attribute handler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toAttributeValue(Object o)
Converts the attribute to a string.Object
toPropertyValue(String s)
Converts a string to aDouble
.
-
-
-
Method Detail
-
toAttributeValue
public String toAttributeValue(Object o)
Converts the attribute to a string.- Specified by:
toAttributeValue
in interfaceAttributeHandler
- Parameters:
o
- the attribute (Double
expected).- Returns:
- A string representing the
Double
value.
-
toPropertyValue
public Object toPropertyValue(String s)
Converts a string to aDouble
.- Specified by:
toPropertyValue
in interfaceAttributeHandler
- Parameters:
s
- the string.- Returns:
- a
Double
.
-
-