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.
- Author:
- Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
-
Field Summary
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
Modifier and TypeMethodDescriptionvoid
close()
Called by CodeModel at the end of the process.protected File
openBinary
(JPackage pkg, String fileName) Called by CodeModel to store the specified file.Methods inherited from class com.sun.codemodel.CodeWriter
openSource
-
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
-