abstract type Annotation >: Null <: Universe.AnnotationApi
- Alphabetic
- By Inheritance
- Annotation
- AnnotationApi
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def javaArgs: ListMap[Universe.Name, Universe.JavaArgument]
Payload of the Java annotation: a list of name-value pairs.
Payload of the Java annotation: a list of name-value pairs. Empty for Scala annotations.
- Definition Classes
- AnnotationApi
- Annotations
- @deprecated
- Deprecated
(Since version 2.11.0) use
tree.children.tail
instead
- abstract def scalaArgs: List[Universe.Tree]
Payload of the Scala annotation: a list of abstract syntax trees that represent the argument.
Payload of the Scala annotation: a list of abstract syntax trees that represent the argument. Empty for Java annotations.
- Definition Classes
- AnnotationApi
- Annotations
- @deprecated
- Deprecated
(Since version 2.11.0) use
tree.children.tail
instead
- abstract def tpe: Universe.Type
The type of the annotation.
The type of the annotation.
- Definition Classes
- AnnotationApi
- Annotations
- @deprecated
- Deprecated
(Since version 2.11.0) use
tree.tpe
instead
Concrete Value Members
- def tree: Universe.Tree
The tree underlying the annotation.
The tree underlying the annotation.
- Definition Classes
- AnnotationApi