public class PackageOutputManager extends Object implements OutputManager
OutputManager for managing the creation of Java source files as the target of code generation.
The character encoding for the Writer is UTF-8.| Constructor and Description |
|---|
PackageOutputManager(String baseDirectoryName,
String packageName)
Create a new
OutputManager for generating Java source files into a given package. |
| Modifier and Type | Method and Description |
|---|---|
Writer |
createOutput(String name)
Create a new output which will be a Java source file in the given package.
|
public PackageOutputManager(String baseDirectoryName, String packageName) throws IOException
OutputManager for generating Java source files into a given package.baseDirectoryName - for the generated source code.packageName - for the generated source code relative to the baseDirectoryName.IOException - if an error occurs during output.public Writer createOutput(String name) throws IOException
Writer should be closed once the caller has finished with it. The Writer is
buffer for efficient IO operations.createOutput in interface OutputManagername - the name of the Java class.Writer to which the source code should be written.IOException - if an error occurs during output.Copyright © 2013 Real Logic Ltd. All Rights Reserved.