- All Known Implementing Classes:
FileCodeWriter
public interface CodeWriter
Purpose:This interface can be implemented and used in conjunction with SDOClassGenerator to write the generated source as desired.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
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.
-
Method Details
-
writeInterface
Called from org.eclipse.persistence.sdo.helper.SDOClassGenerator for each generated interface if a CodeWriter was passed into the generate method.
- Parameters:
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.
-
writeImpl
Called from org.eclipse.persistence.sdo.helper.SDOClassGenerator for each generated interface if a CodeWriter was passed into the generate method.
- Parameters:
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.
-