* Child element is new in Odf 1.2
*
* @return the element {@odf.element draw:glue-point}
*/
public DrawGluePointElement newDrawGluePointElement(String drawEscapeDirectionValue, String drawIdValue, String svgXValue, String svgYValue) {
DrawGluePointElement drawGluePoint = ((OdfFileDom) this.ownerDocument).newOdfElement(DrawGluePointElement.class);
drawGluePoint.setDrawEscapeDirectionAttribute(drawEscapeDirectionValue);
drawGluePoint.setDrawIdAttribute(drawIdValue);
drawGluePoint.setSvgXAttribute(svgXValue);
drawGluePoint.setSvgYAttribute(svgYValue);
this.appendChild(drawGluePoint);
return drawGluePoint;
}