blob: 7dc8b52713cea53ac63d29fc0d8dc3b64ca049ba [file] [log] [blame]
package org.apache.xpath.objects;
import org.apache.xml.dtm.XType;
public class XDecimal extends XDouble // TBD: For now, just use this as a double.
{
/**
* Constructor for Decimal
*
* This one's actually being used, unlike most XObject empty ctors,
* because it may be created and _then_ set (by processToken)
* during stylesheet parsing.
*/
public XDecimal()
{
super();
}
}