Package org.openntf.domino.utils.xml

Examples of org.openntf.domino.utils.xml.XMLNode


   *
   * @see org.openntf.domino.types.Design#getUniversalID()
   */
  @Override
  public String getUniversalID() {
    XMLNode node = getDxl().selectSingleNode("//noteinfo");
    if (node != null) {
      return node.getAttribute("unid");
    }
    return "";
  }
View Full Code Here

TOP

Related Classes of org.openntf.domino.utils.xml.XMLNode

Copyright © 2018 www.massapicom. 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.