public XSAtomicType getAtomicType() {
return this;
}
public Long getFractionDigits() {
XsEFractionDigits fractionDigits = getRestriction().getFractionDigits();
if (fractionDigits == null) {
return atomicBaseType.getFractionDigits();
} else {
return new Long(fractionDigits.getValue());
}
}