Package com.sun.codemodel.writer
Class FileCodeWriter
java.lang.Object
com.sun.codemodel.CodeWriter
com.sun.codemodel.writer.FileCodeWriter
Writes all the source files under the specified file folder.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final boolean
specify whether or not to mark the generated files read-onlyFiles that shall be marked as read only.private final File
The target directory to put source code.Fields inherited from class com.sun.codemodel.CodeWriter
encoding
-
Constructor Summary
ConstructorsConstructorDescriptionFileCodeWriter
(File target) FileCodeWriter
(File target, boolean readOnly) FileCodeWriter
(File target, boolean readOnly, String encoding) FileCodeWriter
(File target, String encoding) -
Method Summary
Methods inherited from class com.sun.codemodel.CodeWriter
openSource
-
Field Details
-
target
The target directory to put source code. -
readOnly
private final boolean readOnlyspecify whether or not to mark the generated files read-only -
readonlyFiles
Files that shall be marked as read only.
-
-
Constructor Details
-
FileCodeWriter
- Throws:
IOException
-
FileCodeWriter
- Throws:
IOException
-
FileCodeWriter
- Throws:
IOException
-
FileCodeWriter
- Throws:
IOException
-
-
Method Details
-
openBinary
Description copied from class:CodeWriter
Called by CodeModel to store the specified file. The callee must allocate a storage to store the specified file.The returned stream will be closed before the next file is stored. So the callee can assume that only one OutputStream is active at any given time.
- Specified by:
openBinary
in classCodeWriter
- Parameters:
pkg
- The package of the file to be written.fileName
- File name without the path. Something like "Foo.java" or "Bar.properties"- Throws:
IOException
-
getFile
- Throws:
IOException
-
close
Description copied from class:CodeWriter
Called by CodeModel at the end of the process.- Specified by:
close
in classCodeWriter
- Throws:
IOException
-
toDirName
Converts a package name to the directory name.
-