Package org.mapstruct.ap.internal.model
Class Annotation
- java.lang.Object
-
- org.mapstruct.ap.internal.writer.FreeMarkerWritable
-
- org.mapstruct.ap.internal.model.common.ModelElement
-
- org.mapstruct.ap.internal.model.Annotation
-
- All Implemented Interfaces:
Writable
public class Annotation extends ModelElement
Represents a Java 5 annotation.- Author:
- Gunnar Morling
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.mapstruct.ap.internal.writer.Writable
Writable.Context
-
-
Constructor Summary
Constructors Constructor Description Annotation(Type type)
Annotation(Type type, List<AnnotationElement> properties)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<Type>
getImportTypes()
Returns a set containing thoseType
s referenced by this model element for which an import statement needs to be declared.List<AnnotationElement>
getProperties()
Type
getType()
-
Methods inherited from class org.mapstruct.ap.internal.writer.FreeMarkerWritable
getTemplateName, getTemplateNameForClass, write
-
-
-
-
Constructor Detail
-
Annotation
public Annotation(Type type)
-
Annotation
public Annotation(Type type, List<AnnotationElement> properties)
-
-
Method Detail
-
getType
public Type getType()
-
getImportTypes
public Set<Type> getImportTypes()
Description copied from class:ModelElement
Returns a set containing thoseType
s referenced by this model element for which an import statement needs to be declared.- Specified by:
getImportTypes
in classModelElement
- Returns:
- A set with type referenced by this model element. Must not be
null
.
-
getProperties
public List<AnnotationElement> getProperties()
-
-