Uses of Class
org.cybergarage.xml.Node
Package | Description |
---|---|
net.i2p.router.news |
Classes to parse the I2P news format, which follows the Atom
standard with additional metadata for the I2P update notification feature.
|
org.cybergarage.soap | |
org.cybergarage.upnp | |
org.cybergarage.upnp.control | |
org.cybergarage.upnp.xml | |
org.cybergarage.xml | |
org.cybergarage.xml.parser |
-
Uses of Node in net.i2p.router.news
Methods in net.i2p.router.news that return Node Modifier and Type Method Description Node
NewsXMLParser. parse(File file)
Process the XML file.Node
NewsXMLParser. parse(InputStream in)
Process the XML input stream.Node
XMLParser. parse(Node parentNode, Node domNode, int rank)
Modified from UPnP JaxpParserMethods in net.i2p.router.news that return types with arguments of type Node Modifier and Type Method Description static List<Node>
NewsXMLParser. getNodes(Node node, String name)
Helper to get all Nodes matching the nameMethods in net.i2p.router.news with parameters of type Node Modifier and Type Method Description static List<Node>
NewsXMLParser. getNodes(Node node, String name)
Helper to get all Nodes matching the nameNode
XMLParser. parse(Node parentNode, Node domNode, int rank)
Modified from UPnP JaxpParserstatic void
XMLParser. toString(StringBuilder buf, Node node)
A replacement for Node.toString(), which does not recognize #text.Method parameters in net.i2p.router.news with type arguments of type Node Modifier and Type Method Description static boolean
PersistNews. store(I2PAppContext ctx, List<Node> entries)
Store each entry.boolean
NewsManager. storeEntries(List<Node> entries)
Store each entry. -
Uses of Node in org.cybergarage.soap
Methods in org.cybergarage.soap that return Node Modifier and Type Method Description static Node
SOAP. createEnvelopeBodyNode()
Node
SOAPRequest. getBodyNode()
Node
SOAPResponse. getBodyNode()
Node
SOAPRequest. getEnvelopeNode()
Node
SOAPResponse. getEnvelopeNode()
Node
SOAPResponse. getFaultActorNode()
Node
SOAPResponse. getFaultCodeNode()
Node
SOAPResponse. getFaultDetailNode()
Node
SOAPResponse. getFaultNode()
Node
SOAPResponse. getFaultStringNode()
Node
SOAPResponse. getMethodResponseNode(String name)
Methods in org.cybergarage.soap with parameters of type Node Modifier and Type Method Description void
SOAPRequest. setContent(Node node)
void
SOAPResponse. setContent(Node node)
void
SOAPRequest. setEnvelopeNode(Node node)
void
SOAPResponse. setEnvelopeNode(Node node)
-
Uses of Node in org.cybergarage.upnp
Methods in org.cybergarage.upnp that return Node Modifier and Type Method Description Node
Action. getActionNode()
Node
Argument. getActionNode()
Node
AllowedValue. getAllowedValueNode()
Node
AllowedValueRange. getAllowedValueRangeNode()
Node
Argument. getArgumentNode()
Node
Device. getDeviceNode()
Node
Icon. getIconNode()
Node
Device. getRootNode()
Node
Service. getServiceNode()
Node
StateVariable. getServiceNode()
Node
StateVariable. getStateVariableNode()
Methods in org.cybergarage.upnp with parameters of type Node Modifier and Type Method Description static boolean
Action. isActionNode(Node node)
static boolean
AllowedValue. isAllowedValueNode(Node node)
static boolean
AllowedValueRange. isAllowedValueRangeNode(Node node)
static boolean
Argument. isArgumentNode(Node node)
static boolean
Device. isDeviceNode(Node node)
static boolean
Icon. isIconNode(Node node)
static boolean
Service. isServiceNode(Node node)
static boolean
StateVariable. isStateVariableNode(Node node)
void
Device. setDeviceNode(Node node)
void
Device. setRootNode(Node node)
(package private) void
StateVariable. setServiceNode(Node n)
Constructors in org.cybergarage.upnp with parameters of type Node Constructor Description Action(Node serviceNode)
Action(Node serviceNode, Node actionNode)
AllowedValue(Node node)
AllowedValueRange(Node node)
Argument(Node servNode)
Argument(Node servNode, Node argNode)
Device(Node device)
Device(Node root, Node device)
Icon(Node node)
Service(Node node)
StateVariable(Node serviceNode, Node stateVarNode)
-
Uses of Node in org.cybergarage.upnp.control
Methods in org.cybergarage.upnp.control that return Node Modifier and Type Method Description Node
ActionRequest. getActionNode()
-
Uses of Node in org.cybergarage.upnp.xml
Methods in org.cybergarage.upnp.xml that return Node Modifier and Type Method Description Node
NodeData. getNode()
Node
ServiceData. getSCPDNode()
Methods in org.cybergarage.upnp.xml with parameters of type Node Modifier and Type Method Description void
NodeData. setNode(Node node)
void
ServiceData. setSCPDNode(Node node)
-
Uses of Node in org.cybergarage.xml
Methods in org.cybergarage.xml that return Node Modifier and Type Method Description Node
NodeList. getEndsWith(String name)
Node
Node. getNode(int index)
Node
Node. getNode(String name)
Node
NodeList. getNode(int n)
Node
NodeList. getNode(String name)
Node
Node. getNodeEndsWith(String name)
Node
Node. getParentNode()
Node
Node. getRootNode()
Node
Parser. parse(File descriptionFile)
abstract Node
Parser. parse(InputStream inStream)
Node
Parser. parse(String descr)
Node
Parser. parse(URL locationURL)
Methods in org.cybergarage.xml with parameters of type Node Modifier and Type Method Description void
Node. addNode(Node node)
void
Node. insertNode(Node node, int index)
boolean
Node. removeNode(Node node)
boolean
Node. set(Node otherNode)
void
Node. setParentNode(Node node)
Constructors in org.cybergarage.xml with parameters of type Node Constructor Description Node(Node otherNode)
-
Uses of Node in org.cybergarage.xml.parser