org.eclipse.wst.jsdt.core
Interface ICompletionRequestor


Deprecated. Use CompletionRequestor instead. Provisional API: This class/interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.

public interface ICompletionRequestor

A completion requestor accepts results as they are computed and is aware of source positions to complete the various different results.

This interface may be implemented by clients.

See Also:
ICodeAssist

Method Summary
 void acceptAnonymousType(char[] superTypePackageName, char[] superTypeName, char[][] parameterPackageNames, char[][] parameterTypeNames, char[][] parameterNames, char[] completionName, int modifiers, int completionStart, int completionEnd, int relevance)
          Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.
 void acceptClass(char[] packageName, char[] className, char[] completionName, int modifiers, int completionStart, int completionEnd, int relevance)
          Deprecated.  
 void acceptError(IProblem error)
          Deprecated. Use CompletionRequestor.completionFailure(IProblem) instead.
 void acceptField(char[] declaringTypePackageName, char[] declaringTypeName, char[] name, char[] typePackageName, char[] typeName, char[] completionName, int modifiers, int completionStart, int completionEnd, int relevance)
          Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.
 void acceptInterface(char[] packageName, char[] interfaceName, char[] completionName, int modifiers, int completionStart, int completionEnd, int relevance)
          Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.
 void acceptKeyword(char[] keywordName, int completionStart, int completionEnd, int relevance)
          Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.
 void acceptLabel(char[] labelName, int completionStart, int completionEnd, int relevance)
          Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.
 void acceptLocalVariable(char[] name, char[] typePackageName, char[] typeName, int modifiers, int completionStart, int completionEnd, int relevance)
          Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.
 void acceptMethod(char[] declaringTypePackageName, char[] declaringTypeName, char[] selector, char[][] parameterPackageNames, char[][] parameterTypeNames, char[][] parameterNames, char[] returnTypePackageName, char[] returnTypeName, char[] completionName, int modifiers, int completionStart, int completionEnd, int relevance)
          Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.
 void acceptMethodDeclaration(char[] declaringTypePackageName, char[] declaringTypeName, char[] selector, char[][] parameterPackageNames, char[][] parameterTypeNames, char[][] parameterNames, char[] returnTypePackageName, char[] returnTypeName, char[] completionName, int modifiers, int completionStart, int completionEnd, int relevance)
          Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.
 void acceptModifier(char[] modifierName, int completionStart, int completionEnd, int relevance)
          Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.
 void acceptPackage(char[] packageName, char[] completionName, int completionStart, int completionEnd, int relevance)
          Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.
 void acceptType(char[] packageName, char[] typeName, char[] completionName, int completionStart, int completionEnd, int relevance)
          Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.
 void acceptVariableName(char[] typePackageName, char[] typeName, char[] name, char[] completionName, int completionStart, int completionEnd, int relevance)
          Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.
 

Method Detail

acceptAnonymousType

void acceptAnonymousType(char[] superTypePackageName,
                         char[] superTypeName,
                         char[][] parameterPackageNames,
                         char[][] parameterTypeNames,
                         char[][] parameterNames,
                         char[] completionName,
                         int modifiers,
                         int completionStart,
                         int completionEnd,
                         int relevance)
Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.

Code assist notification of an anonymous type declaration completion.

Parameters:
superTypePackageName - Name of the package that contains the super type of this new anonymous type declaration.
superTypeName - Name of the super type of this new anonymous type declaration.
parameterPackageNames - Names of the packages in which the parameter types are declared. Should contain as many elements as parameterTypeNames.
parameterTypeNames - Names of the parameter types. Should contain as many elements as parameterPackageNames.
parameterNames - Names of the parameters. Should contain as many elements as parameterPackageNames.
completionName - The completion for the anonymous type declaration. Can include zero, one or two brackets. If the closing bracket is included, then the cursor should be placed before it.
modifiers - The modifiers of the constructor.
completionStart - The start position of insertion of the name of this new anonymous type declaration.
completionEnd - The end position of insertion of the name of this new anonymous type declaration.
relevance - The relevance of the completion proposal It is a positive integer which are used for determine if this proposal is more relevant than another proposal. This value can only be used for compare relevance. A proposal is more relevant than another if his relevance value is higher. NOTE: parameter names can be retrieved from the source model after the user selects a specific method.

acceptClass

void acceptClass(char[] packageName,
                 char[] className,
                 char[] completionName,
                 int modifiers,
                 int completionStart,
                 int completionEnd,
                 int relevance)
Deprecated. 

acceptError

void acceptError(IProblem error)
Deprecated. Use CompletionRequestor.completionFailure(IProblem) instead.

Code assist notification of a validation error detected during completion.

Parameters:
error - Only problems which are categorized as non-syntax errors are notified to the requestor, warnings are silently ignored. In case an error got signalled, no other completions might be available, therefore the problem message should be presented to the user. The source positions of the problem are related to the source where it was detected (might be in another compilation unit, if it was indirectly requested during the code assist process). Note: the problem knows its originating file name.

acceptField

void acceptField(char[] declaringTypePackageName,
                 char[] declaringTypeName,
                 char[] name,
                 char[] typePackageName,
                 char[] typeName,
                 char[] completionName,
                 int modifiers,
                 int completionStart,
                 int completionEnd,
                 int relevance)
Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.

Code assist notification of a field or var completion.

Parameters:
declaringTypePackageName - Name of the package in which the type that contains this field is declared.
declaringTypeName - Name of the type declaring this new field.
name - Name of the field.
typePackageName - Name of the package in which the type of this field is declared.
typeName - Name of the type of this field.
completionName - The completion for the field.
modifiers - The modifiers of this field.
completionStart - The start position of insertion of the name of this field.
completionEnd - The end position of insertion of the name of this field.
relevance - The relevance of the completion proposal It is a positive integer which are used for determine if this proposal is more relevant than another proposal. This value can only be used for compare relevance. A proposal is more relevant than another if his relevance value is higher.

acceptInterface

void acceptInterface(char[] packageName,
                     char[] interfaceName,
                     char[] completionName,
                     int modifiers,
                     int completionStart,
                     int completionEnd,
                     int relevance)
Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.

Code assist notification of an interface completion.

Note: This Method only applies to ECMAScript 4 which is not yet supported

Parameters:
packageName - Declaring package name of the interface.
interfaceName - Name of the interface.
completionName - The completion for the interface. Can include ';' for imported interfaces.
modifiers - The modifiers of the interface.
completionStart - The start position of insertion of the name of the interface.
completionEnd - The end position of insertion of the name of the interface.
relevance - The relevance of the completion proposal It is a positive integer which are used for determine if this proposal is more relevant than another proposal. This value can only be used for compare relevance. A proposal is more relevant than another if his relevance value is higher.

acceptKeyword

void acceptKeyword(char[] keywordName,
                   int completionStart,
                   int completionEnd,
                   int relevance)
Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.

Code assist notification of a keyword completion.

Parameters:
keywordName - The keyword source.
completionStart - The start position of insertion of the name of this keyword.
completionEnd - The end position of insertion of the name of this keyword.
relevance - The relevance of the completion proposal It is a positive integer which are used for determine if this proposal is more relevant than another proposal. This value can only be used for compare relevance. A proposal is more relevant than another if his relevance value is higher.

acceptLabel

void acceptLabel(char[] labelName,
                 int completionStart,
                 int completionEnd,
                 int relevance)
Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.

Code assist notification of a label completion.

Parameters:
labelName - The label source.
completionStart - The start position of insertion of the name of this label.
completionEnd - The end position of insertion of the name of this label.
relevance - The relevance of the completion proposal It is a positive integer which are used for determine if this proposal is more relevant than another proposal. This value can only be used for compare relevance. A proposal is more relevant than another if his relevance value is higher.

acceptLocalVariable

void acceptLocalVariable(char[] name,
                         char[] typePackageName,
                         char[] typeName,
                         int modifiers,
                         int completionStart,
                         int completionEnd,
                         int relevance)
Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.

Code assist notification of a local variable completion.

Parameters:
name - Name of the new local variable.
typePackageName - Name of the package in which the type of this new local variable is declared.
typeName - Name of the type of this new local variable.
modifiers - The modifiers of this new local variable.
completionStart - The start position of insertion of the name of this new local variable.
completionEnd - The end position of insertion of the name of this new local variable.
relevance - The relevance of the completion proposal It is a positive integer which are used for determine if this proposal is more relevant than another proposal. This value can only be used for compare relevance. A proposal is more relevant than another if his relevance value is higher.

acceptMethod

void acceptMethod(char[] declaringTypePackageName,
                  char[] declaringTypeName,
                  char[] selector,
                  char[][] parameterPackageNames,
                  char[][] parameterTypeNames,
                  char[][] parameterNames,
                  char[] returnTypePackageName,
                  char[] returnTypeName,
                  char[] completionName,
                  int modifiers,
                  int completionStart,
                  int completionEnd,
                  int relevance)
Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.

Code assist notification of a method/function completion.

Parameters:
declaringTypePackageName - Name of the package in which the type that contains this new method is declared.
declaringTypeName - Name of the type declaring this new method.
selector - Name of the new method.
parameterPackageNames - Names of the packages in which the parameter types are declared. Should contain as many elements as parameterTypeNames.
parameterTypeNames - Names of the parameter types. Should contain as many elements as parameterPackageNames.
parameterNames - Names of the parameters. Should contain as many elements as parameterPackageNames.
returnTypePackageName - Name of the package in which the return type is declared.
returnTypeName - Name of the return type of this new method, should be null for a constructor.
completionName - The completion for the method. Can include zero, one or two brackets. If the closing bracket is included, then the cursor should be placed before it.
modifiers - The modifiers of this new method.
completionStart - The start position of insertion of the name of this new method.
completionEnd - The end position of insertion of the name of this new method.
relevance - The relevance of the completion proposal It is a positive integer which are used for determine if this proposal is more relevant than another proposal. This value can only be used for compare relevance. A proposal is more relevant than another if his relevance value is higher. NOTE: parameter names can be retrieved from the source model after the user selects a specific method.

acceptMethodDeclaration

void acceptMethodDeclaration(char[] declaringTypePackageName,
                             char[] declaringTypeName,
                             char[] selector,
                             char[][] parameterPackageNames,
                             char[][] parameterTypeNames,
                             char[][] parameterNames,
                             char[] returnTypePackageName,
                             char[] returnTypeName,
                             char[] completionName,
                             int modifiers,
                             int completionStart,
                             int completionEnd,
                             int relevance)
Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.

Code assist notification of a method/function completion.

Parameters:
declaringTypePackageName - Name of the package in which the type that contains this new method is declared.
declaringTypeName - Name of the type declaring this new method.
selector - Name of the new method.
parameterPackageNames - Names of the packages in which the parameter types are declared. Should contain as many elements as parameterTypeNames.
parameterTypeNames - Names of the parameter types. Should contain as many elements as parameterPackageNames.
parameterNames - Names of the parameters. Should contain as many elements as parameterPackageNames.
returnTypePackageName - Name of the package in which the return type is declared.
returnTypeName - Name of the return type of this new method, should be null for a constructor.
completionName - The completion for the method. Can include zero, one or two brackets. If the closing bracket is included, then the cursor should be placed before it.
modifiers - The modifiers of this new method.
completionStart - The start position of insertion of the name of this new method.
completionEnd - The end position of insertion of the name of this new method.
relevance - The relevance of the completion proposal It is a positive integer which are used for determine if this proposal is more relevant than another proposal. This value can only be used for compare relevance. A proposal is more relevant than another if his relevance value is higher. NOTE: parameter names can be retrieved from the source model after the user selects a specific method.

acceptModifier

void acceptModifier(char[] modifierName,
                    int completionStart,
                    int completionEnd,
                    int relevance)
Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.

Code assist notification of a modifier completion.

Parameters:
modifierName - The new modifier.
completionStart - The start position of insertion of the name of this new modifier.
completionEnd - The end position of insertion of the name of this new modifier.
relevance - The relevance of the completion proposal It is a positive integer which are used for determine if this proposal is more relevant than another proposal. This value can only be used for compare relevance. A proposal is more relevant than another if his relevance value is higher.

acceptPackage

void acceptPackage(char[] packageName,
                   char[] completionName,
                   int completionStart,
                   int completionEnd,
                   int relevance)
Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.

Code assist notification of a package completion.

Note: This Method only applies to ECMAScript 4 which is not yet supported

Parameters:
packageName - The package name.
completionName - The completion for the package. Can include '.*;' for imports.
completionStart - The start position of insertion of the name of this new package.
completionEnd - The end position of insertion of the name of this new package.
relevance - The relevance of the completion proposal It is a positive integer which are used for determine if this proposal is more relevant than another proposal. This value can only be used for compare relevance. A proposal is more relevant than another if his relevance value is higher. NOTE - All package names are presented in their readable form: Package names are in the form "a.b.c". The default package is represented by an empty array.

acceptType

void acceptType(char[] packageName,
                char[] typeName,
                char[] completionName,
                int completionStart,
                int completionEnd,
                int relevance)
Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.

Code assist notification of a type completion.

Note: This Method only applies to ECMAScript 4 which is not yet supported

Parameters:
packageName - Declaring package name of the type.
typeName - Name of the type.
completionName - The completion for the type. Can include ';' for imported types.
completionStart - The start position of insertion of the name of the type.
completionEnd - The end position of insertion of the name of the type.
relevance - The relevance of the completion proposal It is a positive integer which are used for determine if this proposal is more relevant than another proposal. This value can only be used for compare relevance. A proposal is more relevant than another if his relevance value is higher. NOTE - All package and type names are presented in their readable form: Package names are in the form "a.b.c". The default package is represented by an empty array.

acceptVariableName

void acceptVariableName(char[] typePackageName,
                        char[] typeName,
                        char[] name,
                        char[] completionName,
                        int completionStart,
                        int completionEnd,
                        int relevance)
Deprecated. Use CompletionRequestor.accept(CompletionProposal) instead.

Code assist notification of a variable name completion.

Parameters:
typePackageName - Name of the package in which the type of this variable is declared.
typeName - Name of the type of this variable.
name - Name of the variable.
completionName - The completion for the variable.
completionStart - The start position of insertion of the name of this variable.
completionEnd - The end position of insertion of the name of this variable.
relevance - The relevance of the completion proposal It is a positive integer which are used for determine if this proposal is more relevant than another proposal. This value can only be used for compare relevance. A proposal is more relevant than another if his relevance value is higher.