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