*
* @param xlinkHrefValue the <code>String</code> value of <code>XlinkHrefAttribute</code>, see {@odf.attribute xlink:href} at specification
* @return the element {@odf.element form:connection-resource}
*/
public FormConnectionResourceElement newFormConnectionResourceElement(String xlinkHrefValue) {
FormConnectionResourceElement formConnectionResource = ((OdfFileDom) this.ownerDocument).newOdfElement(FormConnectionResourceElement.class);
formConnectionResource.setXlinkHrefAttribute(xlinkHrefValue);
this.appendChild(formConnectionResource);
return formConnectionResource;
}