* @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 svg:definition-src}
*/
public SvgDefinitionSrcElement newSvgDefinitionSrcElement(String xlinkHrefValue, String xlinkTypeValue) {
SvgDefinitionSrcElement svgDefinitionSrc = ((OdfFileDom) this.ownerDocument).newOdfElement(SvgDefinitionSrcElement.class);
svgDefinitionSrc.setXlinkHrefAttribute(xlinkHrefValue);
svgDefinitionSrc.setXlinkTypeAttribute(xlinkTypeValue);
this.appendChild(svgDefinitionSrc);
return svgDefinitionSrc;
}