Examples of newTextAuthorInitialsElement()


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

  AuthorField(OdfElement odfElement, boolean isAuthorInitials) {
    isInitials = isAuthorInitials;
    TextSpanElement spanElement = ((OdfFileDom) odfElement.getOwnerDocument()).newOdfElement(TextSpanElement.class);
    odfElement.appendChild(spanElement);
    if (isAuthorInitials) {
      authorInitialsElement = spanElement.newTextAuthorInitialsElement();
      authorInitialsElement.setTextFixedAttribute(false);
    } else {
      authorNameElement = spanElement.newTextAuthorNameElement();
      authorNameElement.setTextFixedAttribute(false);
    }
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.