public class MethodNode extends AnnotatedNode implements org.objectweb.asm.Opcodes
Represents a method declaration.
Constructor and description |
---|
protected MethodNode
() |
MethodNode
(String name, int modifiers, ClassNode returnType, Parameter[] parameters, ClassNode[] exceptions, Statement code) |
Type Params | Return Type | Name and description |
---|---|---|
|
Statement |
getCode() |
|
ClassNode[] |
getExceptions() |
|
Statement |
getFirstStatement() |
|
GenericsType[] |
getGenericsTypes() |
|
int |
getModifiers() |
|
String |
getName() |
|
Parameter[] |
getParameters() |
|
ClassNode |
getReturnType() |
|
String |
getText() Provides a nicely formatted string of the method definition. |
|
String |
getTypeDescriptor() The type descriptor for a method node is a string containing the name of the method, its return type, and its parameter types in a canonical form. |
|
VariableScope |
getVariableScope() |
|
boolean |
hasAnnotationDefault()
|
|
boolean |
hasDefaultValue()
|
|
boolean |
isAbstract() |
|
boolean |
isDefault() |
|
boolean |
isDynamicReturnType() |
|
boolean |
isFinal() |
|
boolean |
isPackageScope() |
|
boolean |
isPrivate() |
|
boolean |
isProtected() |
|
boolean |
isPublic() |
|
boolean |
isScriptBody()
|
|
boolean |
isStatic() |
|
boolean |
isStaticConstructor() |
|
boolean |
isSyntheticPublic() Indicates that this method has been "promoted" to public by Groovy when in fact there was no public modifier explicitly in the source code. |
|
boolean |
isVoidMethod() |
|
void |
setAnnotationDefault(boolean hasDefaultValue) |
|
void |
setCode(Statement code) |
|
void |
setGenericsTypes(GenericsType[] genericsTypes) |
|
void |
setIsScriptBody() Sets the flag for this method to indicate it is a script body implementation. |
|
void |
setModifiers(int modifiers) |
|
void |
setParameters(Parameter[] parameters) |
|
void |
setReturnType(ClassNode returnType) |
|
void |
setSyntheticPublic(boolean syntheticPublic) |
|
void |
setVariableScope(VariableScope variableScope) |
|
String |
toString() |
Methods inherited from class | Name |
---|---|
class AnnotatedNode |
addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic |
class ASTNode |
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, getText, hashCode, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition, visit |
Provides a nicely formatted string of the method definition. For simplicity, generic types on some of the elements are not displayed.
The type descriptor for a method node is a string containing the name of the method, its return type, and its parameter types in a canonical form. For simplicity, we use the format of a Java declaration without parameter names or generics.
true
if annotation method has a default value
true
if any parameter has a default value
true
if this method is the run method from a scriptIndicates that this method has been "promoted" to public by Groovy when in fact there was no public modifier explicitly in the source code. I.e. it remembers that it has applied Groovy's "public methods by default" rule. This property is typically only of interest to AST transform writers.
true
if this class is public but had no explicit public modifierSets the flag for this method to indicate it is a script body implementation.
Copyright © 2003-2020 The Apache Software Foundation. All rights reserved.