Uses of Class
org.tquadrat.foundation.javacomposer.internal.CodeBlockImpl
Packages that use CodeBlockImpl
Package
Description
The implementations for the interfaces from the package
org.tquadrat.foundation.javacomposer
.-
Uses of CodeBlockImpl in org.tquadrat.foundation.javacomposer.internal
Fields in org.tquadrat.foundation.javacomposer.internal declared as CodeBlockImplModifier and TypeFieldDescriptionprivate final CodeBlockImpl
ClassSpecImpl.BuilderImpl.m_AnonymousTypeArguments
The anonymous type arguments.private final CodeBlockImpl
ClassSpecImpl.m_AnonymousTypeArguments
The anonymous type arguments for this type.private final CodeBlockImpl
LambdaSpecImpl.m_Code
The code of the body for this lambda.private final CodeBlockImpl
MethodSpecImpl.m_Code
The code of this method.private CodeBlockImpl
MethodSpecImpl.BuilderImpl.m_DefaultValue
The default value for the method; this is for annotations only.private final CodeBlockImpl
JavaFileImpl.m_FileComment
The file comment.private CodeBlockImpl
FieldSpecImpl.BuilderImpl.m_Initializer
The initializer for the field.private final CodeBlockImpl
FieldSpecImpl.m_Initializer
The initializer for the field.private final CodeBlockImpl
TypeSpecImpl.m_InitializerBlock
The initializer block for this type.private final CodeBlockImpl
FieldSpecImpl.m_Javadoc
The Javadoc comment for the field.private final CodeBlockImpl
MethodSpecImpl.m_Javadoc
The Javadoc comment of this method.private final CodeBlockImpl
ParameterSpecImpl.m_Javadoc
The Javadoc comment for this type.private final CodeBlockImpl
TypeSpecImpl.m_Javadoc
The Javadoc comment for this type.private final CodeBlockImpl
MethodSpecImpl.m_ReturnComment
The comment for the return value of the method.private final CodeBlockImpl
TypeSpecImpl.m_StaticBlock
The static initializer block for this type.Fields in org.tquadrat.foundation.javacomposer.internal with type parameters of type CodeBlockImplModifier and TypeFieldDescriptionprivate final Map
<String, List<CodeBlockImpl>> AnnotationSpecImpl.BuilderImpl.m_CodeBlocks
The building blocks.private final Optional
<CodeBlockImpl> MethodSpecImpl.m_DefaultValue
The default value of this method; only applicable for annotations.private final Map
<String, List<CodeBlockImpl>> AnnotationSpecImpl.m_Members
The code blocks that define this annotation.Methods in org.tquadrat.foundation.javacomposer.internal that return CodeBlockImplModifier and TypeMethodDescriptionfinal CodeBlockImpl
CodeBlockImpl.BuilderImpl.build()
Creates theCodeBlock
from the added components.final CodeBlockImpl
LambdaSpecImpl.BuilderImpl.code()
Returns the code for the lambda body.final CodeBlockImpl
JavaFileImpl.BuilderImpl.fileComment()
Returns the file comment.protected final CodeBlockImpl
TypeSpecImpl.getInitializerBlock()
Returns the initializer block for this type.final CodeBlockImpl
FieldSpecImpl.getJavadoc()
Returns the Javadoc for this field.protected final CodeBlockImpl
TypeSpecImpl.getJavadoc()
Return the Javadoc for this type.protected final CodeBlockImpl
TypeSpecImpl.getStaticBlock()
Returns the static block for this type.final CodeBlockImpl
CodeBlockImpl.CodeBlockJoiner.join()
Returns the new code block with the joined ones.Methods in org.tquadrat.foundation.javacomposer.internal that return types with arguments of type CodeBlockImplModifier and TypeMethodDescriptionfinal Optional
<CodeBlockImpl> MethodSpecImpl.defaultValue()
Returns the default value of this method.protected final Optional
<CodeBlockImpl> ClassSpecImpl.BuilderImpl.getAnonymousTypeArguments()
Returns the anonymous type arguments for the new type.protected Optional
<CodeBlockImpl> TypeSpecImpl.BuilderImpl.getAnonymousTypeArguments()
Returns the anonymous type arguments for the new type.final Collector
<CodeBlockImpl, ?, CodeBlockImpl> ACollector
implementation that joinsCodeBlock
instances together into one new code block, separated by the given separator.final Collector
<CodeBlockImpl, ?, CodeBlockImpl> ACollector
implementation that joinsCodeBlock
instances together into one new code block, separated by the given separator.final Collector
<CodeBlockImpl, ?, CodeBlockImpl> ACollector
implementation that joinsCodeBlock
instances together into one new code block, separated by the given separator.final Collector
<CodeBlockImpl, ?, CodeBlockImpl> ACollector
implementation that joinsCodeBlock
instances together into one new code block, separated by the given separator.private static final Stream
<CodeBlockImpl> CodeBlockImpl.makeCodeBlockStream
(CodeBlock head, CodeBlock... tail) Composes a stream from the givenCodeBlock
instances.final Map
<String, List<CodeBlockImpl>> AnnotationSpecImpl.BuilderImpl.members()
Returns the members.Methods in org.tquadrat.foundation.javacomposer.internal with parameters of type CodeBlockImplModifier and TypeMethodDescriptionCodeBlockImpl.CodeBlockJoiner.add
(CodeBlockImpl codeBlock) Adds another code block.final CodeWriter
CodeWriter.emit
(CodeBlockImpl codeBlock) Emits the givenCodeBlockImpl
instance to the output target.final void
CodeWriter.emitBlockComment
(CodeBlockImpl codeBlock) Emits the givenCodeBlockImpl
instance as a block comment to the output target.final void
CodeWriter.emitJavadoc
(CodeBlockImpl codeBlock) Emits the givenCodeBlockImpl
instance as a JavaDoc comment to the output target.final void
CodeWriter.emitLineComment
(CodeBlockImpl codeBlock) Emits the givenCodeBlockImpl
instance as a line comment to the output target.Method parameters in org.tquadrat.foundation.javacomposer.internal with type arguments of type CodeBlockImplModifier and TypeMethodDescriptionprivate static final void
AnnotationSpecImpl.emitAnnotationValues
(CodeWriter codeWriter, String whitespace, String memberSeparator, List<CodeBlockImpl> values) Emits the values of this annotation to the given code writer.Constructors in org.tquadrat.foundation.javacomposer.internal with parameters of type CodeBlockImplModifierConstructorDescriptionBuilderImpl
(JavaComposer composer, CharSequence name, CodeBlockImpl anonymousTypeArguments) Creates a newBuilderImpl
instance.BuilderImpl
(JavaComposer composer, Optional<String> name, CodeBlockImpl anonymousTypeArguments) Creates a newBuilderImpl
instance.BuilderImpl
(JavaComposer composer, CodeBlockImpl anonymousTypeArguments) Creates a newBuilderImpl
instance for an anonymous type.BuilderImpl
(JavaComposer composer, CharSequence packageName, TypeSpecImpl typeSpec, CodeBlockImpl fileComment, Layout layout, boolean skipJavaLangImports) Creates a newBuilderImpl
instance.