Package org.codehaus.groovy.ast
Class ModifierNode
java.lang.Object
org.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.ModifierNode
- All Implemented Interfaces:
NodeMetaDataHandler
public class ModifierNode extends ASTNode
Represents a modifier
-
Field Summary
Fields Modifier and Type Field Description static int
ANNOTATION_TYPE
static Map<Integer,Integer>
MODIFIER_OPCODE_MAP
-
Constructor Summary
Constructors Constructor Description ModifierNode(Integer type)
ModifierNode(Integer type, String text)
ModifierNode(AnnotationNode annotationNode, String text)
-
Method Summary
Modifier and Type Method Description boolean
equals(Object o)
AnnotationNode
getAnnotationNode()
Integer
getOpcode()
String
getText()
Integer
getType()
int
hashCode()
boolean
isAnnotation()
boolean
isDef()
boolean
isModifier()
Check whether the modifier is not an imagined modifier(annotation, def)boolean
isNonVisibilityModifier()
boolean
isRepeatable()
boolean
isVisibilityModifier()
String
toString()
Methods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition, visit
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandler
copyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setNodeMetaData
-
Field Details
-
ANNOTATION_TYPE
public static final int ANNOTATION_TYPE- See Also:
- Constant Field Values
-
MODIFIER_OPCODE_MAP
-
-
Constructor Details
-
ModifierNode
-
ModifierNode
- Parameters:
type
- the modifier type, which is same as the token typetext
- text of the ast node
-
ModifierNode
- Parameters:
annotationNode
- the annotation nodetext
- text of the ast node
-
-
Method Details
-
isModifier
public boolean isModifier()Check whether the modifier is not an imagined modifier(annotation, def) -
isVisibilityModifier
public boolean isVisibilityModifier() -
isNonVisibilityModifier
public boolean isNonVisibilityModifier() -
isAnnotation
public boolean isAnnotation() -
isDef
public boolean isDef() -
getType
-
getOpcode
-
isRepeatable
public boolean isRepeatable() -
getText
-
getAnnotationNode
-
equals
-
hashCode
public int hashCode() -
toString
-