* @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
*/
public Double getDrawPathStretchpointYAttribute() {
DrawPathStretchpointYAttribute attr = (DrawPathStretchpointYAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "path-stretchpoint-y");
if (attr != null) {
return Double.valueOf(attr.doubleValue());
}
return null;
}
/**