Public Member Functions

com.cosylab.logging.engine.DataNode Class Reference

Inherits org::w3c::dom::Node.

List of all members.

Public Member Functions

 DataNode (Node node) throws DOMException
org.w3c.dom.Node appendChild (org.w3c.dom.Node arg1) throws org.w3c.dom.DOMException
org.w3c.dom.Node cloneNode (boolean arg1)
org.w3c.dom.NamedNodeMap getAttributes ()
org.w3c.dom.NodeList getChildNodes ()
org.w3c.dom.Node getFirstChild ()
org.w3c.dom.Node getLastChild ()
String getLocalName ()
String getName ()
String getNamespaceURI ()
org.w3c.dom.Node getNextSibling ()
String getNodeName ()
short getNodeType ()
String getNodeValue () throws org.w3c.dom.DOMException
org.w3c.dom.Document getOwnerDocument ()
org.w3c.dom.Node getParentNode ()
String getPrefix ()
org.w3c.dom.Node getPreviousSibling ()
boolean hasAttributes ()
boolean hasChildNodes ()
org.w3c.dom.Node insertBefore (org.w3c.dom.Node arg1, org.w3c.dom.Node arg2) throws org.w3c.dom.DOMException
boolean isSupported (String arg1, String arg2)
void normalize ()
org.w3c.dom.Node removeChild (org.w3c.dom.Node arg1) throws org.w3c.dom.DOMException
org.w3c.dom.Node replaceChild (org.w3c.dom.Node arg1, org.w3c.dom.Node arg2) throws org.w3c.dom.DOMException
void setNodeValue (String arg1) throws org.w3c.dom.DOMException
void setPrefix (String arg1) throws org.w3c.dom.DOMException
String toString ()
short compareDocumentPosition (Node other) throws DOMException
String getBaseURI ()
Object getFeature (String feature, String version)
String getTextContent () throws DOMException
Object getUserData (String key)
boolean isDefaultNamespace (String namespaceURI)
boolean isEqualNode (Node arg)
boolean isSameNode (Node other)
String lookupNamespaceURI (String prefix)
String lookupPrefix (String namespaceURI)
void setTextContent (String textContent) throws DOMException
Object setUserData (String key, Object data, UserDataHandler handler)

Detailed Description

This class is a wrapper for org.w3c.dom.Node with the addition of a method, specific for the Data log entry getName(). It is also required that the Data has at least one child, the content.

TODO: once ACS has fully moved to J2SE 5, the new DOM Level 3 methods should be fully implemented instead of the current mock impl. On first sight it seems that the getUserObject method could have something to do with the name variable.


Constructor & Destructor Documentation

com.cosylab.logging.engine.DataNode.DataNode ( Node  node  )  throws DOMException

DataNode constructor comment.


Member Function Documentation

org.w3c.dom.Node com.cosylab.logging.engine.DataNode.appendChild ( org.w3c.dom.Node  arg1  )  throws org.w3c.dom.DOMException

appendChild method comment.

org.w3c.dom.Node com.cosylab.logging.engine.DataNode.cloneNode ( boolean  arg1  ) 

cloneNode method comment.

short com.cosylab.logging.engine.DataNode.compareDocumentPosition ( Node  other  )  throws DOMException

DOM level 3 method, not implemented. Returns -1.

See also:
org.w3c.dom.Node.compareDocumentPosition(org.w3c.dom.Node)
org.w3c.dom.NamedNodeMap com.cosylab.logging.engine.DataNode.getAttributes (  ) 

getAttributes method comment.

String com.cosylab.logging.engine.DataNode.getBaseURI (  ) 

DOM level 3 method, not implemented. Returns "".

See also:
org.w3c.dom.Node.getBaseURI()
org.w3c.dom.NodeList com.cosylab.logging.engine.DataNode.getChildNodes (  ) 

getChildNodes method comment.

Object com.cosylab.logging.engine.DataNode.getFeature ( String  feature,
String  version 
)

DOM level 3 method, not implemented. Returns null.

See also:
org.w3c.dom.Node.getFeature(java.lang.String, java.lang.String)
org.w3c.dom.Node com.cosylab.logging.engine.DataNode.getFirstChild (  ) 

getFirstChild method comment.

org.w3c.dom.Node com.cosylab.logging.engine.DataNode.getLastChild (  ) 

getLastChild method comment.

String com.cosylab.logging.engine.DataNode.getLocalName (  ) 

getLocalName method comment.

String com.cosylab.logging.engine.DataNode.getName (  ) 
String com.cosylab.logging.engine.DataNode.getNamespaceURI (  ) 

getNamespaceURI method comment.

org.w3c.dom.Node com.cosylab.logging.engine.DataNode.getNextSibling (  ) 

getNextSibling method comment.

String com.cosylab.logging.engine.DataNode.getNodeName (  ) 

getNodeName method comment.

short com.cosylab.logging.engine.DataNode.getNodeType (  ) 

getNodeType method comment.

String com.cosylab.logging.engine.DataNode.getNodeValue (  )  throws org.w3c.dom.DOMException

getNodeValue method comment.

org.w3c.dom.Document com.cosylab.logging.engine.DataNode.getOwnerDocument (  ) 

getOwnerDocument method comment.

org.w3c.dom.Node com.cosylab.logging.engine.DataNode.getParentNode (  ) 

getParentNode method comment.

String com.cosylab.logging.engine.DataNode.getPrefix (  ) 

getPrefix method comment.

org.w3c.dom.Node com.cosylab.logging.engine.DataNode.getPreviousSibling (  ) 

getPreviousSibling method comment.

String com.cosylab.logging.engine.DataNode.getTextContent (  )  throws DOMException

DOM level 3 method, not implemented. Returns "".

See also:
org.w3c.dom.Node.getTextContent()
Object com.cosylab.logging.engine.DataNode.getUserData ( String  key  ) 

DOM level 3 method, not implemented. Returns null.

See also:
org.w3c.dom.Node.getUserData(java.lang.String)
boolean com.cosylab.logging.engine.DataNode.hasAttributes (  ) 

hasAttributes method comment.

boolean com.cosylab.logging.engine.DataNode.hasChildNodes (  ) 

hasChildNodes method comment.

org.w3c.dom.Node com.cosylab.logging.engine.DataNode.insertBefore ( org.w3c.dom.Node  arg1,
org.w3c.dom.Node  arg2 
) throws org.w3c.dom.DOMException

insertBefore method comment.

boolean com.cosylab.logging.engine.DataNode.isDefaultNamespace ( String  namespaceURI  ) 

DOM level 3 method, not implemented. Returns false.

See also:
org.w3c.dom.Node.isDefaultNamespace(java.lang.String)
boolean com.cosylab.logging.engine.DataNode.isEqualNode ( Node  arg  ) 

DOM level 3 method, not implemented. Returns false.

See also:
org.w3c.dom.Node.isEqualNode(org.w3c.dom.Node)
boolean com.cosylab.logging.engine.DataNode.isSameNode ( Node  other  ) 

DOM level 3 method, not implemented. Returns false.

See also:
org.w3c.dom.Node.isSameNode(org.w3c.dom.Node)
boolean com.cosylab.logging.engine.DataNode.isSupported ( String  arg1,
String  arg2 
)

isSupported method comment.

String com.cosylab.logging.engine.DataNode.lookupNamespaceURI ( String  prefix  ) 

DOM level 3 method, not implemented. Returns "".

See also:
org.w3c.dom.Node.lookupNamespaceURI(java.lang.String)
String com.cosylab.logging.engine.DataNode.lookupPrefix ( String  namespaceURI  ) 

DOM level 3 method, not implemented. Returns "".

See also:
org.w3c.dom.Node.lookupPrefix(java.lang.String)
void com.cosylab.logging.engine.DataNode.normalize (  ) 

normalize method comment.

org.w3c.dom.Node com.cosylab.logging.engine.DataNode.removeChild ( org.w3c.dom.Node  arg1  )  throws org.w3c.dom.DOMException

removeChild method comment.

org.w3c.dom.Node com.cosylab.logging.engine.DataNode.replaceChild ( org.w3c.dom.Node  arg1,
org.w3c.dom.Node  arg2 
) throws org.w3c.dom.DOMException

replaceChild method comment.

void com.cosylab.logging.engine.DataNode.setNodeValue ( String  arg1  )  throws org.w3c.dom.DOMException

setNodeValue method comment.

void com.cosylab.logging.engine.DataNode.setPrefix ( String  arg1  )  throws org.w3c.dom.DOMException

setPrefix method comment.

void com.cosylab.logging.engine.DataNode.setTextContent ( String  textContent  )  throws DOMException

DOM level 3 method, not implemented.

See also:
org.w3c.dom.Node.setTextContent(java.lang.String)
Object com.cosylab.logging.engine.DataNode.setUserData ( String  key,
Object  data,
UserDataHandler  handler 
)

DOM level 3 method, not implemented. Returns null.

See also:
org.w3c.dom.Node.setUserData(java.lang.String, java.lang.Object, org.w3c.dom.UserDataHandler)
String com.cosylab.logging.engine.DataNode.toString (  ) 

The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Enumerations Properties