org.netbeans.modules.php.editor.completion |
|
Java Source File Name | Type | Comment |
ASTBasedProvider.java | Class | author: Victor G. |
BuiltinMethodItem.java | Class | This is method completion proposal based on existed PHP function
( from extensions or existed by default ). |
CodeCompletionContext.java | Class | author: Victor G. |
CodeTemplateProvider.java | Interface | Code completer delegates search of the template proposals to implementation
of this interface.
author: Victor G. |
CompletionItem.java | Class | |
CompletionResultProvider.java | Interface | Code completer delegates search of proposals to implementation of
this interface.
Only one implementation should care about context in #isApplicable() method.
If there are several such implementation then only one will be chosen . |
DocumentableElement.java | Class | An abstraction for the Element that has the associated
documentation.
Note: Note: All implementations of the Element interface
methods return null . |
ExpressionContext.java | Class | This implementation cares about any non special cases within ExpressionStatement
context. |
ForeignScope.java | Class | Implementation of the CompletionResultProvider for the foreign
context (i.e. |
KeywordItem.java | Class | This is PHP keyword completion proposal. |
MagicConstantItem.java | Class | This is PHP keyword completion proposal. |
MemberAccessExpressionScope.java | Class | An abstraction to support basic methods of the code completion in the scope
of the member access expressions, like this:
Class1::$attr
Class1::CONST1
$instanceRef->func1();
author: Victor G. |
MethodBodyContext.java | Class | Implementation of the CompletionResultProvider for the new
instruction context in the method body (i.e. |
NewExpressionScope.java | Class | 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. |
NewInstructionContext.java | Class | Implementation of the CompletionResultProvider for the new
instruction context.
Note that this implementation is not synchronized.
author: Victor G. |
ObjectMemberAccessExpressionScope.java | Class | Implementation of the CompletionResultProvider for the
scope of the Object Member Access Expression (->), like this:
$instanceRef->$attr
$instanceRef->CONST1
$instanceRef->func1();
author: Victor G. |
OffsetPair.java | Class | Container to store a pair of offsets related to a document.
A pair of offsets is able to describe a part of the text into the document,
e.g. |
PHPBlockItem.java | Class | Completion proposal for the PHP code block. |
ScopeResolutionOperatorContext.java | Class | 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. |
SelectionTemplates.java | Class | CodeTemplateProvider for selection templates.
author: Victor G. |
StringScope.java | Class | Implementation of the CompletionResultProvider for the string
scope.
See Also: http://www.php.net/manual/en/language.types.string.php#language.types.string.parsing author: Victor G. |
TemplateContext.java | Class | Container to store info about context of the template.
author: Victor G. |
UserDefinedMethodItem.java | Class | This is function completion proposal based on user defined PHP function. |
VariableItem.java | Class | |
VariableProvider.java | Class | author: ads author: Victor G. |