Examples of SvgDefinitionSrcElement


Examples of org.odftoolkit.odfdom.dom.element.svg.SvgDefinitionSrcElement

   * @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;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.