| org.codehaus.groovy.ast.expr.Expression org.codehaus.groovy.ast.expr.MethodCallExpression
MethodCallExpression | public class MethodCallExpression extends Expression (Code) | | A method call on an object or class
author: James Strachan version: $Revision: 4287 $ |
getMethodAsString | public String getMethodAsString()(Code) | | This method returns the method name as String if it is no dynamic
calculated method name, but an constant.
|
isImplicitThis | public boolean isImplicitThis()(Code) | | true if no object expression was specified otherwise if some expression was specified for the object on which to evaluatethe method then return false |
isSafe | public boolean isSafe()(Code) | | is this a safe method call, i.e. if true then if the source object is nullthen this method call will return null rather than throwing a null pointer exception |
isSpreadSafe | public boolean isSpreadSafe()(Code) | | |
setImplicitThis | public void setImplicitThis(boolean implicitThis)(Code) | | |
setSafe | public void setSafe(boolean safe)(Code) | | |
setSpreadSafe | public void setSpreadSafe(boolean value)(Code) | | |
|
|