org.eclipse.jdt.core.jdom |
Package-level Javadoc
Provides a support for Java document manipulation through the JDOM model.
Package Specification
This package provides a support for Java document manipulation through the JDOM
model.
The JDOM was made obsolete by the addition in 2.0 of the more powerful,
fine-grained DOM/AST API found in the org.eclipse.jdt.core.dom
package.
|
Java Source File Name | Type | Comment |
DOMException.java | Class | Unchecked exception thrown when an illegal manipulation of the JDOM is
performed, or when an attempt is made to access/set an attribute of a
JDOM node that source indexes cannot be determined for (in case the source
was syntactically incorrect). |
DOMFactory.java | Class | Standard implementation of IDOMFactory , and the only means
of creating JDOMs and document fragments. |
IDOMCompilationUnit.java | Interface | Represents a Java compilation unit (source file with one of the
org.eclipse.jdt.core.JavaCore.getJavaLikeExtensions Java-like extensions ). |
IDOMFactory.java | Interface | A factory used to create document fragment (DF) nodes. |
IDOMField.java | Interface | Represents a field declaration. |
IDOMImport.java | Interface | Represents an import declaration. |
IDOMInitializer.java | Interface | Represents an initializer. |
IDOMMember.java | Interface | An IDOMMember defines functionality common to nodes, which
can be members of types. |
IDOMMethod.java | Interface | Represents a method declaration. |
IDOMNode.java | Interface | Nodes represent structural fragments of a Java source file, also known as document fragments. |
IDOMPackage.java | Interface | Represents a package declaration. |
IDOMType.java | Interface | Represents a source type in a compilation unit, either as a top-level type or a member type.
The corresponding syntactic units are ClassDeclaration (JLS2 8.1) and InterfaceDeclaration (JLS2 9.1).
Enumeration types and annotation types, added in J2SE 1.5, are represented as
classes and interfaces, respectively.
Allowable child types for a type are IDOMType , IDOMField ,
IDOMMethod , and IDOMInitializer .
Children are listed in the order in which they appear in the source. |