public class FileCodeWriter extends CodeWriter
encoding
Constructor and Description |
---|
FileCodeWriter(File target) |
FileCodeWriter(File target,
boolean readOnly) |
FileCodeWriter(File target,
boolean readOnly,
String encoding) |
FileCodeWriter(File target,
String encoding) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Called by CodeModel at the end of the process.
|
protected File |
getFile(JPackage pkg,
String fileName) |
OutputStream |
openBinary(JPackage pkg,
String fileName)
Called by CodeModel to store the specified file.
|
openSource
public FileCodeWriter(File target) throws IOException
IOException
public FileCodeWriter(File target, String encoding) throws IOException
IOException
public FileCodeWriter(File target, boolean readOnly) throws IOException
IOException
public FileCodeWriter(File target, boolean readOnly, String encoding) throws IOException
IOException
public OutputStream openBinary(JPackage pkg, String fileName) throws IOException
CodeWriter
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.
openBinary
in class CodeWriter
pkg
- The package of the file to be written.fileName
- File name without the path. Something like
"Foo.java" or "Bar.properties"IOException
protected File getFile(JPackage pkg, String fileName) throws IOException
IOException
public void close() throws IOException
CodeWriter
close
in class CodeWriter
IOException
Copyright © 2017 JBoss by Red Hat. All rights reserved.