Package | Description |
---|---|
org.eclipse.jdt.core |
The Java model is the set of classes that model the
objects associated with creating, editing, and building a Java program.
|
org.eclipse.jdt.core.compiler |
This package contains compiler associated infrastructure APIs.
|
org.eclipse.jdt.core.dom.rewrite |
The Java DOM/AST rewrite is the set of classes that are used to make changes to an existing DOM/AST tree.
|
org.eclipse.jdt.core.eval |
Provides support for the evaluation of code snippets
in a scrapbook or inside the debugger.
|
org.eclipse.jdt.core.search |
Provides support for searching the workspace Java
elements that match a particular description.
|
org.eclipse.jdt.core.util |
Provides a set of tools and utilities for manipulating .class files and Java model elements.
|
org.eclipse.jdt.debug.ui |
Provides an implementation of a source locator for the Java debug model. |
org.eclipse.jdt.launching.sourcelookup |
Application programming interfaces and classes for source lookup.
|
org.eclipse.jdt.ui |
Application programming interfaces for interaction
with the Eclipse Java User Interface.
|
org.eclipse.jdt.ui.actions |
Application programming interfaces for Eclipse Java User Interface specific
actions.
|
Modifier and Type | Method and Description |
---|---|
void |
IPackageFragmentRoot.attachSource(IPath sourcePath,
IPath rootPath,
IProgressMonitor monitor)
Attaches the source archive identified by the given absolute path to this
binary package fragment root.
|
void |
ICompilationUnit.becomeWorkingCopy(IProblemRequestor problemRequestor,
IProgressMonitor monitor)
Changes this compilation unit handle into a working copy.
|
ICompilationUnit |
IClassFile.becomeWorkingCopy(IProblemRequestor problemRequestor,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Changes this class file handle into a working copy.
|
void |
IOpenable.close()
Closes this element and its buffer (if any).
|
void |
IType.codeComplete(char[] snippet,
int insertion,
int position,
char[][] localVariableTypeNames,
char[][] localVariableNames,
int[] localVariableModifiers,
boolean isStatic,
CompletionRequestor requestor)
Do code completion inside a code snippet in the context of the current type.
|
void |
IType.codeComplete(char[] snippet,
int insertion,
int position,
char[][] localVariableTypeNames,
char[][] localVariableNames,
int[] localVariableModifiers,
boolean isStatic,
CompletionRequestor requestor,
WorkingCopyOwner owner)
Do code completion inside a code snippet in the context of the current type.
|
void |
IType.codeComplete(char[] snippet,
int insertion,
int position,
char[][] localVariableTypeNames,
char[][] localVariableNames,
int[] localVariableModifiers,
boolean isStatic,
ICompletionRequestor requestor)
Deprecated.
|
void |
IType.codeComplete(char[] snippet,
int insertion,
int position,
char[][] localVariableTypeNames,
char[][] localVariableNames,
int[] localVariableModifiers,
boolean isStatic,
ICompletionRequestor requestor,
WorkingCopyOwner owner)
|
void |
ICodeAssist.codeComplete(int offset,
CompletionRequestor requestor)
Performs code completion at the given offset position in this compilation unit,
reporting results to the given completion requestor.
|
void |
ICodeAssist.codeComplete(int offset,
CompletionRequestor requestor,
WorkingCopyOwner owner)
Performs code completion at the given offset position in this compilation unit,
reporting results to the given completion requestor.
|
void |
ICodeAssist.codeComplete(int offset,
ICodeCompletionRequestor requestor)
Deprecated.
Use
ICodeAssist.codeComplete(int, ICompletionRequestor) instead. |
void |
ICodeAssist.codeComplete(int offset,
ICompletionRequestor requestor)
Deprecated.
Use
ICodeAssist.codeComplete(int, CompletionRequestor) instead. |
void |
ICodeAssist.codeComplete(int offset,
ICompletionRequestor requestor,
WorkingCopyOwner owner)
Deprecated.
|
IJavaElement[] |
ICodeAssist.codeSelect(int offset,
int length)
Returns the Java elements corresponding to the given selected text in this compilation unit.
|
IJavaElement[] |
ICodeAssist.codeSelect(int offset,
int length,
WorkingCopyOwner owner)
Returns the Java elements corresponding to the given selected text in this compilation unit.
|
void |
IWorkingCopy.commit(boolean force,
IProgressMonitor monitor)
Deprecated.
Commits the contents of this working copy to its original element
and underlying resource, bringing the Java model up-to-date with
the current contents of the working copy.
|
void |
ICompilationUnit.commitWorkingCopy(boolean force,
IProgressMonitor monitor)
Commits the contents of this working copy to its underlying resource.
|
void |
CorrectionEngine.computeCorrections(IMarker marker,
ICompilationUnit targetUnit,
int positionOffset,
ICorrectionRequestor requestor)
Performs code correction for the given marker,
reporting results to the given correction requestor.
|
void |
CorrectionEngine.computeCorrections(IProblem problem,
ICompilationUnit targetUnit,
ICorrectionRequestor requestor)
Performs code correction for the given IProblem,
reporting results to the given correction requestor.
|
boolean |
IPackageFragment.containsJavaResources()
Returns whether this fragment contains at least one Java resource.
|
void |
IJavaModel.copy(IJavaElement[] elements,
IJavaElement[] containers,
IJavaElement[] siblings,
String[] renamings,
boolean replace,
IProgressMonitor monitor)
Copies the given elements to the specified container(s).
|
void |
ISourceManipulation.copy(IJavaElement container,
IJavaElement sibling,
String rename,
boolean replace,
IProgressMonitor monitor)
Copies this element to the given container.
|
void |
IPackageFragmentRoot.copy(IPath destination,
int updateResourceFlags,
int updateModelFlags,
IClasspathEntry sibling,
IProgressMonitor monitor)
Copies the resource of this package fragment root to the destination path
as specified by
IResource.copy(IPath, int, IProgressMonitor)
but excluding nested source folders. |
ICompilationUnit |
IPackageFragment.createCompilationUnit(String name,
String contents,
boolean force,
IProgressMonitor monitor)
Creates and returns a compilation unit in this package fragment
with the specified name and contents.
|
IField |
IType.createField(String contents,
IJavaElement sibling,
boolean force,
IProgressMonitor monitor)
Creates and returns a field in this type with the
given contents.
|
IImportDeclaration |
ICompilationUnit.createImport(String name,
IJavaElement sibling,
int flags,
IProgressMonitor monitor)
Creates and returns an import declaration in this compilation unit
with the given name.
|
IImportDeclaration |
ICompilationUnit.createImport(String name,
IJavaElement sibling,
IProgressMonitor monitor)
Creates and returns an non-static import declaration in this compilation unit
with the given name.
|
IInitializer |
IType.createInitializer(String contents,
IJavaElement sibling,
IProgressMonitor monitor)
Creates and returns a static initializer in this type with the
given contents.
|
IMethod |
IType.createMethod(String contents,
IJavaElement sibling,
boolean force,
IProgressMonitor monitor)
Creates and returns a method or constructor in this type with the
given contents.
|
IPackageDeclaration |
ICompilationUnit.createPackageDeclaration(String name,
IProgressMonitor monitor)
Creates and returns a package declaration in this compilation unit
with the given package name.
|
IPackageFragment |
IPackageFragmentRoot.createPackageFragment(String name,
boolean force,
IProgressMonitor monitor)
Creates and returns a package fragment in this root with the
given dot-separated package name.
|
IType |
ICompilationUnit.createType(String contents,
IJavaElement sibling,
boolean force,
IProgressMonitor monitor)
Creates and returns a type in this compilation unit with the
given contents.
|
IType |
IType.createType(String contents,
IJavaElement sibling,
boolean force,
IProgressMonitor monitor)
Creates and returns a type in this type with the
given contents.
|
void |
ISourceManipulation.delete(boolean force,
IProgressMonitor monitor)
Deletes this element, forcing if specified and necessary.
|
void |
IJavaModel.delete(IJavaElement[] elements,
boolean force,
IProgressMonitor monitor)
Deletes the given elements, forcing the operation if necessary and specified.
|
void |
IPackageFragmentRoot.delete(int updateResourceFlags,
int updateModelFlags,
IProgressMonitor monitor)
Deletes the resource of this package fragment root as specified by
IResource.delete(int, IProgressMonitor) but excluding nested
source folders. |
void |
ICompilationUnit.discardWorkingCopy()
Changes this compilation unit in working copy mode back to its original mode.
|
IJavaElement |
IJavaProject.findElement(IPath path)
Returns the
IJavaElement corresponding to the given
classpath-relative path, or null if no such
IJavaElement is found. |
IJavaElement |
IJavaProject.findElement(IPath path,
WorkingCopyOwner owner)
Returns the
IJavaElement corresponding to the given
classpath-relative path, or null if no such
IJavaElement is found. |
IPackageFragment |
IJavaProject.findPackageFragment(IPath path)
Returns the first existing package fragment on this project's classpath
whose path matches the given (absolute) path, or
null if none
exist. |
IPackageFragmentRoot |
IJavaProject.findPackageFragmentRoot(IPath path)
Returns the existing package fragment root on this project's classpath
whose path matches the given (absolute) path, or
null if
one does not exist. |
String |
IOpenable.findRecommendedLineSeparator()
Finds and returns the recommended line separator for this element.
|
IType |
IJavaProject.findType(String fullyQualifiedName)
Returns the first type found following this project's classpath
with the given fully qualified name or
null if none is found. |
IType |
IJavaProject.findType(String fullyQualifiedName,
IProgressMonitor progressMonitor)
Same functionality as
IJavaProject.findType(String) but also look for secondary
types if given name does not match a compilation unit name. |
IType |
IJavaProject.findType(String packageName,
String typeQualifiedName)
Returns the first type found following this project's classpath
with the given package name and type qualified name
or
null if none is found. |
IType |
IJavaProject.findType(String packageName,
String typeQualifiedName,
IProgressMonitor progressMonitor)
Same functionality as
IJavaProject.findType(String, String) but also look for
secondary types if given name does not match a compilation unit name. |
IType |
IJavaProject.findType(String packageName,
String typeQualifiedName,
WorkingCopyOwner owner)
Returns the first type found following this project's classpath
with the given package name and type qualified name
or
null if none is found. |
IType |
IJavaProject.findType(String packageName,
String typeQualifiedName,
WorkingCopyOwner owner,
IProgressMonitor progressMonitor)
Same functionality as
IJavaProject.findType(String, String, WorkingCopyOwner)
but also look for secondary types if given name does not match a compilation unit name. |
IType |
IJavaProject.findType(String fullyQualifiedName,
WorkingCopyOwner owner)
Returns the first type found following this project's classpath
with the given fully qualified name or
null if none is found. |
IType |
IJavaProject.findType(String fullyQualifiedName,
WorkingCopyOwner owner,
IProgressMonitor progressMonitor)
Same functionality as
IJavaProject.findType(String, WorkingCopyOwner)
but also look for secondary types if given name does not match
a compilation unit name. |
IPackageFragmentRoot[] |
IJavaProject.getAllPackageFragmentRoots()
Returns all of the existing package fragment roots that exist
on the classpath, in the order they are defined by the classpath.
|
IType[] |
ICompilationUnit.getAllTypes()
Returns all types declared in this compilation unit in the order
in which they appear in the source.
|
String |
IJavaElement.getAttachedJavadoc(IProgressMonitor monitor)
Returns the Javadoc as an html source if this element has an attached javadoc,
null otherwise.
|
String[] |
ITypeParameter.getBounds()
Returns the names of the class and interface bounds of this type parameter.
|
IBuffer |
IOpenable.getBuffer()
Returns the buffer opened for this element, or
null
if this element does not have a buffer. |
String[] |
IMember.getCategories()
Returns the categories defined by this member's Javadoc.
|
IJavaElement[] |
IParent.getChildren()
Returns the immediate children of this element.
|
IJavaElement[] |
IType.getChildrenForCategory(String category)
Returns the children of this type that have the given category as a
@category tag. |
IClassFile[] |
IPackageFragment.getClassFiles()
Returns all of the class files in this package fragment.
|
static IClasspathContainer |
JavaCore.getClasspathContainer(IPath containerPath,
IJavaProject project)
Answers the project specific value for a given classpath container.
|
ICompilationUnit[] |
IPackageFragment.getCompilationUnits()
Returns all of the compilation units in this package fragment.
|
ICompilationUnit[] |
IPackageFragment.getCompilationUnits(WorkingCopyOwner owner)
Returns all of the compilation units in this package fragment that are
in working copy mode and that have the given owner.
|
Object |
IField.getConstant()
Returns the constant value associated with this field
or
null if this field has none. |
IResource |
IJavaElement.getCorrespondingResource()
Returns the resource that corresponds directly to this element,
or
null if there is no resource that corresponds to
this element. |
IJavaElement |
ICompilationUnit.getElementAt(int position)
Returns the smallest element within this compilation unit that
includes the given source position (that is, a method, field, etc.), or
null if there is no element other than the compilation
unit itself at the given position, or if the given position is not
within the source range of this compilation unit. |
IJavaElement |
IClassFile.getElementAt(int position)
Returns the smallest element within this class file that
includes the given source position (a method, field, etc.), or
null if there is no element other than the class file
itself at the given position, or if the given position is not
within the source range of this class file. |
String[] |
IMethod.getExceptionTypes()
Returns the type signatures of the exceptions this method throws,
in the order declared in the source.
|
IField[] |
IType.getFields()
Returns the fields declared by this type.
|
int |
IMember.getFlags()
Returns the modifier flags for this member.
|
int |
IImportDeclaration.getFlags()
Returns the modifier flags for this import.
|
String |
IType.getFullyQualifiedParameterizedName()
Returns this type's fully qualified name followed by its type parameters between angle brakets if it is a generic type.
|
IImportDeclaration[] |
ICompilationUnit.getImports()
Returns the import declarations in this compilation unit
in the order in which they appear in the source.
|
IInitializer[] |
IType.getInitializers()
Returns the initializers declared by this type.
|
ISourceRange |
IMember.getJavadocRange()
Returns the Javadoc range if this element is from source or if this element
is a binary element with an attached source, null otherwise.
|
IJavaProject[] |
IJavaModel.getJavaProjects()
Returns the Java projects in this Java model, or an empty array if there
are none.
|
int |
IPackageFragment.getKind()
Returns this package fragment's root kind encoded as an integer.
|
int |
IPackageFragmentRoot.getKind()
Returns this package fragment root's kind encoded as an integer.
|
IMethod[] |
IType.getMethods()
Returns the methods and constructors declared by this type.
|
ISourceRange |
IMember.getNameRange()
Returns the source range of this member's simple name,
or
null if this member does not have a name
(for example, an initializer), or if this member does not have
associated source code (for example, a binary type). |
ISourceRange |
ITypeParameter.getNameRange()
Returns the source range of this type parameter's name,
or
null if this type parameter does not have
associated source code (for example, in a binary type). |
Object[] |
IJavaModel.getNonJavaResources()
Returns an array of non-Java resources (that is, non-Java projects) in
the workspace.
|
Object[] |
IPackageFragment.getNonJavaResources()
Returns an array of non-Java resources contained in this package fragment.
|
Object[] |
IPackageFragmentRoot.getNonJavaResources()
Returns an array of non-Java resources contained in this package fragment root.
|
Object[] |
IJavaProject.getNonJavaResources()
Returns an array of non-Java resources directly contained in this project.
|
IPath |
IJavaProject.getOutputLocation()
Returns the default output location for this project as a workspace-
relative absolute path.
|
IPackageDeclaration[] |
ICompilationUnit.getPackageDeclarations()
Returns the package declarations in this compilation unit
in the order in which they appear in the source.
|
IPackageFragmentRoot[] |
IJavaProject.getPackageFragmentRoots()
Returns all of the package fragment roots contained in this
project, identified on this project's resolved classpath.
|
IPackageFragment[] |
IJavaProject.getPackageFragments()
Returns all package fragments in all package fragment roots contained
in this project.
|
String[] |
IMethod.getParameterNames()
Returns the names of parameters in this method.
|
IClasspathEntry[] |
IJavaProject.getRawClasspath()
Returns the raw classpath for the project, as a list of classpath
entries.
|
IClasspathEntry |
IPackageFragmentRoot.getRawClasspathEntry()
Returns the first raw classpath entry that corresponds to this package
fragment root.
|
String[] |
IMethod.getRawParameterNames()
Returns the names of parameters in this method.
|
String[] |
IJavaProject.getRequiredProjectNames()
Returns the names of the projects that are directly required by this
project.
|
IClasspathEntry[] |
IJavaProject.getResolvedClasspath(boolean ignoreUnresolvedEntry)
This is a helper method returning the resolved classpath for the project
as a list of simple (non-variable, non-container) classpath entries.
|
String |
IMethod.getReturnType()
Returns the type signature of the return value of this method.
|
IJavaElement |
IWorkingCopy.getSharedWorkingCopy(IProgressMonitor monitor,
IBufferFactory factory,
IProblemRequestor problemRequestor)
Deprecated.
Returns a shared working copy on this element using the given factory to create
the buffer, or this element if this element is already a working copy.
|
String |
IMethod.getSignature()
Returns the signature of this method.
|
String |
ISourceReference.getSource()
Returns the source code associated with this element.
|
IPath |
IPackageFragmentRoot.getSourceAttachmentPath()
Returns the absolute path to the source archive attached to
this package fragment root's binary archive.
|
IPath |
IPackageFragmentRoot.getSourceAttachmentRootPath()
Returns the path within this package fragment root's source archive.
|
ISourceRange |
ISourceReference.getSourceRange()
Returns the source range associated with this element.
|
String |
IType.getSuperclassName()
Returns the name of this type's superclass, or
null
for source types that do not specify a superclass. |
String |
IType.getSuperclassTypeSignature()
Returns the type signature of this type's superclass, or
null if none. |
String[] |
IType.getSuperInterfaceNames()
Returns the names of interfaces that this type implements or extends,
in the order in which they are listed in the source.
|
String[] |
IType.getSuperInterfaceTypeSignatures()
Returns the type signatures of the interfaces that this type
implements or extends, in the order in which they are listed in the
source.
|
IType |
IClassFile.getType()
Returns the type contained in this class file.
|
ITypeParameter[] |
IType.getTypeParameters()
Returns the formal type parameters for this type.
|
ITypeParameter[] |
IMethod.getTypeParameters()
Returns the formal type parameters for this method.
|
String[] |
IType.getTypeParameterSignatures()
Returns the formal type parameter signatures for this type.
|
String[] |
IMethod.getTypeParameterSignatures()
Deprecated.
Use #getTypeParameters() instead
|
IType[] |
ICompilationUnit.getTypes()
Returns the top-level types declared in this compilation unit
in the order in which they appear in the source.
|
IType[] |
IType.getTypes()
Returns the immediate member types declared by this type.
|
String |
IField.getTypeSignature()
Returns the type signature of this field.
|
IResource |
IJavaElement.getUnderlyingResource()
Returns the smallest underlying resource that contains
this element, or
null if this element is not contained
in a resource. |
IJavaElement |
IWorkingCopy.getWorkingCopy()
Deprecated.
Returns a new working copy of this element if this element is not
a working copy, or this element if this element is already a working copy.
|
ICompilationUnit |
ICompilationUnit.getWorkingCopy(IProgressMonitor monitor)
Returns a new working copy of this compilation unit if it is a primary compilation unit,
or this compilation unit if it is already a non-primary working copy.
|
IJavaElement |
IClassFile.getWorkingCopy(IProgressMonitor monitor,
IBufferFactory factory)
Deprecated.
Use getWorkingCopy(WorkingCopyOwner, IProgressMonitor) instead
|
IJavaElement |
IWorkingCopy.getWorkingCopy(IProgressMonitor monitor,
IBufferFactory factory,
IProblemRequestor problemRequestor)
Deprecated.
Returns a new working copy of this element using the given factory to create
the buffer, or this element if this element is already a working copy.
|
ICompilationUnit |
ICompilationUnit.getWorkingCopy(WorkingCopyOwner owner,
IProblemRequestor problemRequestor,
IProgressMonitor monitor)
Returns a shared working copy on this compilation unit using the given working copy owner to create
the buffer, or this compilation unit if it is already a non-primary working copy.
|
ICompilationUnit |
IClassFile.getWorkingCopy(WorkingCopyOwner owner,
IProgressMonitor monitor)
Returns a working copy on the source associated with this class file using the given
owner to create the buffer, or
null if there is no source associated
with the class file. |
boolean |
IParent.hasChildren()
Returns whether this element has one or more immediate children.
|
boolean |
IPackageFragment.hasSubpackages()
Returns whether this package fragment's name is
a prefix of other package fragments in this package fragment's
root.
|
boolean |
IOpenable.hasUnsavedChanges()
Returns
true if this element is open and:
its buffer has unsaved changes, or
one of its descendants has unsaved changes, or
a working copy has been created on one of this
element's children and has not yet destroyed
|
boolean |
IType.isAnnotation()
Returns whether this type represents an annotation type.
|
boolean |
IType.isAnonymous()
Returns whether this type represents an anonymous type.
|
boolean |
IType.isClass()
Returns whether this type represents a class.
|
boolean |
IClassFile.isClass()
Returns whether this type represents a class.
|
boolean |
IOpenable.isConsistent()
Returns whether the element is consistent with its underlying resource or buffer.
|
boolean |
IMethod.isConstructor()
Returns whether this method is a constructor.
|
boolean |
IType.isEnum()
Returns whether this type represents an enumeration class.
|
boolean |
IField.isEnumConstant()
Returns whether this field represents an enum constant.
|
boolean |
IType.isInterface()
Returns whether this type represents an interface.
|
boolean |
IClassFile.isInterface()
Returns whether this type represents an interface.
|
boolean |
IType.isLocal()
Returns whether this type represents a local type.
|
boolean |
IMethod.isMainMethod()
Returns whether this method is a main method.
|
boolean |
IType.isMember()
Returns whether this type represents a member type.
|
boolean |
IJavaElement.isStructureKnown()
Returns whether the structure of this element is known.
|
ITypeHierarchy |
IType.loadTypeHierachy(InputStream input,
IProgressMonitor monitor)
Loads a previously saved ITypeHierarchy from an input stream.
|
void |
IOpenable.makeConsistent(IProgressMonitor progress)
Makes this element consistent with its underlying resource or buffer
by updating the element's structure and properties as necessary.
|
void |
IJavaModel.move(IJavaElement[] elements,
IJavaElement[] containers,
IJavaElement[] siblings,
String[] renamings,
boolean replace,
IProgressMonitor monitor)
Moves the given elements to the specified container(s).
|
void |
ISourceManipulation.move(IJavaElement container,
IJavaElement sibling,
String rename,
boolean replace,
IProgressMonitor monitor)
Moves this element to the given container.
|
void |
IPackageFragmentRoot.move(IPath destination,
int updateResourceFlags,
int updateModelFlags,
IClasspathEntry sibling,
IProgressMonitor monitor)
Moves the resource of this package fragment root to the destination path
as specified by
IResource.move(IPath,int,IProgressMonitor)
but excluding nested source folders. |
ITypeHierarchy |
IType.newSupertypeHierarchy(ICompilationUnit[] workingCopies,
IProgressMonitor monitor)
Creates and returns a type hierarchy for this type containing
this type and all of its supertypes, considering types in the given
working copies.
|
ITypeHierarchy |
IType.newSupertypeHierarchy(IProgressMonitor monitor)
Creates and returns a type hierarchy for this type containing
this type and all of its supertypes.
|
ITypeHierarchy |
IType.newSupertypeHierarchy(IWorkingCopy[] workingCopies,
IProgressMonitor monitor)
Deprecated.
use #newSupertypeHierarchy(ICompilationUnit[], IProgressMonitor) instead
|
ITypeHierarchy |
IType.newSupertypeHierarchy(WorkingCopyOwner owner,
IProgressMonitor monitor)
Creates and returns a type hierarchy for this type containing
this type and all of its supertypes, considering types in the
working copies with the given owner.
|
ITypeHierarchy |
IType.newTypeHierarchy(ICompilationUnit[] workingCopies,
IProgressMonitor monitor)
Creates and returns a type hierarchy for this type containing
this type, all of its supertypes, and all its subtypes in the workspace,
considering types in the given working copies.
|
ITypeHierarchy |
IType.newTypeHierarchy(IJavaProject project,
IProgressMonitor monitor)
Creates and returns a type hierarchy for this type containing
this type, all of its supertypes, and all its subtypes
in the context of the given project.
|
ITypeHierarchy |
IType.newTypeHierarchy(IJavaProject project,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Creates and returns a type hierarchy for this type containing
this type, all of its supertypes, and all its subtypes
in the context of the given project, considering types in the
working copies with the given owner.
|
ITypeHierarchy |
IType.newTypeHierarchy(IProgressMonitor monitor)
Creates and returns a type hierarchy for this type containing
this type, all of its supertypes, and all its subtypes in the workspace.
|
ITypeHierarchy |
IJavaProject.newTypeHierarchy(IRegion region,
IProgressMonitor monitor)
Creates and returns a type hierarchy for all types in the given
region, considering subtypes within that region.
|
static ITypeHierarchy |
JavaCore.newTypeHierarchy(IRegion region,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Creates and returns a type hierarchy for all types in the given
region, considering subtypes within that region and considering types in the
working copies with the given owner.
|
ITypeHierarchy |
IJavaProject.newTypeHierarchy(IRegion region,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Creates and returns a type hierarchy for all types in the given
region, considering subtypes within that region and considering types in the
working copies with the given owner.
|
ITypeHierarchy |
IJavaProject.newTypeHierarchy(IType type,
IRegion region,
IProgressMonitor monitor)
Creates and returns a type hierarchy for the given type considering
subtypes in the specified region.
|
ITypeHierarchy |
IJavaProject.newTypeHierarchy(IType type,
IRegion region,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Creates and returns a type hierarchy for the given type considering
subtypes in the specified region and considering types in the
working copies with the given owner.
|
ITypeHierarchy |
IType.newTypeHierarchy(IWorkingCopy[] workingCopies,
IProgressMonitor monitor)
Deprecated.
use #newTypeHierarchy(ICompilationUnit[], IProgressMonitor) instead
|
ITypeHierarchy |
IType.newTypeHierarchy(WorkingCopyOwner owner,
IProgressMonitor monitor)
Creates and returns a type hierarchy for this type containing
this type, all of its supertypes, and all its subtypes in the workspace,
considering types in the working copies with the given owner.
|
ICompilationUnit |
WorkingCopyOwner.newWorkingCopy(String name,
IClasspathEntry[] classpath,
IProblemRequestor problemRequestor,
IProgressMonitor monitor)
Returns a new working copy with the given name using this working copy owner to
create its buffer.
|
void |
IOpenable.open(IProgressMonitor progress)
Opens this element and all parent elements that are not already open.
|
IMarker[] |
IWorkingCopy.reconcile()
Deprecated.
Reconciles the contents of this working copy.
|
void |
IWorkingCopy.reconcile(boolean forceProblemDetection,
IProgressMonitor monitor)
Deprecated.
Reconciles the contents of this working copy.
|
CompilationUnit |
ICompilationUnit.reconcile(int astLevel,
boolean forceProblemDetection,
boolean enableStatementsRecovery,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Reconciles the contents of this working copy, sends out a Java delta
notification indicating the nature of the change of the working copy since
the last time it was either reconciled or made consistent
(
IOpenable.makeConsistent(IProgressMonitor) ), and returns a
compilation unit AST if requested. |
CompilationUnit |
ICompilationUnit.reconcile(int astLevel,
boolean forceProblemDetection,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Reconciles the contents of this working copy, sends out a Java delta
notification indicating the nature of the change of the working copy since
the last time it was either reconciled or made consistent
(
IOpenable.makeConsistent(IProgressMonitor) ), and returns a
compilation unit AST if requested. |
void |
ITypeHierarchy.refresh(IProgressMonitor monitor)
Re-computes the type hierarchy reporting progress.
|
void |
IJavaModel.refreshExternalArchives(IJavaElement[] elementsScope,
IProgressMonitor monitor)
Triggers an update of the JavaModel with respect to the referenced external archives.
|
void |
IJavaModel.rename(IJavaElement[] elements,
IJavaElement[] destinations,
String[] names,
boolean replace,
IProgressMonitor monitor)
Renames the given elements as specified.
|
void |
ISourceManipulation.rename(String name,
boolean replace,
IProgressMonitor monitor)
Renames this element to the given name.
|
String[][] |
IType.resolveType(String typeName)
Resolves the given type name within the context of this type (depending on the type hierarchy
and its imports).
|
String[][] |
IType.resolveType(String typeName,
WorkingCopyOwner owner)
Resolves the given type name within the context of this type (depending on the type hierarchy
and its imports) and using the given owner's working copies, considering types in the
working copies with the given owner.
|
void |
ICompilationUnit.restore()
Restores the contents of this working copy to the current contents of
this working copy's original element.
|
void |
IWorkingCopy.restore()
Deprecated.
Restores the contents of this working copy to the current contents of
this working copy's original element.
|
void |
IOpenable.save(IProgressMonitor progress,
boolean force)
Saves any changes in this element's buffer to its underlying resource
via a workspace resource operation.
|
void |
IBuffer.save(IProgressMonitor progress,
boolean force)
Saves the contents of this buffer to its underlying resource.
|
static void |
JavaCore.setClasspathContainer(IPath containerPath,
IJavaProject[] affectedProjects,
IClasspathContainer[] respectiveContainers,
IProgressMonitor monitor)
Bind a container reference path to some actual containers (
IClasspathContainer ). |
static void |
JavaCore.setClasspathVariable(String variableName,
IPath path)
Deprecated.
- use API with IProgressMonitor
|
static void |
JavaCore.setClasspathVariable(String variableName,
IPath path,
IProgressMonitor monitor)
Sets the value of the given classpath variable.
|
static void |
JavaCore.setClasspathVariables(String[] variableNames,
IPath[] paths,
IProgressMonitor monitor)
Sets the values of all the given classpath variables at once.
|
void |
IJavaProject.setOutputLocation(IPath path,
IProgressMonitor monitor)
Sets the default output location of this project to the location
described by the given workspace-relative absolute path.
|
void |
IJavaProject.setRawClasspath(IClasspathEntry[] entries,
boolean canModifyResources,
IProgressMonitor monitor)
Sets the classpath of this project using a list of classpath entries.
|
void |
IJavaProject.setRawClasspath(IClasspathEntry[] entries,
IPath outputLocation,
boolean canModifyResources,
IProgressMonitor monitor)
Sets the both the classpath of this project and its default output
location at once.
|
void |
IJavaProject.setRawClasspath(IClasspathEntry[] entries,
IPath outputLocation,
IProgressMonitor monitor)
Sets the both the classpath of this project and its default output
location at once.
|
void |
IJavaProject.setRawClasspath(IClasspathEntry[] entries,
IProgressMonitor monitor)
Sets the classpath of this project using a list of classpath entries.
|
void |
ITypeHierarchy.store(OutputStream outputStream,
IProgressMonitor monitor)
Stores the type hierarchy in an output stream.
|
Modifier and Type | Method and Description |
---|---|
CompilationUnit |
ReconcileContext.getAST3()
Returns a resolved AST with
JLS3 level. |
Modifier and Type | Method and Description |
---|---|
static ImportRewrite |
ImportRewrite.create(ICompilationUnit cu,
boolean restoreExistingImports)
Creates a
ImportRewrite from a ICompilationUnit . |
TextEdit |
ASTRewrite.rewriteAST()
Converts all modifications recorded by this rewriter into an object representing the the corresponding text
edits to the source of a
ICompilationUnit from which the AST was created from. |
Modifier and Type | Method and Description |
---|---|
void |
IEvaluationContext.codeComplete(String codeSnippet,
int position,
CompletionRequestor requestor)
Performs a code completion at the given position in the given code snippet,
reporting results to the given completion requestor.
|
void |
IEvaluationContext.codeComplete(String codeSnippet,
int position,
CompletionRequestor requestor,
WorkingCopyOwner owner)
Performs a code completion at the given position in the given code snippet,
reporting results to the given completion requestor.
|
void |
IEvaluationContext.codeComplete(String codeSnippet,
int position,
ICodeCompletionRequestor requestor)
Deprecated.
- use codeComplete(String, int, ICompletionRequestor) instead
|
void |
IEvaluationContext.codeComplete(String codeSnippet,
int position,
ICompletionRequestor requestor)
Deprecated.
|
void |
IEvaluationContext.codeComplete(String codeSnippet,
int position,
ICompletionRequestor requestor,
WorkingCopyOwner owner)
Deprecated.
|
IJavaElement[] |
IEvaluationContext.codeSelect(String codeSnippet,
int offset,
int length)
Resolves and returns a collection of Java elements corresponding to the source
code at the given positions in the given code snippet.
|
IJavaElement[] |
IEvaluationContext.codeSelect(String codeSnippet,
int offset,
int length,
WorkingCopyOwner owner)
Resolves and returns a collection of Java elements corresponding to the source
code at the given positions in the given code snippet.
|
void |
IEvaluationContext.evaluateCodeSnippet(String codeSnippet,
ICodeSnippetRequestor requestor,
IProgressMonitor progressMonitor)
Evaluates the given code snippet.
|
void |
IEvaluationContext.evaluateCodeSnippet(String codeSnippet,
String[] localVariableTypeNames,
String[] localVariableNames,
int[] localVariableModifiers,
IType declaringType,
boolean isStatic,
boolean isConstructorCall,
ICodeSnippetRequestor requestor,
IProgressMonitor progressMonitor)
Evaluates the given code snippet in the context of a suspended thread.
|
void |
IEvaluationContext.evaluateVariable(IGlobalVariable variable,
ICodeSnippetRequestor requestor,
IProgressMonitor progressMonitor)
Evaluates the given global variable.
|
void |
IEvaluationContext.validateImports(ICodeSnippetRequestor requestor)
Validates this evaluation context's import declarations.
|
Modifier and Type | Method and Description |
---|---|
static IJavaSearchScope |
SearchEngine.createHierarchyScope(IType type)
Returns a Java search scope limited to the hierarchy of the given type.
|
static IJavaSearchScope |
SearchEngine.createHierarchyScope(IType type,
WorkingCopyOwner owner)
Returns a Java search scope limited to the hierarchy of the given type.
|
void |
SearchEngine.search(IWorkspace workspace,
IJavaElement element,
int limitTo,
IJavaSearchScope scope,
IJavaSearchResultCollector resultCollector)
|
void |
SearchEngine.search(IWorkspace workspace,
ISearchPattern searchPattern,
IJavaSearchScope scope,
IJavaSearchResultCollector resultCollector)
|
void |
SearchEngine.search(IWorkspace workspace,
String patternString,
int searchFor,
int limitTo,
IJavaSearchScope scope,
IJavaSearchResultCollector resultCollector)
|
void |
SearchEngine.searchAllTypeNames(char[][] qualifications,
char[][] typeNames,
IJavaSearchScope scope,
TypeNameRequestor nameRequestor,
int waitingPolicy,
IProgressMonitor progressMonitor)
Searches for all top-level types and member types in the given scope matching any of the given qualifications
and type names in a case sensitive way.
|
void |
SearchEngine.searchAllTypeNames(char[] packageName,
char[] typeName,
int matchRule,
int searchFor,
IJavaSearchScope scope,
ITypeNameRequestor nameRequestor,
int waitingPolicy,
IProgressMonitor progressMonitor)
|
void |
SearchEngine.searchAllTypeNames(char[] packageName,
char[] typeName,
int matchRule,
int searchFor,
IJavaSearchScope scope,
TypeNameRequestor nameRequestor,
int waitingPolicy,
IProgressMonitor progressMonitor)
Searches for all top-level types and member types in the given scope.
|
void |
SearchEngine.searchAllTypeNames(IWorkspace workspace,
char[] packageName,
char[] typeName,
int matchMode,
boolean isCaseSensitive,
int searchFor,
IJavaSearchScope scope,
ITypeNameRequestor nameRequestor,
int waitingPolicy,
IProgressMonitor progressMonitor)
|
void |
SearchEngine.searchDeclarationsOfAccessedFields(IJavaElement enclosingElement,
SearchRequestor requestor,
IProgressMonitor monitor)
Searches for all declarations of the fields accessed in the given element.
|
void |
SearchEngine.searchDeclarationsOfAccessedFields(IWorkspace workspace,
IJavaElement enclosingElement,
IJavaSearchResultCollector resultCollector)
Deprecated.
|
void |
SearchEngine.searchDeclarationsOfReferencedTypes(IJavaElement enclosingElement,
SearchRequestor requestor,
IProgressMonitor monitor)
Searches for all declarations of the types referenced in the given element.
|
void |
SearchEngine.searchDeclarationsOfReferencedTypes(IWorkspace workspace,
IJavaElement enclosingElement,
IJavaSearchResultCollector resultCollector)
Deprecated.
|
void |
SearchEngine.searchDeclarationsOfSentMessages(IJavaElement enclosingElement,
SearchRequestor requestor,
IProgressMonitor monitor)
Searches for all declarations of the methods invoked in the given element.
|
void |
SearchEngine.searchDeclarationsOfSentMessages(IWorkspace workspace,
IJavaElement enclosingElement,
IJavaSearchResultCollector resultCollector)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static void |
CompilationUnitSorter.sort(ICompilationUnit compilationUnit,
int[] positions,
Comparator comparator,
int options,
IProgressMonitor monitor)
Deprecated.
Clients should port their code to use the new JLS3 AST API and call
CompilationUnitSorter.sort(AST.JLS3, compilationUnit, positions, comparator, options, monitor)
instead of using this method. |
static void |
CompilationUnitSorter.sort(int level,
ICompilationUnit compilationUnit,
int[] positions,
Comparator comparator,
int options,
IProgressMonitor monitor)
Reorders the declarations in the given compilation unit according to
the specified AST level.
|
Constructor and Description |
---|
JavaUISourceLocator(IJavaProject[] projects,
boolean includeRequired)
Deprecated.
Constructs a new source locator that looks in the
specified project for source, and required projects, if
includeRequired is true . |
Modifier and Type | Method and Description |
---|---|
protected static void |
JavaSourceLocator.collectRequiredProjects(IJavaProject proj,
ArrayList res)
Deprecated.
Adds all projects required by
proj to the list
res |
Constructor and Description |
---|
JavaSourceLocator(IJavaProject[] projects,
boolean includeRequired)
Deprecated.
Constructs a new Java source locator that looks in the
specified project for source, and required projects, if
includeRequired is true . |
Modifier and Type | Method and Description |
---|---|
static ImportRewrite |
CodeStyleConfiguration.createImportRewrite(ICompilationUnit cu,
boolean restoreExistingImports)
Returns a
ImportRewrite using ImportRewrite.create(ICompilationUnit, boolean) and
configures the rewriter with the settings as specified in the JDT UI preferences. |
static SelectionDialog |
JavaUI.createPackageDialog(Shell parent,
IJavaProject project,
int style)
Creates a selection dialog that lists all packages of the given Java project.
|
static SelectionDialog |
JavaUI.createPackageDialog(Shell parent,
IJavaProject project,
int style,
String filter)
Creates a selection dialog that lists all packages of the given Java project.
|
static SelectionDialog |
JavaUI.createPackageDialog(Shell parent,
IPackageFragmentRoot root)
Creates a selection dialog that lists all packages under the given package
fragment root.
|
static SelectionDialog |
JavaUI.createPackageDialog(Shell parent,
IPackageFragmentRoot root,
String filter)
Creates a selection dialog that lists all packages under the given package
fragment root.
|
static SelectionDialog |
JavaUI.createTypeDialog(Shell parent,
IRunnableContext context,
IJavaSearchScope scope,
int style,
boolean multipleSelection)
Creates a selection dialog that lists all types in the given scope.
|
static SelectionDialog |
JavaUI.createTypeDialog(Shell parent,
IRunnableContext context,
IJavaSearchScope scope,
int style,
boolean multipleSelection,
String filter)
Creates a selection dialog that lists all types in the given scope.
|
static SelectionDialog |
JavaUI.createTypeDialog(Shell parent,
IRunnableContext context,
IJavaSearchScope scope,
int style,
boolean multipleSelection,
String filter,
TypeSelectionExtension extension)
Creates a selection dialog that lists all types in the given scope.
|
static SelectionDialog |
JavaUI.createTypeDialog(Shell parent,
IRunnableContext context,
IProject project,
int style,
boolean multipleSelection)
Creates a selection dialog that lists all types in the given project.
|
protected int |
OverrideIndicatorLabelDecorator.findInHierarchy(IType type,
ITypeHierarchy hierarchy,
String name,
String[] paramTypes)
Deprecated.
Not used anymore. This method is not accurate for methods in generic types.
|
static String |
JavaElementLabels.getContainerEntryLabel(IPath containerPath,
IJavaProject project)
Returns the label of a classpath container
|
static Reader |
JavadocContentAccess.getContentReader(IMember member,
boolean allowInherited)
Gets a reader for an IMember's Javadoc comment content from the source attachment.
|
static Reader |
JavadocContentAccess.getHTMLContentReader(IMember member,
boolean allowInherited)
Deprecated.
As of 3.2, replaced by
JavadocContentAccess.getHTMLContentReader(IMember, boolean, boolean) |
static Reader |
JavadocContentAccess.getHTMLContentReader(IMember member,
boolean allowInherited,
boolean useAttachedJavadoc)
Gets a reader for an IMember's Javadoc comment content from the source attachment.
|
static URL |
JavaUI.getJavadocBaseLocation(IJavaElement element)
Returns the Javadoc base URL for an element.
|
static URL |
JavaUI.getJavadocLocation(IJavaElement element,
boolean includeAnchor)
Returns the Javadoc URL for an element.
|
protected Object[] |
StandardJavaElementContentProvider.getJavaProjects(IJavaModel jm)
Note: This method is for internal use only.
|
protected int |
OverrideIndicatorLabelDecorator.getOverrideIndicators(IMethod method)
Note: This method is for internal use only.
|
protected Object[] |
StandardJavaElementContentProvider.getPackageFragmentRoots(IJavaProject project)
Note: This method is for internal use only.
|
protected boolean |
StandardJavaElementContentProvider.isPackageFragmentEmpty(IJavaElement element)
Note: This method is for internal use only.
|
static IEditorPart |
JavaUI.openInEditor(IJavaElement element)
Opens a Java editor on the given Java element.
|
protected void |
JavaElementContentProvider.processDelta(IJavaElementDelta delta)
Deprecated.
Processes a delta recursively.
|
Modifier and Type | Method and Description |
---|---|
Object |
OpenAction.getElementToOpen(Object object)
Note: this method is for internal use only.
|
Copyright (c) IBM Corp. and others 2000, 2006. All Rights Reserved.