Type Params | Return Type | Name and description |
---|---|---|
|
static void |
addPseudoProperties(org.codehaus.groovy.ast.ClassNode origType, org.codehaus.groovy.ast.ClassNode cNode, List<PropertyNode> result, Set<String> names, boolean includeStatic, boolean includePseudoGetters, boolean includePseudoSetters) |
|
static List<PropertyNode> |
getAllProperties(org.codehaus.groovy.ast.ClassNode type, boolean includeSuperProperties, boolean includeStatic, boolean includePseudoGetters) Get all properties including JavaBean pseudo properties matching getter conventions. |
|
static List<PropertyNode> |
getAllProperties(org.codehaus.groovy.ast.ClassNode type, boolean includeSuperProperties, boolean includeStatic, boolean includePseudoGetters, boolean includePseudoSetters, boolean superFirst) Get all properties including JavaBean pseudo properties matching JavaBean getter or setter conventions. |
Get all properties including JavaBean pseudo properties matching getter conventions.
type
- the ClassNodeincludeSuperProperties
- whether to include super propertiesincludeStatic
- whether to include static propertiesincludePseudoGetters
- whether to include JavaBean pseudo (getXXX/isYYY) properties with no corresponding fieldGet all properties including JavaBean pseudo properties matching JavaBean getter or setter conventions.
type
- the ClassNodeincludeSuperProperties
- whether to include super propertiesincludeStatic
- whether to include static propertiesincludePseudoGetters
- whether to include JavaBean pseudo (getXXX/isYYY) properties with no corresponding fieldincludePseudoSetters
- whether to include JavaBean pseudo (setXXX) properties with no corresponding fieldsuperFirst
- are properties gathered first from parent classes