Uses of Interface
com.speedment.common.codegen.model.JavadocTag
-
Packages that use JavadocTag Package Description com.speedment.common.codegen.constant This package contains constant classes.com.speedment.common.codegen.model Models for typical object-oriented language building blocks are located in this package.com.speedment.common.codegen.model.trait Common traits used by the codegen models located in thecom.speedment.codegen.lang.modelpackage. -
-
Uses of JavadocTag in com.speedment.common.codegen.constant
Classes in com.speedment.common.codegen.constant that implement JavadocTag Modifier and Type Class Description classDefaultJavadocTagMethods in com.speedment.common.codegen.constant that return JavadocTag Modifier and Type Method Description JavadocTagDefaultJavadocTag. call(Consumer<JavadocTag> procedure)Calls the specifiedConsumerwith this object as the parameter.JavadocTagDefaultJavadocTag. copy()JavadocTagDefaultJavadocTag. setName(String name)Sets the name of this model.JavadocTagDefaultJavadocTag. setText(String text)Sets the text of this javadoc tag.JavadocTagDefaultJavadocTag. setValue(String value)Sets the value of this javadoc tag.Method parameters in com.speedment.common.codegen.constant with type arguments of type JavadocTag Modifier and Type Method Description JavadocTagDefaultJavadocTag. call(Consumer<JavadocTag> procedure)Calls the specifiedConsumerwith this object as the parameter. -
Uses of JavadocTag in com.speedment.common.codegen.model
Methods in com.speedment.common.codegen.model that return JavadocTag Modifier and Type Method Description static JavadocTagJavadocTag. of(String name)Creates a new instance implementing this interface by using the default implementation.static JavadocTagJavadocTag. of(String name, String text)Creates a new instance implementing this interface by using the default implementation.static JavadocTagJavadocTag. of(String name, String value, String text)Creates a new instance implementing this interface by using the default implementation.JavadocTagJavadocTag. setText(String text)Sets the text of this javadoc tag.JavadocTagJavadocTag. setValue(String value)Sets the value of this javadoc tag. -
Uses of JavadocTag in com.speedment.common.codegen.model.trait
Methods in com.speedment.common.codegen.model.trait that return types with arguments of type JavadocTag Modifier and Type Method Description List<JavadocTag>HasJavadocTags. getTags()Returns a list of all documentation tags of this model.Methods in com.speedment.common.codegen.model.trait with parameters of type JavadocTag Modifier and Type Method Description default THasJavadocTags. add(JavadocTag tag)Adds the specifiedJavadocTagto this model.
-