Class JavaFileImpl
java.lang.Object
org.tquadrat.foundation.javacomposer.internal.JavaFileImpl
- All Implemented Interfaces:
JavaFile
@ClassVersion(sourceVersion="$Id: JavaFileImpl.java 1105 2024-02-28 12:58:46Z tquadrat $")
@API(status=INTERNAL,
since="0.0.5")
public final class JavaFileImpl
extends Object
implements JavaFile
The implementation of
JavaFile
for a Java file containing a single top level class.- 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"
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
The builder for an instance ofJavaFileImpl
as an implementation ofJavaFile.Builder
.Nested classes/interfaces inherited from interface org.tquadrat.foundation.javacomposer.JavaFile
JavaFile.Builder
-
Field Summary
FieldsModifier and TypeFieldDescriptionLazily initialised return value oftoString()
for this instance.private final JavaComposer
The reference to the factory.private final CodeBlockImpl
The file comment.private final Layout
The layout for the output of thisJavaFile
.private final String
The name of the package for the class.private final boolean
Flag that determines whether to skip the imports for classes from the packagejava.lang
.The static imports.private final TypeSpecImpl
TheTypeSpecImpl
for the class in theJavaFileImpl
.private static final Appendable
An implementation ofAppendable
that places any data that is put to it into the void. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
JavaFileImpl
(JavaFileImpl.BuilderImpl builder) Creates a newJavaFileImpl
instance. -
Method Summary
Modifier and TypeMethodDescriptionstatic JavaFileImpl.BuilderImpl
builder
(CharSequence packageName, TypeSpec typeSpec) Deprecated, for removal: This API element is subject to removal in a future version.private final void
emit
(CodeWriter codeWriter) Writes this instance ofJavaFile
to the givenCodeWriter
instance.final boolean
final JavaComposer
Returns theJavaComposer
factory.final int
hashCode()
private final String
The initializer form_CachedString
.final JavaFile.Builder
Returns a new builder that is initialised with thisJavaFile
instance.final JavaFileObject
Creates aJavaFileObject
from this instance ofJavaFile
.final String
toString()
final void
Writes thisJavaFile
instance to the given target folder as a UTF-8 file, using the standard directory structure for the packages.final void
writeTo
(Appendable out) Writes thisJavaFile
instance to the givenAppendable
.void
Writes thisJavaFile
instance to the given target folder as a UTF-8 file, using the standard directory structure for the packages.final void
WritesJavaFile
instance to the givenFiler
instance.
-
Field Details
-
NULL_APPENDABLE
An implementation ofAppendable
that places any data that is put to it into the void. -
m_CachedString
Lazily initialised return value oftoString()
for this instance. -
m_Composer
The reference to the factory. -
m_FileComment
The file comment. -
m_Layout
The layout for the output of thisJavaFile
. -
m_PackageName
The name of the package for the class. -
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
-
JavaFileImpl
Creates a newJavaFileImpl
instance.- Parameters:
builder
- The builder that was used to collect the data for the new instance.
-
-
Method Details
-
builder
@Deprecated(since="0.2.0", forRemoval=true) @API(status=DEPRECATED, since="0.0.5") public static JavaFileImpl.BuilderImpl builder(CharSequence packageName, TypeSpec typeSpec) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.Creates a builder for a new instance ofJavaFile
from the given package name and class definition.- Parameters:
packageName
- The package name.typeSpec
- The class definition.- Returns:
- The builder.
-
emit
Writes this instance ofJavaFile
to the givenCodeWriter
instance.- Parameters:
codeWriter
- The code writer.- Throws:
UncheckedIOException
- A problem occurred when writing to the output target.
-
equals
-
getFactory
Returns theJavaComposer
factory.- Returns:
- The reference to the factory.
-
hashCode
-
initializeCachedString
The initializer form_CachedString
.- Returns:
- The return value for
toString()
.
-
toBuilder
Returns a new builder that is initialised with thisJavaFile
instance. -
toJavaFileObject
Creates aJavaFileObject
from this instance ofJavaFile
.- Specified by:
toJavaFileObject
in interfaceJavaFile
- Returns:
- The
JavaFileObject
.
-
toString
-
writeTo
Writes thisJavaFile
instance to the givenAppendable
.- Specified by:
writeTo
in interfaceJavaFile
- Parameters:
out
- The output target.- Throws:
IOException
- A problem occurred when writing to the output target.
-
writeTo
Writes thisJavaFile
instance to the given target folder as a UTF-8 file, using the standard directory structure for the packages.- Specified by:
writeTo
in interfaceJavaFile
- Parameters:
directory
- The target folder.- Throws:
IOException
- A problem occurred when writing to the output target.
-
writeTo
WritesJavaFile
instance to the givenFiler
instance.- Specified by:
writeTo
in interfaceJavaFile
- Parameters:
filer
- The target.- Throws:
IOException
- A problem occurred when writing to the output target.
-
writeTo
Writes thisJavaFile
instance to the given target folder as a UTF-8 file, using the standard directory structure for the packages.- Specified by:
writeTo
in interfaceJavaFile
- Parameters:
directory
- The target folder.- Throws:
IOException
- A problem occurred when writing to the output target.
-
JavaComposer
.