Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Constructor and description |
---|
AnnotatedNode
() |
Type | Name and description |
---|---|
void |
addAnnotation(AnnotationNode value) |
void |
addAnnotations(List<AnnotationNode> annotations) |
List<AnnotationNode> |
getAnnotations() |
List<AnnotationNode> |
getAnnotations(ClassNode type) |
ClassNode |
getDeclaringClass() |
boolean |
hasNoRealSourcePosition() Currently only ever returns true for default constructors added by the compiler. |
boolean |
isSynthetic() returns true if this node is added by the compiler. |
void |
setDeclaringClass(ClassNode declaringClass) @param declaringClass - The declaringClass to set. |
void |
setHasNoRealSourcePosition(boolean value) |
void |
setSynthetic(boolean synthetic) sets this node as a node added by the compiler. |
Methods inherited from class | Name |
---|---|
class ASTNode |
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getNodeMetaData, getNodeMetaData, getText, putNodeMetaData, removeNodeMetaData, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setNodeMetaData, setSourcePosition, visit |
class Object |
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Currently only ever returns true for default constructors added by the compiler. See GROOVY-4161.
returns true if this node is added by the compiler. NOTE: This method has nothing to do with the synthetic flag for fields, methods or classes.
declaringClass
- - The declaringClass to set.sets this node as a node added by the compiler. NOTE: This method has nothing to do with the synthetic flag for fields, methods or classes.
synthetic
- - if true this node is marked as
added by the compilerCopyright © 2003-2015 The Apache Software Foundation. All rights reserved.