* @param xlinkHrefValue the <code>String</code> value of <code>XlinkHrefAttribute</code>, see {@odf.attribute xlink:href} at specification
* @param xlinkTypeValue the <code>String</code> value of <code>XlinkTypeAttribute</code>, see {@odf.attribute xlink:type} at specification
* @return the element {@odf.element draw:a}
*/
public DrawAElement newDrawAElement(String xlinkHrefValue, String xlinkTypeValue) {
DrawAElement drawA = ((OdfFileDom) this.ownerDocument).newOdfElement(DrawAElement.class);
drawA.setXlinkHrefAttribute(xlinkHrefValue);
drawA.setXlinkTypeAttribute(xlinkTypeValue);
this.appendChild(drawA);
return drawA;
}