Eclipse JDT
2.1

Uses of Interface
org.eclipse.jdt.core.jdom.IDOMNode

Packages that use IDOMNode
org.eclipse.jdt.core.jdom Provides a support for java document manipulation through the JDOM model. 
 

Uses of IDOMNode in org.eclipse.jdt.core.jdom
 

Subinterfaces of IDOMNode in org.eclipse.jdt.core.jdom
 interface IDOMCompilationUnit
          Represents a Java compilation unit (.java source file).
 interface IDOMField
          Represents a field declaration.
 interface IDOMImport
          Represents an import declaration.
 interface IDOMInitializer
          Represents an initializer.
 interface IDOMMember
          An IDOMMember defines functionality common to nodes, which can be members of types.
 interface IDOMMethod
          Represents a method declaration.
 interface IDOMPackage
          Represents a package declaration.
 interface IDOMType
          Represents a source type in a compilation unit, either as a top-level type or a member type.
 

Methods in org.eclipse.jdt.core.jdom that return IDOMNode
 IDOMNode IDOMNode.getChild(String name)
          Returns the first named child of this node with the given name.
 IDOMNode IDOMNode.getFirstChild()
          Returns the first child of this node.
 IDOMNode IDOMNode.getNextNode()
          Returns the sibling node immediately following this node.
 IDOMNode IDOMNode.getParent()
          Returns the parent of this node.
 IDOMNode IDOMNode.getPreviousNode()
          Returns the sibling node immediately preceding this node.
 

Methods in org.eclipse.jdt.core.jdom with parameters of type IDOMNode
 void IDOMNode.addChild(IDOMNode child)
          Adds the given un-parented node (document fragment) as the last child of this node.
 void IDOMNode.insertSibling(IDOMNode sibling)
          Inserts the given un-parented node as a sibling of this node, immediately before this node.
 boolean IDOMNode.isAllowableChild(IDOMNode node)
          Returns whether the given node is an allowable child for this node.
 boolean IDOMNode.isSignatureEqual(IDOMNode node)
          Returns whether this node's signature is equivalent to the given node's signature.
 


Eclipse JDT
2.1

Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.