TPTP 4.6.0 Platform Project
Internal API Specification

org.eclipse.tptp.platform.report.sxp.internal
Class SXPNode

java.lang.Object
  extended by org.eclipse.tptp.platform.report.sxp.internal.SXPNode
All Implemented Interfaces:
org.w3c.dom.Node
Direct Known Subclasses:
SXPAttr, SXPDocument, SXPElement, SXPText

Deprecated. As of TPTP 4.5.0, use the TPTP Business Intelligence and Reporting Tools (BIRT) reporting infrastructure (org.eclipse.tptp.platform.report.birt).

public abstract class SXPNode
extends java.lang.Object
implements org.w3c.dom.Node

Used by SimpleXmlParser. Abstract implementation of Node, handle parent, sibling and children.


Field Summary
protected  SXPNode first_child_
          Deprecated.  
protected  SXPNode last_child_
          Deprecated.  
protected  SXPNode next_
          Deprecated.  
protected  SXPNode parent_
          Deprecated.  
protected  SXPNode prev_
          Deprecated.  
 
Fields inherited from interface org.w3c.dom.Node
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
 
Constructor Summary
SXPNode()
          Deprecated.  
 
Method Summary
 org.w3c.dom.Node appendChild(org.w3c.dom.Node newChild)
          Deprecated.  
 org.w3c.dom.Node cloneNode(boolean deep)
          Deprecated.  
 void dump()
          Deprecated.  
protected  void dump(java.lang.String indent)
          Deprecated.  
 org.w3c.dom.NamedNodeMap getAttributes()
          Deprecated.  
 org.w3c.dom.NodeList getChildNodes()
          Deprecated.  
 org.w3c.dom.Node getFirstChild()
          Deprecated.  
 org.w3c.dom.Node getLastChild()
          Deprecated.  
 java.lang.String getLocalName()
          Deprecated.  
 java.lang.String getNamespaceURI()
          Deprecated.  
 org.w3c.dom.Node getNextSibling()
          Deprecated.  
abstract  java.lang.String getNodeName()
          Deprecated.  
abstract  short getNodeType()
          Deprecated.  
abstract  java.lang.String getNodeValue()
          Deprecated.  
 org.w3c.dom.Document getOwnerDocument()
          Deprecated.  
 org.w3c.dom.Node getParentNode()
          Deprecated.  
 java.lang.String getPrefix()
          Deprecated.  
 org.w3c.dom.Node getPreviousSibling()
          Deprecated.  
abstract  boolean hasAttributes()
          Deprecated.  
 boolean hasChildNodes()
          Deprecated.  
 org.w3c.dom.Node insertBefore(org.w3c.dom.Node newChild, org.w3c.dom.Node refChild)
          Deprecated.  
 boolean isSupported(java.lang.String feature, java.lang.String version)
          Deprecated.  
 void normalize()
          Deprecated.  
 org.w3c.dom.Node removeChild(org.w3c.dom.Node oldChild)
          Deprecated.  
 org.w3c.dom.Node replaceChild(org.w3c.dom.Node newChild, org.w3c.dom.Node oldChild)
          Deprecated.  
 void setNext(SXPNode p)
          Deprecated.  
abstract  void setNodeValue(java.lang.String nodeValue)
          Deprecated.  
 void setParent(SXPNode p)
          Deprecated.  
 void setPrefix(java.lang.String prefix)
          Deprecated.  
 void setPrev(SXPNode p)
          Deprecated.  
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.w3c.dom.Node
compareDocumentPosition, getBaseURI, getFeature, getTextContent, getUserData, isDefaultNamespace, isEqualNode, isSameNode, lookupNamespaceURI, lookupPrefix, setTextContent, setUserData
 

Field Detail

parent_

protected SXPNode parent_
Deprecated. 

prev_

protected SXPNode prev_
Deprecated. 

next_

protected SXPNode next_
Deprecated. 

first_child_

protected SXPNode first_child_
Deprecated. 

last_child_

protected SXPNode last_child_
Deprecated. 
Constructor Detail

SXPNode

public SXPNode()
Deprecated. 
Method Detail

setParent

public void setParent(SXPNode p)
Deprecated. 

setPrev

public void setPrev(SXPNode p)
Deprecated. 

setNext

public void setNext(SXPNode p)
Deprecated. 

getNodeName

public abstract java.lang.String getNodeName()
Deprecated. 
Specified by:
getNodeName in interface org.w3c.dom.Node

getNodeValue

public abstract java.lang.String getNodeValue()
                                       throws org.w3c.dom.DOMException
Deprecated. 
Specified by:
getNodeValue in interface org.w3c.dom.Node
Throws:
org.w3c.dom.DOMException

setNodeValue

public abstract void setNodeValue(java.lang.String nodeValue)
                           throws org.w3c.dom.DOMException
Deprecated. 
Specified by:
setNodeValue in interface org.w3c.dom.Node
Throws:
org.w3c.dom.DOMException

getNodeType

public abstract short getNodeType()
Deprecated. 
Specified by:
getNodeType in interface org.w3c.dom.Node

getParentNode

public org.w3c.dom.Node getParentNode()
Deprecated. 
Specified by:
getParentNode in interface org.w3c.dom.Node

getChildNodes

public org.w3c.dom.NodeList getChildNodes()
Deprecated. 
Specified by:
getChildNodes in interface org.w3c.dom.Node

getFirstChild

public org.w3c.dom.Node getFirstChild()
Deprecated. 
Specified by:
getFirstChild in interface org.w3c.dom.Node

getLastChild

public org.w3c.dom.Node getLastChild()
Deprecated. 
Specified by:
getLastChild in interface org.w3c.dom.Node

getPreviousSibling

public org.w3c.dom.Node getPreviousSibling()
Deprecated. 
Specified by:
getPreviousSibling in interface org.w3c.dom.Node

getNextSibling

public org.w3c.dom.Node getNextSibling()
Deprecated. 
Specified by:
getNextSibling in interface org.w3c.dom.Node

getAttributes

public org.w3c.dom.NamedNodeMap getAttributes()
Deprecated. 
Specified by:
getAttributes in interface org.w3c.dom.Node

getOwnerDocument

public org.w3c.dom.Document getOwnerDocument()
Deprecated. 
Specified by:
getOwnerDocument in interface org.w3c.dom.Node

insertBefore

public org.w3c.dom.Node insertBefore(org.w3c.dom.Node newChild,
                                     org.w3c.dom.Node refChild)
                              throws org.w3c.dom.DOMException
Deprecated. 
Specified by:
insertBefore in interface org.w3c.dom.Node
Throws:
org.w3c.dom.DOMException

replaceChild

public org.w3c.dom.Node replaceChild(org.w3c.dom.Node newChild,
                                     org.w3c.dom.Node oldChild)
                              throws org.w3c.dom.DOMException
Deprecated. 
Specified by:
replaceChild in interface org.w3c.dom.Node
Throws:
org.w3c.dom.DOMException

removeChild

public org.w3c.dom.Node removeChild(org.w3c.dom.Node oldChild)
                             throws org.w3c.dom.DOMException
Deprecated. 
Specified by:
removeChild in interface org.w3c.dom.Node
Throws:
org.w3c.dom.DOMException

appendChild

public org.w3c.dom.Node appendChild(org.w3c.dom.Node newChild)
                             throws org.w3c.dom.DOMException
Deprecated. 
Specified by:
appendChild in interface org.w3c.dom.Node
Throws:
org.w3c.dom.DOMException

hasChildNodes

public boolean hasChildNodes()
Deprecated. 
Specified by:
hasChildNodes in interface org.w3c.dom.Node

cloneNode

public org.w3c.dom.Node cloneNode(boolean deep)
Deprecated. 
Specified by:
cloneNode in interface org.w3c.dom.Node

normalize

public void normalize()
Deprecated. 
Specified by:
normalize in interface org.w3c.dom.Node

isSupported

public boolean isSupported(java.lang.String feature,
                           java.lang.String version)
Deprecated. 
Specified by:
isSupported in interface org.w3c.dom.Node

getNamespaceURI

public java.lang.String getNamespaceURI()
Deprecated. 
Specified by:
getNamespaceURI in interface org.w3c.dom.Node

getPrefix

public java.lang.String getPrefix()
Deprecated. 
Specified by:
getPrefix in interface org.w3c.dom.Node

setPrefix

public void setPrefix(java.lang.String prefix)
               throws org.w3c.dom.DOMException
Deprecated. 
Specified by:
setPrefix in interface org.w3c.dom.Node
Throws:
org.w3c.dom.DOMException

getLocalName

public java.lang.String getLocalName()
Deprecated. 
Specified by:
getLocalName in interface org.w3c.dom.Node

hasAttributes

public abstract boolean hasAttributes()
Deprecated. 
Specified by:
hasAttributes in interface org.w3c.dom.Node

dump

public final void dump()
Deprecated. 

dump

protected void dump(java.lang.String indent)
Deprecated. 

TPTP 4.6.0 Platform Project
Internal API Specification