Eclipse JDT
Release 3.0

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

Packages that use WorkingCopyOwner
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.dom The Java DOM/AST is the set of classes that model the source code of a Java program as a structured document.  
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.  
 

Uses of WorkingCopyOwner in org.eclipse.jdt.core
 

Methods in org.eclipse.jdt.core that return WorkingCopyOwner
 WorkingCopyOwner ICompilationUnit.getOwner()
          Returns the working copy owner of this working copy.
 

Methods in org.eclipse.jdt.core with parameters of type WorkingCopyOwner
 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.
static void WorkingCopyOwner.setPrimaryBufferProvider(WorkingCopyOwner primaryBufferProvider)
          Sets the buffer provider of the primary working copy owner.
 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.
 void IType.codeComplete(char[] snippet, int insertion, int position, char[][] localVariableTypeNames, char[][] localVariableNames, int[] localVariableModifiers, boolean isStatic, ICompletionRequestor requestor, WorkingCopyOwner owner)
          Do code completion inside a code snippet in the context of the current type.
 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(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(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.
 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.
 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.
 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 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.
 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, 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.
static IJavaElement JavaCore.create(String handleIdentifier, WorkingCopyOwner owner)
          Returns the Java model element corresponding to the given handle identifier generated by IJavaElement.getHandleIdentifier(), or null if unable to create the associated element.
static ICompilationUnit[] JavaCore.getWorkingCopies(WorkingCopyOwner owner)
          Returns the working copies that have the given owner.
 void ICodeAssist.codeComplete(int offset, ICompletionRequestor 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, CompletionRequestor requestor, WorkingCopyOwner owner)
          DO NOT USE: This API element was added in anticipation of J2SE 1.5 support, which is planned for the next release of Eclipse after 3.0.
 IJavaElement[] ICodeAssist.codeSelect(int offset, int length, WorkingCopyOwner owner)
          Returns the Java elements correspondiing to the given selected text in this compilation unit.
 ICompilationUnit ICompilationUnit.findWorkingCopy(WorkingCopyOwner owner)
          Finds the working copy for this compilation unit, given a WorkingCopyOwner.
 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.
 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 (see IOpenable#makeConsistent()), and returns a compilation unit AST if requested.
 

Uses of WorkingCopyOwner in org.eclipse.jdt.core.dom
 

Methods in org.eclipse.jdt.core.dom with parameters of type WorkingCopyOwner
 void ASTParser.setWorkingCopyOwner(WorkingCopyOwner owner)
          Sets the working copy owner using when resolving bindings, where null means the primary owner.
 

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

Methods in org.eclipse.jdt.core.eval with parameters of type WorkingCopyOwner
 void IEvaluationContext.codeComplete(String codeSnippet, int position, ICompletionRequestor requestor, WorkingCopyOwner owner)
          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, WorkingCopyOwner owner)
          Resolves and returns a collection of Java elements corresponding to the source code at the given positions in the given code snippet.
 

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

Methods in org.eclipse.jdt.core.search with parameters of type WorkingCopyOwner
static IJavaSearchScope SearchEngine.createHierarchyScope(IType type, WorkingCopyOwner owner)
          Returns a Java search scope limited to the hierarchy of the given type.
 

Constructors in org.eclipse.jdt.core.search with parameters of type WorkingCopyOwner
SearchEngine(WorkingCopyOwner workingCopyOwner)
          Creates a new search engine with the given working copy owner.
 


Eclipse JDT
Release 3.0

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