Package org.jfree.xml.factory.objects
Class DecimalFormatObjectDescription
- java.lang.Object
-
- org.jfree.xml.factory.objects.AbstractObjectDescription
-
- org.jfree.xml.factory.objects.BeanObjectDescription
-
- org.jfree.xml.factory.objects.DecimalFormatObjectDescription
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,ObjectDescription
public class DecimalFormatObjectDescription extends BeanObjectDescription
An object-description for aDecimalFormatobject.- Author:
- Thomas Morgner
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DecimalFormatObjectDescription()Creates a new object description.DecimalFormatObjectDescription(java.lang.Class className)Creates a new object description.DecimalFormatObjectDescription(java.lang.Class className, boolean init)Deprecated.should no longer be used...
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectcreateObject()Creates an object (DecimalFormat) based on this description.voidsetParameterFromObject(java.lang.Object o)Sets the parameters of this description object to match the supplied object.-
Methods inherited from class org.jfree.xml.factory.objects.BeanObjectDescription
ignoreParameter, isParameterIgnored
-
Methods inherited from class org.jfree.xml.factory.objects.AbstractObjectDescription
configure, convertPrimitiveClass, equals, getConfig, getDefinedParameterNames, getInstance, getObjectClass, getParameter, getParameterDefinition, getParameterNames, getUnconfiguredInstance, hashCode, setParameter, setParameterDefinition
-
-
-
-
Constructor Detail
-
DecimalFormatObjectDescription
public DecimalFormatObjectDescription()
Creates a new object description.
-
DecimalFormatObjectDescription
public DecimalFormatObjectDescription(java.lang.Class className)
Creates a new object description.- Parameters:
className- the class.
-
DecimalFormatObjectDescription
public DecimalFormatObjectDescription(java.lang.Class className, boolean init)
Deprecated.should no longer be used...Creates a new object description.- Parameters:
className- the class.init- initialise
-
-
Method Detail
-
setParameterFromObject
public void setParameterFromObject(java.lang.Object o) throws ObjectFactoryException
Sets the parameters of this description object to match the supplied object.- Specified by:
setParameterFromObjectin interfaceObjectDescription- Overrides:
setParameterFromObjectin classBeanObjectDescription- Parameters:
o- the object (should be an instance ofDecimalFormat).- Throws:
ObjectFactoryException- if there is a problem while reading the properties of the given object.
-
createObject
public java.lang.Object createObject()
Creates an object (DecimalFormat) based on this description.- Specified by:
createObjectin interfaceObjectDescription- Overrides:
createObjectin classBeanObjectDescription- Returns:
- The object.
-
-