| java.lang.Object org.netbeans.modules.php.editor.completion.ExpressionContext
ExpressionContext | public class ExpressionContext implements CompletionResultProvider(Code) | | This implementation cares about any non special cases within ExpressionStatement
context. ( F.e. variable , that is part of expression statment, handled
in different provider ).
author: ads |
addUserDefinedFunctionProposals | public static void addUserDefinedFunctionProposals(List<CompletionProposal> list, CodeCompletionContext context)(Code) | | Adds user defined function proposals to the specified list .
Parameters: list - a list of the proposals. Parameters: context - a source element that defines the proposal context. Parameters: caretOffset - Parameters: prefix - Parameters: formatter - See Also: User-defined functions section of the Chapter 17. Functions of See Also: the PHP Manual. |
isNewIncompletedStatement | public static boolean isNewIncompletedStatement(SourceElement e)(Code) | | Returns true if the specified SourceElement
is the
org.netbeans.modules.php.model.Constant and the next
element is the last element in the new incompleted
org.netbeans.modules.php.model.ExpressionStatement .
Parameters: e - the underlying SourceElement . true if parent of the specified SourceElement is the new incompleted org.netbeans.modules.php.model.ExpressionStatement,otherwise - false . |
|
|