Class AnnotationSpecImpl
java.lang.Object
org.tquadrat.foundation.javacomposer.internal.AnnotationSpecImpl
- All Implemented Interfaces:
AnnotationSpec
@ClassVersion(sourceVersion="$Id: AnnotationSpecImpl.java 1105 2024-02-28 12:58:46Z tquadrat $")
@API(status=INTERNAL,
since="0.0.5")
public final class AnnotationSpecImpl
extends Object
implements AnnotationSpec
The implementation of
AnnotationSpec
for a generated annotation on a declaration.- Author:
- Square,Inc.
- Modified by:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: AnnotationSpecImpl.java 1105 2024-02-28 12:58:46Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.javacomposer.internal.AnnotationSpecImpl"
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
The implementation ofAnnotationSpec.Builder
for a builder of anAnnotationSpecImpl
instance.Nested classes/interfaces inherited from interface org.tquadrat.foundation.javacomposer.AnnotationSpec
AnnotationSpec.Builder
-
Field Summary
FieldsModifier and TypeFieldDescriptionLazily initialised return value oftoString()
for this annotation.private final JavaComposer
The reference to the factory.private final boolean
A flag that indicates whether the inline representation is forced for this annotation.private final Map
<String, List<CodeBlockImpl>> The code blocks that define this annotation.private final TypeNameImpl
The name of this annotation. -
Constructor Summary
ConstructorsConstructorDescriptionCreates a newAnnotationSpecImpl
instance. -
Method Summary
Modifier and TypeMethodDescriptionfinal void
emit
(CodeWriter codeWriter, boolean inline) Emits this annotation to the given code writer.private final void
emit4Foundation
(CodeWriter codeWriter, boolean inline) Emits this annotation to the given code writer.private final void
emit4JavaPoet
(CodeWriter codeWriter, boolean inline) Emits this annotation to the given code writer using the original JavaPoet layout.private static final void
emitAnnotationValues
(CodeWriter codeWriter, String whitespace, String memberSeparator, List<CodeBlockImpl> values) Emits the values of this annotation to the given code writer.final boolean
final JavaComposer
Returns theJavaComposer
factory.final int
hashCode()
private final String
The initializer form_CachedString
.final AnnotationSpec.Builder
Creates a new builder that is initialised with the components of this annotation.final String
toString()
-
Field Details
-
m_CachedString
Lazily initialised return value oftoString()
for this annotation. -
m_Composer
The reference to the factory. -
m_ForceInline
A flag that indicates whether the inline representation is forced for this annotation.- See Also:
-
m_Members
The code blocks that define this annotation. -
m_Type
The name of this annotation.
-
-
Constructor Details
-
AnnotationSpecImpl
Creates a newAnnotationSpecImpl
instance.- Parameters:
builder
- The builder for this instance.
-
-
Method Details
-
emit
Emits this annotation to the given code writer.- Parameters:
codeWriter
- The code writer.inline
-true
if the annotation should be placed on the same line as the annotated element,false
otherwise.- Throws:
UncheckedIOException
- A problem occurred when writing to the output target.
-
emit4Foundation
private final void emit4Foundation(CodeWriter codeWriter, boolean inline) throws UncheckedIOException Emits this annotation to the given code writer.- Parameters:
codeWriter
- The code writer.inline
-true
if the annotation should be placed on the same line as the annotated element,false
otherwise.- Throws:
UncheckedIOException
- A problem occurred when writing to the output target.
-
emit4JavaPoet
Emits this annotation to the given code writer using the original JavaPoet layout.- Parameters:
codeWriter
- The code writer.inline
-true
if the annotation should be placed on the same line as the annotated element,false
otherwise.- Throws:
UncheckedIOException
- A problem occurred when writing to the output target.
-
emitAnnotationValues
private static final void emitAnnotationValues(CodeWriter codeWriter, String whitespace, String memberSeparator, List<CodeBlockImpl> values) throws UncheckedIOException Emits the values of this annotation to the given code writer.- Parameters:
codeWriter
- The code writer.whitespace
- The whitespace to emit.memberSeparator
- The separator for the members.values
- The members to emit.- Throws:
UncheckedIOException
- A problem occurred when writing to the output target.
-
equals
- Specified by:
equals
in interfaceAnnotationSpec
- Overrides:
equals
in classObject
-
getFactory
Returns theJavaComposer
factory.- Returns:
- The reference to the factory.
-
hashCode
- Specified by:
hashCode
in interfaceAnnotationSpec
- Overrides:
hashCode
in classObject
-
initializeCachedString
The initializer form_CachedString
.- Returns:
- The return value for
toString()
.
-
toBuilder
Creates a new builder that is initialised with the components of this annotation.- Specified by:
toBuilder
in interfaceAnnotationSpec
- Returns:
- The new builder.
-
toString
- Specified by:
toString
in interfaceAnnotationSpec
- Overrides:
toString
in classObject
-