* Receives the value of the ODFDOM attribute representation <code>ChartErrorUpperLimitAttribute</code> , See {@odf.attribute chart:error-upper-limit}
*
* @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
*/
public Double getChartErrorUpperLimitAttribute() {
ChartErrorUpperLimitAttribute attr = (ChartErrorUpperLimitAttribute) getOdfAttribute(OdfDocumentNamespace.CHART, "error-upper-limit");
if (attr != null) {
return Double.valueOf(attr.doubleValue());
}
return null;
}