Package org.mapstruct.ap.internal.model
Class Javadoc
- java.lang.Object
-
- org.mapstruct.ap.internal.writer.FreeMarkerWritable
-
- org.mapstruct.ap.internal.model.common.ModelElement
-
- org.mapstruct.ap.internal.model.Javadoc
-
- All Implemented Interfaces:
Writable
public class Javadoc extends ModelElement
Represents the javadoc information that should be generated for aMapper
.- Author:
- Jose Carlos Campanero Ortiz
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Javadoc.Builder
-
Nested classes/interfaces inherited from interface org.mapstruct.ap.internal.writer.Writable
Writable.Context
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getAuthors()
String
getDeprecated()
Set<Type>
getImportTypes()
Returns a set containing thoseType
s referenced by this model element for which an import statement needs to be declared.String
getSince()
String
getValue()
-
Methods inherited from class org.mapstruct.ap.internal.writer.FreeMarkerWritable
getTemplateName, getTemplateNameForClass, write
-
-
-
-
Method Detail
-
getValue
public String getValue()
-
getDeprecated
public String getDeprecated()
-
getSince
public String getSince()
-
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
.
-
-