Implementation of the CompletionResultProvider for the
Scope Resolution Operator (::) context.
Note that this implementation is not synchronized.
See Also: PHP See Also: Manual / Example 19.12. :: from outside the class definition See Also: PHP See Also: Manual / Example 19.13. :: from inside the class definition author: Victor G. Vasilyev
isApplicable(CodeCompletionContext context) Returns true iif the specified context
is applicable for completing the Scope Resolution Operator (::),
i.e.
Returns true iif the specified context
is applicable for completing the Scope Resolution Operator (::),
i.e. caret is located after this operator.
E.g. see PHP Manual / Example 19.12. :: from outside the class definition
<?php
class MyClass {
const CONST_VALUE = 'A constant value';
}
echo MyClass::CONST_VALUE;
... ?>
Parameters: context - the CodeCompletionContext.
Fields inherited from org.netbeans.modules.php.editor.completion.MemberAccessExpressionScope