Module eclipselink
Class TableCreatorClassGenerator
- java.lang.Object
-
- org.eclipse.persistence.sessions.factories.TableCreatorClassGenerator
-
public class TableCreatorClassGenerator extends Object
Purpose: Allow for a class storing a TopLink table creator's tables (meta-data) to be generated. This class can then be used at runtime to (re)create a project's database schema.
- Author:
- James Sutherland
- Since:
- TopLink 3.0
-
-
Field Summary
Fields Modifier and Type Field Description protected StringclassNameprotected StringoutputFileNameprotected StringoutputPathprotected WriteroutputWriterprotected StringpackageNameprotected TableCreatortableCreator
-
Constructor Summary
Constructors Constructor Description TableCreatorClassGenerator()PUBLIC: Create a new generator.TableCreatorClassGenerator(TableCreator tableCreator)PUBLIC: Create a new generator to output the table creator.TableCreatorClassGenerator(TableCreator tableCreator, String projectClassName, Writer outputWriter)PUBLIC: Create a new generator to output the table creator.TableCreatorClassGenerator(TableCreator tableCreator, String projectClassName, String fileName)PUBLIC: Create a new generator to output the table creator.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidaddFieldLines(FieldDefinition field, org.eclipse.persistence.internal.codegen.NonreflectiveMethodDefinition method)protected voidaddForeignKeyLines(ForeignKeyConstraint foreignKey, org.eclipse.persistence.internal.codegen.NonreflectiveMethodDefinition method)protected org.eclipse.persistence.internal.codegen.NonreflectiveMethodDefinitionbuildConstructor()protected org.eclipse.persistence.internal.codegen.NonreflectiveMethodDefinitionbuildLoginMethod(DatabaseLogin login)protected org.eclipse.persistence.internal.codegen.NonreflectiveMethodDefinitionbuildTableMethod(TableDefinition table)voidgenerate()PUBLIC: Generate the project class, output the java source code to the stream or file.voidgenerate(boolean useUnicode)PUBLIC: Generate the creator class, output the java source code to the stream or file.protected org.eclipse.persistence.internal.codegen.ClassDefinitiongenerateCreatorClass()Return a class definition object representing the code to be generated for the table creator.StringgetClassName()PUBLIC: Return the name of class to be generated.StringgetOutputFileName()PUBLIC: Return the file name that the generate .java file will be output to.StringgetOutputPath()PUBLIC: Return the path that the generate .java file will be output to.WritergetOutputWriter()PUBLIC: Return the writer the output to.StringgetPackageName()PUBLIC: Return the package name of class to be generated.TableCreatorgetTableCreator()PUBLIC: Return the table creator to generate from.protected StringprintString(Object value)Return the printed version of the primitive value object.protected StringremoveDots(String packageName)voidsetClassName(String newClassName)PUBLIC: Set the name of class to be generated.voidsetOutputFileName(String newOutputFileName)PUBLIC: Set the file name that the generate .java file will be output to.voidsetOutputPath(String newOutputPath)PUBLIC: Set the path that the generate .java file will be output to.voidsetOutputWriter(Writer outputWriter)PUBLIC: Set the writer the output to.voidsetPackageName(String newPackageName)PUBLIC: Set the package name of class to be generated.voidsetTableCreator(TableCreator tableCreator)PUBLIC: Set the table creator to generate from.static voidwrite(TableCreator tableCreator, String creatorClassName, Writer writer)PUBLIC: Generate the source code to a table creator class to the table creator's tables into the writer.static voidwrite(TableCreator tableCreator, String creatorClassName, String fileName)PUBLIC: Generate the source code to a table creator class to the table creator's tables into the file.
-
-
-
Constructor Detail
-
TableCreatorClassGenerator
public TableCreatorClassGenerator()
PUBLIC: Create a new generator.
-
TableCreatorClassGenerator
public TableCreatorClassGenerator(TableCreator tableCreator)
PUBLIC: Create a new generator to output the table creator.
-
TableCreatorClassGenerator
public TableCreatorClassGenerator(TableCreator tableCreator, String projectClassName, Writer outputWriter)
PUBLIC: Create a new generator to output the table creator.
-
TableCreatorClassGenerator
public TableCreatorClassGenerator(TableCreator tableCreator, String projectClassName, String fileName)
PUBLIC: Create a new generator to output the table creator.
-
-
Method Detail
-
addFieldLines
protected void addFieldLines(FieldDefinition field, org.eclipse.persistence.internal.codegen.NonreflectiveMethodDefinition method)
-
addForeignKeyLines
protected void addForeignKeyLines(ForeignKeyConstraint foreignKey, org.eclipse.persistence.internal.codegen.NonreflectiveMethodDefinition method)
-
buildConstructor
protected org.eclipse.persistence.internal.codegen.NonreflectiveMethodDefinition buildConstructor()
-
buildLoginMethod
protected org.eclipse.persistence.internal.codegen.NonreflectiveMethodDefinition buildLoginMethod(DatabaseLogin login)
-
buildTableMethod
protected org.eclipse.persistence.internal.codegen.NonreflectiveMethodDefinition buildTableMethod(TableDefinition table)
-
generate
public void generate(boolean useUnicode) throws ValidationExceptionPUBLIC: Generate the creator class, output the java source code to the stream or file. useUnicode determines if unicode escaped characters for non_ASCII charaters will be used.- Throws:
ValidationException
-
generate
public void generate() throws ValidationExceptionPUBLIC: Generate the project class, output the java source code to the stream or file. Unicode escaped characters for non_ASCII charaters will be used.- Throws:
ValidationException
-
generateCreatorClass
protected org.eclipse.persistence.internal.codegen.ClassDefinition generateCreatorClass()
Return a class definition object representing the code to be generated for the table creator. This class will have one method per descriptor and its toString can be used to convert it to code.
-
getClassName
public String getClassName()
PUBLIC: Return the name of class to be generated. This is the unqualified name.
-
getOutputFileName
public String getOutputFileName()
PUBLIC: Return the file name that the generate .java file will be output to.
-
getOutputPath
public String getOutputPath()
PUBLIC: Return the path that the generate .java file will be output to.
-
getOutputWriter
public Writer getOutputWriter()
PUBLIC: Return the writer the output to.
-
getPackageName
public String getPackageName()
PUBLIC: Return the package name of class to be generated.
-
getTableCreator
public TableCreator getTableCreator()
PUBLIC: Return the table creator to generate from.
-
printString
protected String printString(Object value)
Return the printed version of the primitive value object. This must determine the class and use the correct constrcutor arguments.
-
setClassName
public void setClassName(String newClassName)
PUBLIC: Set the name of class to be generated. This can be qualified or unqualified name and will set the file name to match.
-
setOutputFileName
public void setOutputFileName(String newOutputFileName)
PUBLIC: Set the file name that the generate .java file will be output to. If the file does not include .java it will be appended.
-
setOutputPath
public void setOutputPath(String newOutputPath)
PUBLIC: Set the path that the generate .java file will be output to.
-
setOutputWriter
public void setOutputWriter(Writer outputWriter)
PUBLIC: Set the writer the output to.
-
setPackageName
public void setPackageName(String newPackageName)
PUBLIC: Set the package name of class to be generated.
-
setTableCreator
public void setTableCreator(TableCreator tableCreator)
PUBLIC: Set the table creator to generate from. All of the creator's tables will be stored into the file.
-
write
public static void write(TableCreator tableCreator, String creatorClassName, Writer writer)
PUBLIC: Generate the source code to a table creator class to the table creator's tables into the writer.
-
write
public static void write(TableCreator tableCreator, String creatorClassName, String fileName)
PUBLIC: Generate the source code to a table creator class to the table creator's tables into the file.
-
-