* @param drawConcaveValue the <code>Boolean</code> value of <code>DrawConcaveAttribute</code>, see {@odf.attribute draw:concave} at specification
* @param drawCornersValue the <code>Integer</code> value of <code>DrawCornersAttribute</code>, see {@odf.attribute draw:corners} at specification
* @return the element {@odf.element draw:regular-polygon}
*/
public DrawRegularPolygonElement newDrawRegularPolygonElement(boolean drawConcaveValue, int drawCornersValue) {
DrawRegularPolygonElement drawRegularPolygon = ((OdfFileDom) this.ownerDocument).newOdfElement(DrawRegularPolygonElement.class);
drawRegularPolygon.setDrawConcaveAttribute(drawConcaveValue);
drawRegularPolygon.setDrawCornersAttribute(drawCornersValue);
this.appendChild(drawRegularPolygon);
return drawRegularPolygon;
}