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 | isDynamicTyped() | 
|  | public boolean | isInStaticContext() | 
|  | public void | setField(FieldNode field) | 
|  | 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, 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.
      
Copyright © 2003-2025 The Apache Software Foundation. All rights reserved.