Examples of newTextReferenceRefElement()


Examples of org.odftoolkit.odfdom.dom.element.text.TextSpanElement.newTextReferenceRefElement()

   *            the display type.
   */
  public void appendReferenceTo(OdfElement odfEle, DisplayType type) {
    // create reference ref element.
    TextSpanElement spanElement = ((OdfFileDom) odfEle.getOwnerDocument()).newOdfElement(TextSpanElement.class);
    TextReferenceRefElement referenceRefElement = spanElement.newTextReferenceRefElement();
    referenceRefElement.setTextRefNameAttribute(name);
    referenceRefElement.setTextReferenceFormatAttribute(type.toString());
    // insert
    if (odfEle instanceof TextPElement) {
      odfEle.appendChild(spanElement);
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.