Class JavaFileImpl.BuilderImpl
java.lang.Object
org.tquadrat.foundation.javacomposer.internal.JavaFileImpl.BuilderImpl
- All Implemented Interfaces:
JavaFile.Builder
- Enclosing class:
JavaFileImpl
@ClassVersion(sourceVersion="$Id: JavaFileImpl.java 1105 2024-02-28 12:58:46Z tquadrat $")
@API(status=INTERNAL,
since="0.0.5")
public static final class JavaFileImpl.BuilderImpl
extends Object
implements JavaFile.Builder
The builder for an instance of
JavaFileImpl
as an implementation of
JavaFile.Builder
.- Author:
- Square,Inc.
- Modified by:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: JavaFileImpl.java 1105 2024-02-28 12:58:46Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.javacomposer.internal.JavaFileImpl.BuilderImpl"
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final JavaComposer
The reference to the factory.private final CodeBlockImpl.BuilderImpl
The file comment.private Layout
The layout for the output ofJavaFile
.private final String
The name of the package for the class in theJavaFileImpl
.private boolean
Flag that determines whether to skip the imports for classes from the packagejava.lang
.private final Collection
<String> The static imports.private final TypeSpecImpl
TheTypeSpecImpl
for the class in theJavaFileImpl
. -
Constructor Summary
ConstructorsConstructorDescriptionBuilderImpl
(JavaComposer composer, CharSequence packageName, TypeSpecImpl typeSpec) Creates a newBuilderImpl
instance.BuilderImpl
(JavaComposer composer, CharSequence packageName, TypeSpecImpl typeSpec, CodeBlockImpl fileComment, Layout layout, boolean skipJavaLangImports) Creates a newBuilderImpl
instance. -
Method Summary
Modifier and TypeMethodDescriptionfinal JavaFileImpl.BuilderImpl
addFileComment
(String format, Object... args) Adds text to the file comment.final JavaFileImpl.BuilderImpl
addStaticImport
(Class<?> clazz, String... names) Adds a static import.final JavaFileImpl.BuilderImpl
addStaticImport
(Enum<?> constant) Adds a static import for the givenenum
value.final JavaFileImpl.BuilderImpl
addStaticImport
(ClassName className, String... names) Adds a static import.final JavaFileImpl
build()
Builds an instance ofJavaFile
from this builder.final CodeBlockImpl
Returns the file comment.final Layout
layout()
Returns the layout for the output of theJavaFile
.final String
Returns the package name.final boolean
Returns the flag that rules whether imports for classes from the packagejava.lang
will be omitted.final JavaFileImpl.BuilderImpl
skipJavaLangImports
(boolean flag) Returns the static imports.final TypeSpecImpl
typeSpec()
Returns the specification of the type for the Java file.
-
Field Details
-
m_Composer
The reference to the factory. -
m_FileComment
The file comment. -
m_Layout
The layout for the output ofJavaFile
. -
m_PackageName
The name of the package for the class in theJavaFileImpl
. -
m_SkipJavaLangImports
Flag that determines whether to skip the imports for classes from the packagejava.lang
. -
m_StaticImports
The static imports. -
m_TypeSpec
TheTypeSpecImpl
for the class in theJavaFileImpl
.
-
-
Constructor Details
-
BuilderImpl
Creates a newBuilderImpl
instance. -
BuilderImpl
public BuilderImpl(JavaComposer composer, CharSequence packageName, TypeSpecImpl typeSpec, CodeBlockImpl fileComment, Layout layout, boolean skipJavaLangImports) Creates a newBuilderImpl
instance.- Parameters:
composer
- The reference to the factory that created this builder instance.packageName
- The name of the package for the class in theJavaFileImpl
.typeSpec
- TheTypeSpecImpl
instance for the class in theJavaFileImpl
.fileComment
- The already existing file comments.layout
- The layout for the output ofJavaFile
.skipJavaLangImports
-true
means that the imports for classes from the packagejava.lang
are skipped,false
means that the imports are added explicitly.
-
-
Method Details
-
addFileComment
Adds text to the file comment.- Specified by:
addFileComment
in interfaceJavaFile.Builder
- Parameters:
format
- The format.args
- The arguments.- Returns:
- This
Builder
instance.
-
addStaticImport
Adds a static import.- Specified by:
addStaticImport
in interfaceJavaFile.Builder
- Parameters:
clazz
- The class.names
- The names of the elements from the given class that are to be imported.- Returns:
- This
Builder
instance.
-
addStaticImport
Adds a static import.- Specified by:
addStaticImport
in interfaceJavaFile.Builder
- Parameters:
className
- The class.names
- The names of the elements from the given class that are to be imported.- Returns:
- This
Builder
instance.
-
addStaticImport
Adds a static import for the givenenum
value.- Specified by:
addStaticImport
in interfaceJavaFile.Builder
- Parameters:
constant
- Theenum
value.- Returns:
- This
Builder
instance.
-
build
Builds an instance ofJavaFile
from this builder.- Specified by:
build
in interfaceJavaFile.Builder
- Returns:
- The
JavaFile
instance.
-
fileComment
Returns the file comment.- Returns:
- The file comment.
-
layout
Returns the layout for the output of theJavaFile
.- Returns:
- The layout.
-
packageName
Returns the package name.- Returns:
- The package name.
-
skipJavaLangImports
Call this to omit imports for classes from the package
java.lang
, such asString
orMath
.By default, JavaComposer explicitly imports types in
java.lang
to defend against naming conflicts. Suppose an (ill-advised) class is namedcom.example.String
. Whenjava.lang
imports are skipped, generated code incom.example
that referencesjava.lang.String
will getcom.example.String
instead.- Specified by:
skipJavaLangImports
in interfaceJavaFile.Builder
- Parameters:
flag
-true
means that the imports for classes from the packagejava.lang
are skipped,false
means that the imports are added explicitly.- Returns:
- This
Builder
instance.
-
skipJavaLangImports
Returns the flag that rules whether imports for classes from the packagejava.lang
will be omitted.- Returns:
true
means that the imports for classes from the packagejava.lang
are skipped,false
means that the imports are added explicitly.- See Also:
-
staticImports
Returns the static imports.- Returns:
- The static imports.
-
typeSpec
Returns the specification of the type for the Java file.- Returns:
- The type specification.
-