|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of WorkingCopyOwner in org.eclipse.jdt.core |
|---|
| Methods in org.eclipse.jdt.core that return WorkingCopyOwner | |
|---|---|
WorkingCopyOwner |
ICompilationUnit.getOwner()
Returns null if this ICompilationUnit is the primary
working copy, or this ICompilationUnit is not a working copy,
otherwise the WorkingCopyOwner |
| Methods in org.eclipse.jdt.core with parameters of type WorkingCopyOwner | |
|---|---|
ICompilationUnit |
IClassFile.becomeWorkingCopy(IProblemRequestor problemRequestor,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Deprecated. Use ITypeRoot.getWorkingCopy(WorkingCopyOwner, IProgressMonitor) instead.
Note that if this deprecated method is used, problems will be reported to the given problem requestor
as well as the problem requestor returned by the working copy owner (if not null). |
void |
IType.codeComplete(char[] snippet,
int insertion,
int position,
char[][] localVariableTypeNames,
char[][] localVariableNames,
int[] localVariableModifiers,
boolean isStatic,
CompletionRequestor requestor,
WorkingCopyOwner owner,
IProgressMonitor monitor)
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,
WorkingCopyOwner owner)
Deprecated. Use #codeComplete(char[],int,int,char[][],char[][],int[],boolean,CompletionRequestor,WorkingCopyOwner) instead. |
void |
ICodeAssist.codeComplete(int offset,
CompletionRequestor requestor,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Performs code completion at the given offset position in this compilation unit, reporting results to the given completion requestor. |
void |
ICodeAssist.codeComplete(int offset,
ICompletionRequestor requestor,
WorkingCopyOwner owner)
Deprecated. Use #codeComplete(int, CompletionRequestor, WorkingCopyOwner) instead. |
IJavaElement[] |
ICodeAssist.codeSelect(int offset,
int length,
WorkingCopyOwner owner)
Returns the Java elements corresponding to the given selected text in this compilation unit. |
static IJavaElement |
JavaCore.create(java.lang.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. |
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(java.lang.String packageName,
java.lang.String typeQualifiedName,
WorkingCopyOwner owner,
IProgressMonitor progressMonitor)
Same functionality as #findType(String, String, WorkingCopyOwner)
but also look for secondary types if given name does not match a compilation unit name. |
IType |
IJavaProject.findType(java.lang.String fullyQualifiedName,
WorkingCopyOwner owner,
IProgressMonitor progressMonitor)
Same functionality as #findType(String, WorkingCopyOwner)
but also look for secondary types if given name does not match
a compilation unit name. |
ICompilationUnit |
ICompilationUnit.findWorkingCopy(WorkingCopyOwner owner)
Finds the working copy for this compilation unit, given a WorkingCopyOwner. |
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. |
static ICompilationUnit[] |
JavaCore.getWorkingCopies(WorkingCopyOwner owner)
Returns the working copies that have the given owner. |
ICompilationUnit |
ICompilationUnit.getWorkingCopy(WorkingCopyOwner owner,
IProblemRequestor problemRequestor,
IProgressMonitor monitor)
Deprecated. Use ITypeRoot.getWorkingCopy(WorkingCopyOwner, IProgressMonitor) instead.
Note that if this deprecated method is used, problems will be reported on the passed problem requester
as well as on the problem requestor returned by the working copy owner (if not null). |
ICompilationUnit |
ITypeRoot.getWorkingCopy(WorkingCopyOwner owner,
IProgressMonitor monitor)
Returns a shared working copy on this compilation unit or class file using the given working copy owner to create the buffer. |
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 |
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. |
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(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(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. |
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. |
CompilationUnit |
ICompilationUnit.reconcile(int astLevel,
int reconcileFlags,
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. |
java.lang.String[][] |
IType.resolveType(java.lang.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. |
static void |
WorkingCopyOwner.setPrimaryBufferProvider(WorkingCopyOwner primaryBufferProvider)
Sets the buffer provider of the primary working copy owner. |
| 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(java.lang.String codeSnippet,
int position,
CompletionRequestor requestor,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Performs a code completion at the given position in the given code snippet, reporting results to the given completion requestor. |
void |
IEvaluationContext.codeComplete(java.lang.String codeSnippet,
int position,
ICompletionRequestor requestor,
WorkingCopyOwner owner)
Deprecated. Use #codeComplete(String,int,CompletionRequestor,WorkingCopyOwner) instead. |
IJavaElement[] |
IEvaluationContext.codeSelect(java.lang.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. |
static IJavaSearchScope |
SearchEngine.createStrictHierarchyScope(IJavaProject project,
IType type,
boolean onlySubtypes,
boolean includeFocusType,
WorkingCopyOwner owner)
Returns a Java search scope limited to the hierarchy of the given type and to a given project. |
| 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. |
|
| Uses of WorkingCopyOwner in org.eclipse.jdt.internal.codeassist |
|---|
| Methods in org.eclipse.jdt.internal.codeassist with parameters of type WorkingCopyOwner | |
|---|---|
protected void |
InternalCompletionContext.setExtendedData(ITypeRoot typeRoot,
CompilationUnitDeclaration compilationUnitDeclaration,
LookupEnvironment lookupEnvironment,
Scope scope,
ASTNode astNode,
ASTNode astNodeParent,
WorkingCopyOwner owner,
CompletionParser parser)
|
| Constructors in org.eclipse.jdt.internal.codeassist with parameters of type WorkingCopyOwner | |
|---|---|
CompletionEngine(SearchableEnvironment nameEnvironment,
CompletionRequestor requestor,
java.util.Map settings,
IJavaProject javaProject,
WorkingCopyOwner owner,
IProgressMonitor monitor)
The CompletionEngine is responsible for computing source completions. |
|
InternalExtendedCompletionContext(InternalCompletionContext completionContext,
ITypeRoot typeRoot,
CompilationUnitDeclaration compilationUnitDeclaration,
LookupEnvironment lookupEnvironment,
Scope assistScope,
ASTNode assistNode,
ASTNode assistNodeParent,
WorkingCopyOwner owner,
CompletionParser parser)
|
|
SelectionEngine(SearchableEnvironment nameEnvironment,
ISelectionRequestor requestor,
java.util.Map settings,
WorkingCopyOwner owner)
The SelectionEngine is responsible for computing the selected object. |
|
| Uses of WorkingCopyOwner in org.eclipse.jdt.internal.codeassist.impl |
|---|
| Constructors in org.eclipse.jdt.internal.codeassist.impl with parameters of type WorkingCopyOwner | |
|---|---|
AssistCompilationUnit(ICompilationUnit compilationUnit,
WorkingCopyOwner owner,
java.util.Map bindingCache,
java.util.Map infoCache)
|
|
| Uses of WorkingCopyOwner in org.eclipse.jdt.internal.core |
|---|
| Subclasses of WorkingCopyOwner in org.eclipse.jdt.internal.core | |
|---|---|
class |
BufferFactoryWrapper
Deprecated. |
class |
DefaultWorkingCopyOwner
A working copy owner that creates internal buffers. |
| Fields in org.eclipse.jdt.internal.core declared as WorkingCopyOwner | |
|---|---|
protected WorkingCopyOwner |
SearchableEnvironment.owner
|
WorkingCopyOwner |
CompilationUnit.owner
|
WorkingCopyOwner |
DefaultWorkingCopyOwner.primaryBufferProvider
|
| Methods in org.eclipse.jdt.internal.core that return WorkingCopyOwner | |
|---|---|
static WorkingCopyOwner |
BufferFactoryWrapper.create(IBufferFactory factory)
Deprecated. |
WorkingCopyOwner |
CompilationUnit.getOwner()
|
| Methods in org.eclipse.jdt.internal.core with parameters of type WorkingCopyOwner | |
|---|---|
ICompilationUnit |
ClassFile.becomeWorkingCopy(IProblemRequestor problemRequestor,
WorkingCopyOwner owner,
IProgressMonitor monitor)
|
void |
SourceType.codeComplete(char[] snippet,
int insertion,
int position,
char[][] localVariableTypeNames,
char[][] localVariableNames,
int[] localVariableModifiers,
boolean isStatic,
CompletionRequestor requestor,
WorkingCopyOwner owner,
IProgressMonitor monitor)
|
void |
BinaryType.codeComplete(char[] snippet,
int insertion,
int position,
char[][] localVariableTypeNames,
char[][] localVariableNames,
int[] localVariableModifiers,
boolean isStatic,
CompletionRequestor requestor,
WorkingCopyOwner owner,
IProgressMonitor monitor)
|
void |
SourceType.codeComplete(char[] snippet,
int insertion,
int position,
char[][] localVariableTypeNames,
char[][] localVariableNames,
int[] localVariableModifiers,
boolean isStatic,
ICompletionRequestor requestor,
WorkingCopyOwner owner)
Deprecated. |
void |
BinaryType.codeComplete(char[] snippet,
int insertion,
int position,
char[][] localVariableTypeNames,
char[][] localVariableNames,
int[] localVariableModifiers,
boolean isStatic,
ICompletionRequestor requestor,
WorkingCopyOwner owner)
Deprecated. |
protected void |
Openable.codeComplete(ICompilationUnit cu,
ICompilationUnit unitToSkip,
int position,
CompletionRequestor requestor,
WorkingCopyOwner owner,
ITypeRoot typeRoot,
IProgressMonitor monitor)
|
void |
ClassFile.codeComplete(int offset,
CompletionRequestor requestor,
WorkingCopyOwner owner,
IProgressMonitor monitor)
|
void |
CompilationUnit.codeComplete(int offset,
CompletionRequestor requestor,
WorkingCopyOwner workingCopyOwner,
IProgressMonitor monitor)
|
void |
ClassFile.codeComplete(int offset,
ICompletionRequestor requestor,
WorkingCopyOwner owner)
Deprecated. |
void |
CompilationUnit.codeComplete(int offset,
ICompletionRequestor requestor,
WorkingCopyOwner workingCopyOwner)
Deprecated. |
protected IJavaElement[] |
Openable.codeSelect(ICompilationUnit cu,
int offset,
int length,
WorkingCopyOwner owner)
|
IJavaElement[] |
ClassFile.codeSelect(int offset,
int length,
WorkingCopyOwner owner)
|
IJavaElement[] |
CompilationUnit.codeSelect(int offset,
int length,
WorkingCopyOwner workingCopyOwner)
|
IJavaElement |
JavaProject.findElement(IPath path,
WorkingCopyOwner owner)
|
IType |
JavaProject.findType(java.lang.String packageName,
java.lang.String typeQualifiedName,
WorkingCopyOwner owner,
IProgressMonitor progressMonitor)
|
IType |
JavaProject.findType(java.lang.String fullyQualifiedName,
WorkingCopyOwner owner,
IProgressMonitor progressMonitor)
|
ICompilationUnit |
CompilationUnit.findWorkingCopy(WorkingCopyOwner workingCopyOwner)
|
ICompilationUnit[] |
PackageFragment.getCompilationUnits(WorkingCopyOwner owner)
|
IJavaElement |
JavaElement.getHandleFromMemento(MementoTokenizer memento,
WorkingCopyOwner owner)
|
IJavaElement |
JavaModel.getHandleFromMemento(java.lang.String token,
MementoTokenizer memento,
WorkingCopyOwner owner)
|
IJavaElement |
SourceType.getHandleFromMemento(java.lang.String token,
MementoTokenizer memento,
WorkingCopyOwner workingCopyOwner)
|
IJavaElement |
LocalVariable.getHandleFromMemento(java.lang.String token,
MementoTokenizer memento,
WorkingCopyOwner owner)
|
IJavaElement |
ImportContainer.getHandleFromMemento(java.lang.String token,
MementoTokenizer memento,
WorkingCopyOwner workingCopyOwner)
|
IJavaElement |
PackageFragmentRoot.getHandleFromMemento(java.lang.String token,
MementoTokenizer memento,
WorkingCopyOwner owner)
|
IJavaElement |
ClassFile.getHandleFromMemento(java.lang.String token,
MementoTokenizer memento,
WorkingCopyOwner owner)
|
IJavaElement |
BinaryType.getHandleFromMemento(java.lang.String token,
MementoTokenizer memento,
WorkingCopyOwner workingCopyOwner)
|
IJavaElement |
Member.getHandleFromMemento(java.lang.String token,
MementoTokenizer memento,
WorkingCopyOwner workingCopyOwner)
|
IJavaElement |
SourceRefElement.getHandleFromMemento(java.lang.String token,
MementoTokenizer memento,
WorkingCopyOwner workingCopyOwner)
|
IJavaElement |
JavaProject.getHandleFromMemento(java.lang.String token,
MementoTokenizer memento,
WorkingCopyOwner owner)
|
abstract IJavaElement |
JavaElement.getHandleFromMemento(java.lang.String token,
MementoTokenizer memento,
WorkingCopyOwner owner)
|
IJavaElement |
PackageFragment.getHandleFromMemento(java.lang.String token,
MementoTokenizer memento,
WorkingCopyOwner owner)
|
IJavaElement |
CompilationUnit.getHandleFromMemento(java.lang.String token,
MementoTokenizer memento,
WorkingCopyOwner workingCopyOwner)
|
IJavaElement |
SourceRefElement.getHandleUpdatingCountFromMemento(MementoTokenizer memento,
WorkingCopyOwner owner)
|
ICompilationUnit[] |
JavaModelManager.getWorkingCopies(WorkingCopyOwner owner,
boolean addPrimary)
|
ICompilationUnit |
CompilationUnit.getWorkingCopy(WorkingCopyOwner workingCopyOwner,
IProblemRequestor problemRequestor,
IProgressMonitor monitor)
Deprecated. |
ICompilationUnit |
ClassFile.getWorkingCopy(WorkingCopyOwner owner,
IProgressMonitor monitor)
|
ICompilationUnit |
CompilationUnit.getWorkingCopy(WorkingCopyOwner workingCopyOwner,
IProgressMonitor monitor)
|
ITypeHierarchy |
SourceType.loadTypeHierachy(java.io.InputStream input,
WorkingCopyOwner owner,
IProgressMonitor monitor)
NOTE: This method is not part of the API has it is not clear clients would easily use it: they would need to first make sure all working copies for the given owner exist before calling it. |
ITypeHierarchy |
BinaryType.loadTypeHierachy(java.io.InputStream input,
WorkingCopyOwner owner,
IProgressMonitor monitor)
|
NameLookup |
JavaProject.newNameLookup(WorkingCopyOwner owner)
|
SearchableEnvironment |
JavaProject.newSearchableNameEnvironment(WorkingCopyOwner owner)
|
ITypeHierarchy |
SourceType.newSupertypeHierarchy(WorkingCopyOwner owner,
IProgressMonitor monitor)
|
ITypeHierarchy |
BinaryType.newSupertypeHierarchy(WorkingCopyOwner owner,
IProgressMonitor monitor)
|
ITypeHierarchy |
SourceType.newTypeHierarchy(IJavaProject project,
WorkingCopyOwner owner,
IProgressMonitor monitor)
|
ITypeHierarchy |
BinaryType.newTypeHierarchy(IJavaProject project,
WorkingCopyOwner owner,
IProgressMonitor monitor)
|
ITypeHierarchy |
JavaProject.newTypeHierarchy(IRegion region,
WorkingCopyOwner owner,
IProgressMonitor monitor)
|
ITypeHierarchy |
JavaProject.newTypeHierarchy(IType type,
IRegion region,
WorkingCopyOwner owner,
IProgressMonitor monitor)
|
ITypeHierarchy |
SourceType.newTypeHierarchy(WorkingCopyOwner owner,
IProgressMonitor monitor)
|
ITypeHierarchy |
BinaryType.newTypeHierarchy(WorkingCopyOwner owner,
IProgressMonitor monitor)
|
static CompilationUnitDeclaration |
CompilationUnitProblemFinder.process(CompilationUnit unitElement,
SourceElementParser parser,
WorkingCopyOwner workingCopyOwner,
java.util.HashMap problems,
boolean creatingAST,
int reconcileFlags,
IProgressMonitor monitor)
|
static CompilationUnitDeclaration |
CompilationUnitProblemFinder.process(CompilationUnit unitElement,
WorkingCopyOwner workingCopyOwner,
java.util.HashMap problems,
boolean creatingAST,
int reconcileFlags,
IProgressMonitor monitor)
|
CompilationUnit |
CompilationUnit.reconcile(int astLevel,
boolean forceProblemDetection,
boolean enableStatementsRecovery,
WorkingCopyOwner workingCopyOwner,
IProgressMonitor monitor)
|
CompilationUnit |
CompilationUnit.reconcile(int astLevel,
boolean forceProblemDetection,
WorkingCopyOwner workingCopyOwner,
IProgressMonitor monitor)
|
CompilationUnit |
CompilationUnit.reconcile(int astLevel,
int reconcileFlags,
WorkingCopyOwner workingCopyOwner,
IProgressMonitor monitor)
|
java.lang.String[][] |
NamedMember.resolveType(java.lang.String typeName,
WorkingCopyOwner owner)
|
| Constructors in org.eclipse.jdt.internal.core with parameters of type WorkingCopyOwner | |
|---|---|
CancelableNameEnvironment(JavaProject project,
WorkingCopyOwner owner,
IProgressMonitor monitor)
|
|
ClassFileWorkingCopy(ClassFile classFile,
WorkingCopyOwner owner)
|
|
CompilationUnit(PackageFragment parent,
java.lang.String name,
WorkingCopyOwner owner)
Constructs a handle to a compilation unit with the given name in the specified package for the specified owner |
|
ReconcileWorkingCopyOperation(IJavaElement workingCopy,
int astLevel,
int reconcileFlags,
WorkingCopyOwner workingCopyOwner)
|
|
SearchableEnvironment(JavaProject project,
WorkingCopyOwner owner)
Creates a SearchableEnvironment on the given project |
|
| Uses of WorkingCopyOwner in org.eclipse.jdt.internal.core.eval |
|---|
| Methods in org.eclipse.jdt.internal.core.eval with parameters of type WorkingCopyOwner | |
|---|---|
void |
EvaluationContextWrapper.codeComplete(java.lang.String codeSnippet,
int position,
CompletionRequestor requestor,
WorkingCopyOwner owner,
IProgressMonitor monitor)
|
void |
EvaluationContextWrapper.codeComplete(java.lang.String codeSnippet,
int position,
ICompletionRequestor requestor,
WorkingCopyOwner owner)
Deprecated. |
IJavaElement[] |
EvaluationContextWrapper.codeSelect(java.lang.String codeSnippet,
int offset,
int length,
WorkingCopyOwner owner)
|
| Uses of WorkingCopyOwner in org.eclipse.jdt.internal.core.hierarchy |
|---|
| Methods in org.eclipse.jdt.internal.core.hierarchy with parameters of type WorkingCopyOwner | |
|---|---|
static ITypeHierarchy |
TypeHierarchy.load(IType type,
java.io.InputStream input,
WorkingCopyOwner owner)
|
| Uses of WorkingCopyOwner in org.eclipse.jdt.internal.core.search |
|---|
| Methods in org.eclipse.jdt.internal.core.search with parameters of type WorkingCopyOwner | |
|---|---|
static IJavaSearchScope |
BasicSearchEngine.createHierarchyScope(IType type,
WorkingCopyOwner owner)
|
static IJavaSearchScope |
BasicSearchEngine.createStrictHierarchyScope(IJavaProject project,
IType type,
boolean onlySubtypes,
boolean includeFocusType,
WorkingCopyOwner owner)
|
| Constructors in org.eclipse.jdt.internal.core.search with parameters of type WorkingCopyOwner | |
|---|---|
BasicSearchEngine(WorkingCopyOwner workingCopyOwner)
|
|
HierarchyScope(IJavaProject project,
IType type,
WorkingCopyOwner owner,
boolean onlySubtypes,
boolean noMembersOrEnclosingTypes,
boolean includeFocusType)
Creates a new hierarchy scope for the given type with the given configuration options. |
|
HierarchyScope(IType type,
WorkingCopyOwner owner)
|
|
| Uses of WorkingCopyOwner in org.eclipse.jdt.internal.core.util |
|---|
| Methods in org.eclipse.jdt.internal.core.util with parameters of type WorkingCopyOwner | |
|---|---|
static JavaElement |
Util.getUnresolvedJavaElement(FieldBinding binding,
WorkingCopyOwner workingCopyOwner,
Util.BindingsToNodesMap bindingsToNodes)
Return the java element corresponding to the given compiler binding. |
static JavaElement |
Util.getUnresolvedJavaElement(MethodBinding methodBinding,
WorkingCopyOwner workingCopyOwner,
Util.BindingsToNodesMap bindingsToNodes)
Return the java element corresponding to the given compiler binding. |
static JavaElement |
Util.getUnresolvedJavaElement(TypeBinding typeBinding,
WorkingCopyOwner workingCopyOwner,
Util.BindingsToNodesMap bindingsToNodes)
Return the java element corresponding to the given compiler binding. |
| Constructors in org.eclipse.jdt.internal.core.util with parameters of type WorkingCopyOwner | |
|---|---|
JavaElementFinder(java.lang.String key,
JavaProject project,
WorkingCopyOwner owner)
|
|
| Uses of WorkingCopyOwner in org.eclipse.jdt.internal.eval |
|---|
| Methods in org.eclipse.jdt.internal.eval with parameters of type WorkingCopyOwner | |
|---|---|
void |
EvaluationContext.complete(char[] codeSnippet,
int completionPosition,
SearchableEnvironment environment,
CompletionRequestor requestor,
java.util.Map options,
IJavaProject project,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Computes a completion at the specified position of the given code snippet. |
void |
EvaluationContext.select(char[] codeSnippet,
int selectionSourceStart,
int selectionSourceEnd,
SearchableEnvironment environment,
ISelectionRequestor requestor,
java.util.Map options,
WorkingCopyOwner owner)
Computes the selection at the specified positions of the given code snippet. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||