org.jbind.xml.instance.data
Class DecimalData

java.lang.Object
  extended byorg.jbind.xml.instance.data.AbstractData
      extended byorg.jbind.xml.instance.data.AbstractSimpleData
          extended byorg.jbind.xml.instance.data.AbstractDecimalData
              extended byorg.jbind.xml.instance.data.DecimalData
All Implemented Interfaces:
IAnySimpleTypeData, IAnyTypeData, IDecimalData, IHasDigits, IHasOrder, IHasTotalOrder, ISimpleData, ITextContentProvider

public class DecimalData
extends AbstractDecimalData


Constructor Summary
DecimalData()
           
 
Method Summary
 int compareSubTypeData_(IDecimalData aData)
          Compares this decimal data with the specified data.
 void doAccept(java.lang.String aString)
          Hook method that accepts the normalized value and converts it into a corresponging internal representation (the so called simple storage object).
 java.math.BigDecimal getBigDecimal()
           
 java.lang.String getCanonicalForm_()
          Gets the canonical form.
 java.lang.Object getSimpleStorageObject()
          Gets the simple storage object.
 void setBigDecimal(java.math.BigDecimal aNewValue)
           
 void setSimpleStorageObject(java.lang.Object aValue)
           
 
Methods inherited from class org.jbind.xml.instance.data.AbstractDecimalData
compareDecimal_, getNbDigits, getNbFractionDigits, isEqual, isGreater, isGreaterOrEqual, isLess, isLessOrEqual, simpleStorageValueEquals, simpleStorageValueHashCode
 
Methods inherited from class org.jbind.xml.instance.data.AbstractSimpleData
acceptImpl_, completeSimpleStorageAssignment_, doAcceptEnds_, doAcceptStarts_, getLexicalValue_, getNormalizedValue_, getObject, getTextContent_, setLexicalValue_, setObject, toString
 
Methods inherited from class org.jbind.xml.instance.data.AbstractData
accept_, addReferencedData_, createElement_, createElement_, createUncheckedAttributeData_, equals, fetchByXPath_, getAttribute_, getDataDesc_, getFixed_, getImpl_, getParent_, getSubstitutionHead_, getType_, hashCode, isDefault_, isNil_, iterAttributes_, iterElements_, iterReferencedData_, newElementData_, numberByXPath_, removeAttributeData_, selectByXPath_, setAttribute_, setDataDesc_, setImpl_, setSubstitutionHead_, setType_, stringByXPath_, testByXPath_
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.jbind.xml.core.data.IAnySimpleTypeData
getObject, setObject, toString
 
Methods inherited from interface org.jbind.xml.core.data.IAnyTypeData
accept_, acceptImpl_, addReferencedData_, createElement_, createElement_, equals, getAttribute_, getDataDesc_, getImpl_, getParent_, getSubstitutionHead_, getType_, hashCode, isDefault_, isNil_, iterAttributes_, iterElements_, setAttribute_, setDataDesc_, setImpl_, setSubstitutionHead_, setType_
 
Methods inherited from interface org.jbind.xml.core.data.ISimpleData
getLexicalValue_, getNormalizedValue_, setLexicalValue_
 
Methods inherited from interface org.jbind.xml.core.base.ITextContentProvider
getTextContent_
 

Constructor Detail

DecimalData

public DecimalData()
Method Detail

doAccept

public void doAccept(java.lang.String aString)
              throws XmlException
Description copied from class: AbstractSimpleData
Hook method that accepts the normalized value and converts it into a corresponging internal representation (the so called simple storage object).

If an exception is raised during execution of the method then this data object may be inconsistent. It is in the responsibility of the caller either to rollback the changes or to discard this data object.

Overrides:
doAccept in class AbstractDecimalData
Throws:
XmlException

getBigDecimal

public java.math.BigDecimal getBigDecimal()

setBigDecimal

public void setBigDecimal(java.math.BigDecimal aNewValue)
                   throws XmlException
Throws:
XmlException

compareSubTypeData_

public int compareSubTypeData_(IDecimalData aData)
Description copied from interface: IDecimalData
Compares this decimal data with the specified data. The type of this decimal data must be a base type of the type of the specified data.

Returns:
Returns -1, 0, or 1 if this decimal data is less than, equal to, or greater than the specified data, respectively.

getCanonicalForm_

public java.lang.String getCanonicalForm_()
Description copied from interface: ISimpleData
Gets the canonical form. The canonical form of a data object is the result of converting the data into a string.

Returns:
A string (required).

getSimpleStorageObject

public java.lang.Object getSimpleStorageObject()
Description copied from interface: ISimpleData
Gets the simple storage object. If the value of the simple data object is stored with a reference type then the simple storage object is the same as the value object. Otherwise the value is stored with a primitive type. In this case the simple storage object wraps the primitive value.

Returns:
(required).

setSimpleStorageObject

public void setSimpleStorageObject(java.lang.Object aValue)
Specified by:
setSimpleStorageObject in class AbstractSimpleData