Eclipse JDT
2.0

Uses of Class
org.eclipse.jdt.core.JavaModelException

Packages that use JavaModelException
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.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.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 Eclipse Java 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. 
 

Uses of JavaModelException in org.eclipse.jdt.core
 

Methods in org.eclipse.jdt.core that throw JavaModelException
static IClasspathContainer JavaCore.getClasspathContainer(IPath containerPath, IJavaProject project)
          Answers the project specific value for a given classpath container.
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 IWorkingCopy.commit(boolean force, IProgressMonitor monitor)
          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.
 IJavaElement IWorkingCopy.getSharedWorkingCopy(IProgressMonitor monitor, IBufferFactory factory, IProblemRequestor problemRequestor)
          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.
 IJavaElement IWorkingCopy.getWorkingCopy()
          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.
 IJavaElement IWorkingCopy.getWorkingCopy(IProgressMonitor monitor, IBufferFactory factory, IProblemRequestor problemRequestor)
          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.
 IMarker[] IWorkingCopy.reconcile()
          Reconciles the contents of this working copy.
 void IWorkingCopy.reconcile(boolean forceProblemDetection, IProgressMonitor monitor)
          Reconciles the contents of this working copy.
 void IWorkingCopy.restore()
          Restores the contents of this working copy to the current contents of this working copy's original element.
 void ITypeHierarchy.refresh(IProgressMonitor monitor)
          Re-computes the type hierarchy reporting progress.
 void IType.codeComplete(char[] snippet, int insertion, int position, char[][] localVariableTypeNames, char[][] localVariableNames, int[] localVariableModifiers, boolean isStatic, ICompletionRequestor requestor)
          Do code completion inside a code snippet in the context of the current type.
 IField IType.createField(String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
          Creates and returns a field in this type with the given contents.
 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.
 IType IType.createType(String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
          Creates and returns a type in this type with the given contents.
 IField[] IType.getFields()
          Returns the fields declared by this type.
 IInitializer[] IType.getInitializers()
          Returns the initializers declared by this type.
 IMethod[] IType.getMethods()
          Returns the methods and constructors declared by this type.
 String IType.getSuperclassName()
          Returns the name of this type's superclass, or null for source types that do not specify a superclass.
 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.
 IType[] IType.getTypes()
          Returns the immediate member types declared by this type.
 boolean IType.isAnonymous()
          Returns whether this type represents an anonymous type.
 boolean IType.isClass()
          Returns whether this type represents a class.
 boolean IType.isInterface()
          Returns whether this type represents an interface.
 boolean IType.isLocal()
          Returns whether this type represents a local type.
 boolean IType.isMember()
          Returns whether this type represents a member type.
 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)
          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.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 IType.newTypeHierarchy(IWorkingCopy[] 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.
 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 ISourceReference.getSource()
          Returns the source code associated with this element.
 ISourceRange ISourceReference.getSourceRange()
          Returns the source range associated with this element.
 void ISourceManipulation.copy(IJavaElement container, IJavaElement sibling, String rename, boolean replace, IProgressMonitor monitor)
          Copies this element to the given container.
 void ISourceManipulation.delete(boolean force, IProgressMonitor monitor)
          Deletes this element, forcing if specified and necessary.
 void ISourceManipulation.move(IJavaElement container, IJavaElement sibling, String rename, boolean replace, IProgressMonitor monitor)
          Moves this element to the given container.
 void ISourceManipulation.rename(String name, boolean replace, IProgressMonitor monitor)
          Renames this element to the given name.
 IJavaElement[] IParent.getChildren()
          Returns the immediate children of this element.
 boolean IParent.hasChildren()
          Returns whether this element has one or more immediate children.
 void IPackageFragmentRoot.attachSource(IPath archivePath, IPath rootPath, IProgressMonitor monitor)
          Attaches the source archive identified by the given absolute path to this JAR package fragment root.
 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.
 int IPackageFragmentRoot.getKind()
          Returns this package fragment root's kind encoded as an integer.
 Object[] IPackageFragmentRoot.getNonJavaResources()
          Returns an array of non-Java resources contained in this package fragment root.
 IClasspathEntry IPackageFragmentRoot.getRawClasspathEntry()
          Returns the first raw classpath entry that corresponds to this package fragment root.
 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.
 boolean IPackageFragment.containsJavaResources()
          Returns whether this fragment contains at least one Java resource.
 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.
 IClassFile[] IPackageFragment.getClassFiles()
          Returns all of the class files in this package fragment.
 ICompilationUnit[] IPackageFragment.getCompilationUnits()
          Returns all of the compilation units in this package fragment.
 int IPackageFragment.getKind()
          Returns this package fragment's root kind encoded as an integer.
 Object[] IPackageFragment.getNonJavaResources()
          Returns an array of non-Java resources contained in this package fragment.
 boolean IPackageFragment.hasSubpackages()
          Returns whether this package fragment's name is a prefix of other package fragments in this package fragment's root.
 void IOpenable.close()
          Closes this element and its buffer (if any).
 IBuffer IOpenable.getBuffer()
          Returns the buffer opened for this element, or null if this element does not have a buffer.
 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 IOpenable.isConsistent()
          Returns whether the element is consistent with its underlying resource or buffer.
 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 IOpenable.open(IProgressMonitor progress)
          Opens this element and all parent elements that are not already open.
 void IOpenable.save(IProgressMonitor progress, boolean force)
          Saves any changes in this element's buffer to its underlying resource via a workspace resource operation.
 String[] IMethod.getExceptionTypes()
          Returns the type signatures of the exceptions this method throws, in the order declared in the source.
 String[] IMethod.getParameterNames()
          Returns the names of parameters in this method.
 String IMethod.getReturnType()
          Returns the type signature of the return value of this method.
 String IMethod.getSignature()
          Returns the signature of the method.
 boolean IMethod.isConstructor()
          Returns whether this method is a constructor.
 boolean IMethod.isMainMethod()
          Returns whether this method is a main method.
 int IMember.getFlags()
          Returns the modifier flags for this member.
 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).
 IJavaElement IJavaProject.findElement(IPath path)
          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.
 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 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.
 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.
 Object[] IJavaProject.getNonJavaResources()
          Returns an array of non-Java resources directly contained in this project.
 IPath IJavaProject.getOutputLocation()
          Returns the full path to the location where the builder writes .class files.
 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.
 IClasspathEntry[] IJavaProject.getRawClasspath()
          Returns the raw classpath for the project, as a list of classpath entries.
 String[] IJavaProject.getRequiredProjectNames()
          Returns the names of the projects that are directly required by this project.
 IClasspathEntry[] IJavaProject.getResolvedClasspath(boolean ignoreUnresolvedVariable)
          This is a helper method returning the resolved classpath for the project, as a list of classpath entries, where all classpath variable entries have been resolved and substituted with their final target entries.
 boolean IJavaProject.isOnClasspath(IJavaElement element)
          Returns whether the given element is on the classpath of this project.
 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.
 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.
 void IJavaProject.setOutputLocation(IPath path, IProgressMonitor monitor)
          Sets the output location of this project to the location described by the given absolute path.
 void IJavaProject.setRawClasspath(IClasspathEntry[] entries, IProgressMonitor monitor)
          Sets the classpath of this project using a list of classpath entries.
 void IJavaProject.setRawClasspath(IClasspathEntry[] entries, IPath outputLocation, IProgressMonitor monitor)
          Sets the both the classpath of this project and its output location at once.
 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 IJavaModel.delete(IJavaElement[] elements, boolean force, IProgressMonitor monitor)
          Deletes the given elements, forcing the operation if necessary and specified.
 IJavaProject[] IJavaModel.getJavaProjects()
          Returns the Java projects in this Java model, or an empty array if there are none.
 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 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.
 IResource IJavaElement.getCorrespondingResource()
          Returns the resource that corresponds directly to this element, or null if there is no resource that corresponds to this element.
 IResource IJavaElement.getUnderlyingResource()
          Returns the smallest underlying resource that contains this element, or null if this element is not contained in a resource.
 boolean IJavaElement.isStructureKnown()
          Returns whether the structure of this element is known.
 Object IField.getConstant()
          Returns the constant value associated with this field or null if this field has none.
 String IField.getTypeSignature()
          Returns the type signature of this field.
 IImportDeclaration ICompilationUnit.createImport(String name, IJavaElement sibling, IProgressMonitor monitor)
          Creates and returns an import declaration in this compilation unit with the given name.
 IPackageDeclaration ICompilationUnit.createPackageDeclaration(String name, IProgressMonitor monitor)
          Creates and returns a package declaration in this compilation unit with the given 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[] ICompilationUnit.getAllTypes()
          Returns all types declared in this compilation unit in the order in which they appear in the source.
 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.
 IImportDeclaration[] ICompilationUnit.getImports()
          Returns the import declarations in this compilation unit in the order in which they appear in the source.
 IPackageDeclaration[] ICompilationUnit.getPackageDeclarations()
          Returns the package declarations in this compilation unit in the order in which they appear in the source.
 IType[] ICompilationUnit.getTypes()
          Returns the top-level types declared in this compilation unit in the order in which they appear in the source.
 void ICodeAssist.codeComplete(int offset, ICompletionRequestor requestor)
          Performs code completion at the given offset position in this compilation unit, reporting results to the given completion requestor.
 IJavaElement[] ICodeAssist.codeSelect(int offset, int length)
          Performs code selection on the given selected text in this compilation unit, reporting results to the given selection requestor.
 void ICodeAssist.codeComplete(int offset, ICodeCompletionRequestor requestor)
          Deprecated. - use codeComplete(int, ICompletionRequestor) instead
 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.
 IType IClassFile.getType()
          Returns the type contained in this class file.
 IJavaElement IClassFile.getWorkingCopy(IProgressMonitor monitor, IBufferFactory factory)
          Returns a working copy on the source associated with this class file using the given factory to create the buffer, or null if there is no source associated with the class file.
 boolean IClassFile.isClass()
          Returns whether this type represents a class.
 boolean IClassFile.isInterface()
          Returns whether this type represents an interface.
 void IBuffer.save(IProgressMonitor progress, boolean force)
          Saves the contents of this buffer 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.
 

Uses of JavaModelException in org.eclipse.jdt.core.eval
 

Methods in org.eclipse.jdt.core.eval that throw JavaModelException
 void IEvaluationContext.codeComplete(String codeSnippet, int position, ICompletionRequestor requestor)
          Performs a code completion at the given position in the given code snippet, reporting results to the given completion requestor.
 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.
 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.evaluateCodeSnippet(String codeSnippet, ICodeSnippetRequestor requestor, IProgressMonitor progressMonitor)
          Evaluates the given code snippet.
 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.
 void IEvaluationContext.codeComplete(String codeSnippet, int position, ICodeCompletionRequestor requestor)
          Deprecated. - use codeComplete(String, int, ICompletionRequestor) instead
 

Uses of JavaModelException in org.eclipse.jdt.core.search
 

Methods in org.eclipse.jdt.core.search that throw JavaModelException
static IJavaSearchScope SearchEngine.createHierarchyScope(IType type)
          Returns a java search scope limited to the hierarchy of the given type.
 void SearchEngine.search(IWorkspace workspace, String patternString, int searchFor, int limitTo, IJavaSearchScope scope, IJavaSearchResultCollector resultCollector)
          Searches for the Java element determined by the given signature.
 void SearchEngine.search(IWorkspace workspace, IJavaElement element, int limitTo, IJavaSearchScope scope, IJavaSearchResultCollector resultCollector)
          Searches for the given Java element.
 void SearchEngine.search(IWorkspace workspace, ISearchPattern searchPattern, IJavaSearchScope scope, IJavaSearchResultCollector resultCollector)
          Searches for matches of a given search pattern.
 void SearchEngine.searchAllTypeNames(IWorkspace workspace, char[] packageName, char[] typeName, int matchMode, boolean isCaseSensitive, int searchFor, IJavaSearchScope scope, ITypeNameRequestor nameRequestor, int waitingPolicy, IProgressMonitor progressMonitor)
          Searches for all top-level types and member types in the given scope.
 void SearchEngine.searchDeclarationsOfAccessedFields(IWorkspace workspace, IJavaElement enclosingElement, IJavaSearchResultCollector resultCollector)
          Searches for all declarations of the fields accessed in the given element.
 void SearchEngine.searchDeclarationsOfReferencedTypes(IWorkspace workspace, IJavaElement enclosingElement, IJavaSearchResultCollector resultCollector)
          Searches for all declarations of the types referenced in the given element.
 void SearchEngine.searchDeclarationsOfSentMessages(IWorkspace workspace, IJavaElement enclosingElement, IJavaSearchResultCollector resultCollector)
          Searches for all declarations of the methods invoked in the given element.
 

Uses of JavaModelException in org.eclipse.jdt.debug.ui
 

Constructors in org.eclipse.jdt.debug.ui that throw JavaModelException
JavaUISourceLocator(IJavaProject[] projects, boolean includeRequired)
          Constructs a new source locator that looks in the specified project for source, and required projects, if includeRequired is true.
 

Uses of JavaModelException in org.eclipse.jdt.launching.sourcelookup
 

Methods in org.eclipse.jdt.launching.sourcelookup that throw JavaModelException
protected static void JavaSourceLocator.collectRequiredProjects(IJavaProject proj, ArrayList res)
          Adds all projects required by proj to the list res
 

Constructors in org.eclipse.jdt.launching.sourcelookup that throw JavaModelException
JavaSourceLocator(IJavaProject[] projects, boolean includeRequired)
          Constructs a new Java source locator that looks in the specified project for source, and required projects, if includeRequired is true.
 

Uses of JavaModelException in org.eclipse.jdt.ui
 

Methods in org.eclipse.jdt.ui that throw JavaModelException
protected  boolean StandardJavaElementContentProvider.isPackageFragmentEmpty(IJavaElement element)
          Note: This method is for internal use only.
protected  boolean StandardJavaElementContentProvider.isProjectPackageFragmentRoot(IPackageFragmentRoot root)
          Note: This method is for internal use only.
protected  int OverrideIndicatorLabelDecorator.getOverrideIndicators(IMethod method)
          Note: This method is for internal use only.
protected  int OverrideIndicatorLabelDecorator.findInHierarchy(IType type, ITypeHierarchy hierarchy, String name, String[] paramTypes)
          Note: This method is for internal use only.
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, IJavaProject project, int style)
          Creates a selection dialog that lists all packages of the given Java project.
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.createPackageDialog(Shell parent, IPackageFragmentRoot root)
          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, 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)
          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.
static IEditorPart JavaUI.openInEditor(IJavaElement element)
          Opens a Java editor on the given Java element.
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  void JavaElementContentProvider.processDelta(IJavaElementDelta delta)
          Deprecated. Processes a delta recursively.
 

Uses of JavaModelException in org.eclipse.jdt.ui.actions
 

Methods in org.eclipse.jdt.ui.actions that throw JavaModelException
 Object OpenAction.getElementToOpen(Object object)
          Note: this method is for internal use only.
 


Eclipse JDT
2.0

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