Uses of Class
jnlp.sample.servlet.XMLNode

Packages that use XMLNode
jnlp.sample.servlet   
 

Uses of XMLNode in jnlp.sample.servlet
 

Methods in jnlp.sample.servlet that return XMLNode
static XMLNode XMLParsing.convert(org.w3c.dom.Node n)
           
static XMLNode XMLParsing.findChildElement(XMLNode elem, java.lang.String tag)
          Returns an child element with the current tag name or null.
static XMLNode XMLParsing.findElementPath(XMLNode elem, java.lang.String path)
          Parses a path string of the form and returns the specific Element node for that tag, or null if it does not exist.
 XMLNode XMLNode.getNested()
           
 XMLNode XMLNode.getNext()
           
 XMLNode XMLNode.getParent()
           
 

Methods in jnlp.sample.servlet with parameters of type XMLNode
static XMLNode XMLParsing.findChildElement(XMLNode elem, java.lang.String tag)
          Returns an child element with the current tag name or null.
static XMLNode XMLParsing.findElementPath(XMLNode elem, java.lang.String path)
          Parses a path string of the form and returns the specific Element node for that tag, or null if it does not exist.
static java.lang.String XMLParsing.getElementContent(XMLNode root, java.lang.String path)
          Like getElementContents(...) but with a defaultValue of null
static java.lang.String XMLParsing.getElementContent(XMLNode root, java.lang.String path, java.lang.String defaultvalue)
          Returns the value of the last element tag in the path, e.g., <..>value.
static java.lang.String[] XMLParsing.getMultiElementContent(XMLNode root, java.lang.String path)
          Like getElementContents(...) but with a defaultValue of null
static java.lang.String XMLParsing.getPathString(XMLNode e)
          Returns a string describing the current location in the DOM
static boolean XMLParsing.isElementPath(XMLNode root, java.lang.String path)
          Returns true if the path exists in the document, otherwise false
 void XMLNode.setNested(XMLNode nested)
           
 void XMLNode.setNext(XMLNode next)
           
 void XMLNode.setParent(XMLNode parent)
           
static void XMLParsing.visitChildrenElements(XMLNode elem, XMLParsing.ElementVisitor ev)
           
abstract  void XMLParsing.ElementVisitor.visitElement(XMLNode e)
           
static void XMLParsing.visitElements(XMLNode root, java.lang.String path, XMLParsing.ElementVisitor ev)
          Visits all elements which matches the .
 

Constructors in jnlp.sample.servlet with parameters of type XMLNode
XMLNode(java.lang.String name, XMLAttribute attr, XMLNode nested, XMLNode next)
          Creates a ELEMENT node
 



Copyright © 2005-2010 Sun Microsystems. All Rights Reserved.