public class FileCodeWriter extends Object implements CodeWriter
Purpose:Used in conjunction with SDOClassGenerator. FileCodeWriter will be used by default with SDOClassGenerator unless another CodeWriter is specified by the user. Writes files to the file system.
SDOClassGenerator
,
CodeWriter
Constructor and Description |
---|
FileCodeWriter() |
Modifier and Type | Method and Description |
---|---|
String |
getSourceDir()
Gets the sourceDir variable.
|
void |
setSourceDir(String sourceDir)
Sets the sourceDir variable.
|
void |
writeFile(String dir,
String filename,
StringBuffer content)
Called by both writeInterface and writeImpl
|
void |
writeImpl(String dir,
String filename,
StringBuffer content)
Called from org.eclipse.persistence.sdo.helper.SDOClassGenerator for each generated interface if a
CodeWriter was passed into the generate method.
|
void |
writeInterface(String dir,
String filename,
StringBuffer content)
Called from org.eclipse.persistence.sdo.helper.SDOClassGenerator for each generated interface if a
CodeWriter was passed into the generate method.
|
public void writeInterface(String dir, String filename, StringBuffer content)
Called from org.eclipse.persistence.sdo.helper.SDOClassGenerator for each generated interface if a CodeWriter was passed into the generate method.
writeInterface
in interface CodeWriter
dir
- The directory corresponding to the package of the generated source filefilename
- The name of the generated source file including the .java extensioncontent
- StringBuffer containing the contents of the generated interface.public void writeImpl(String dir, String filename, StringBuffer content)
Called from org.eclipse.persistence.sdo.helper.SDOClassGenerator for each generated interface if a CodeWriter was passed into the generate method.
writeImpl
in interface CodeWriter
dir
- The directory corresponding to the package of the generated source filefilename
- The name of the generated source file including the .java extensioncontent
- StringBuffer containing the contents of the generated implementation class.public void writeFile(String dir, String filename, StringBuffer content)
Called by both writeInterface and writeImpl
dir
- The directory corresponding to the package of the generated source file
param filename The name of the generated source file including the .java extensioncontent
- StringBuffer containing the contents of the generate Java filepublic void setSourceDir(String sourceDir)
sourceDir
- public String getSourceDir()
Copyright © 2007–2021 Eclipse.org - EclipseLink Project. All rights reserved.