public class PropertyNode extends AnnotatedNode implements Variable
Represents a property (member variable, a getter and setter)
| Constructor and description |
|---|
PropertyNode(String name, int modifiers, ClassNode type, ClassNode owner, Expression initialValueExpression, Statement getterBlock, Statement setterBlock) |
PropertyNode(FieldNode field, int modifiers, Statement getterBlock, Statement setterBlock) |
| Type Params | Return Type | Name and description |
|---|---|---|
public FieldNode |
getField() | |
public Statement |
getGetterBlock() | |
public String |
getGetterName() | |
public String |
getGetterNameOrDefault()If an explicit getterName has been set, return that, otherwise return the default name for the property. | |
public Expression |
getInitialExpression() | |
public int |
getModifiers() | |
public String |
getName() | |
public ClassNode |
getOriginType() | |
public Statement |
getSetterBlock() | |
public String |
getSetterName() | |
public String |
getSetterNameOrDefault() | |
public ClassNode |
getType() | |
public boolean |
hasInitialExpression() | |
public boolean |
isClosureSharedVariable() | |
public boolean |
isDynamicTyped() | |
public boolean |
isInStaticContext() | |
public boolean |
isPrivate() | |
public boolean |
isPublic() | |
public boolean |
isStatic() | |
public void |
setClosureSharedVariable(boolean inClosure)
| |
public void |
setField(FieldNode fn) | |
public void |
setGetterBlock(Statement getterBlock) | |
public void |
setGetterName(String getterName) | |
public void |
setModifiers(int modifiers) | |
public void |
setSetterBlock(Statement setterBlock) | |
public void |
setSetterName(String setterName) | |
public void |
setType(ClassNode t) |
| 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, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition, visit |
If an explicit getterName has been set, return that, otherwise return the default name for the property. For a property foo, the default name is getFoo except for a boolean property where isFoo is the default if no getFoo method exists in the declaring class.
© 2003-2022 The Apache Software Foundation
Licensed under the Apache license.
https://docs.groovy-lang.org/4.0.0/html/gapi/org/codehaus/groovy/ast/PropertyNode.html