Uses of Class
planetj.dataengine.RowClassProperties

Packages that use RowClassProperties
planetj.database.fielddescriptors   
planetj.dataengine   
 

Uses of RowClassProperties in planetj.database.fielddescriptors
 

Methods in planetj.database.fielddescriptors with parameters of type RowClassProperties
static StringBuffer FieldDescriptorManager.generateJavaCode(FieldDescriptorRow fd, RowClassProperties pProps, StringBuffer pSB)
           
 

Uses of RowClassProperties in planetj.dataengine
 

Subclasses of RowClassProperties in planetj.dataengine
 class RowInterfaceProperties
          Insert the type's description here.
 

Methods in planetj.dataengine that return RowClassProperties
 RowClassProperties RowClassProperties.setFileLocation(String newFileLocation)
          Sets the directory name where the generated file will be saved.
 RowClassProperties RowClassProperties.setFullClassName(String newFullClassName)
          Sets the fully qualified name of the class to generate.
 RowClassProperties RowClassProperties.setPackage(String newPackage)
          Sets the package name of the class to generate.
 RowClassProperties RowClassProperties.setGenerateFieldNameConstants(boolean newGenerateFieldNameConstants)
          Sets if constants should be generated for field names.
 RowClassProperties RowClassProperties.setGenerateGetters(boolean newGenerateGetters)
          Sets if getter methods should be generated.
 RowClassProperties RowClassProperties.setGenerateSetters(boolean newGenerateSetters)
          Sets if setter methods should be generated.
 RowClassProperties RowClassProperties.setUsePrimitives(boolean newUsePrimitives)
          Sets if primitives should be used instead of Java objects.
 

Methods in planetj.dataengine with parameters of type RowClassProperties
static StringBuffer RowClassGenerator.generateConstantTableProperties(RowClassProperties pProps, StringBuffer sb)
          This method will generate the TABLE_NAME and LIBRARY_NAME constants Creation date: (4/9/2002 1:27:51 PM)
static String RowClassGenerator.generateRowClass(Iterator pFieldDescriptors, RowClassProperties pProps)
          Generates a subclass of the Row class.
static String RowClassGenerator.generateRowClass(RowCollection pRC, RowClassProperties pProps)
          Generates a subclass of the Row class.
static String RowClassGenerator.generateRowClass(Table pTable, RowClassProperties pProps)
          Generates a subclass of the Row class.
static String RowClassGenerator.write(String pClassDef, RowClassProperties pProps)
          Write the generate class/interface file to the fileLocation Creation date: (4/1/2002 6:22:55 PM)