Uses of Class
org.eclipse.wst.jsdt.core.CompletionRequestor

Packages that use CompletionRequestor
org.eclipse.wst.jsdt.core   
org.eclipse.wst.jsdt.core.eval   
org.eclipse.wst.jsdt.ui.text.java   
 

Uses of CompletionRequestor in org.eclipse.wst.jsdt.core
 

Methods in org.eclipse.wst.jsdt.core with parameters of type CompletionRequestor
 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 ICodeAssist.codeComplete(int offset, CompletionRequestor requestor)
          Performs code completion at the given offset position in this javaScript 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 javaScript unit, reporting results to the given completion requestor.
 

Uses of CompletionRequestor in org.eclipse.wst.jsdt.core.eval
 

Methods in org.eclipse.wst.jsdt.core.eval with parameters of type CompletionRequestor
 void IEvaluationContext.codeComplete(java.lang.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(java.lang.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.
 

Uses of CompletionRequestor in org.eclipse.wst.jsdt.ui.text.java
 

Subclasses of CompletionRequestor in org.eclipse.wst.jsdt.ui.text.java
 class CompletionProposalCollector
          JavaScript UI implementation of CompletionRequestor.