* @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
*/
public Double getNumberDisplayFactorAttribute() {
NumberDisplayFactorAttribute attr = (NumberDisplayFactorAttribute) getOdfAttribute(OdfDocumentNamespace.NUMBER, "display-factor");
if (attr != null) {
return Double.valueOf(attr.doubleValue());
}
return Double.valueOf(NumberDisplayFactorAttribute.DEFAULT_VALUE);
}
/**