Uses of Class
ch.sahits.model.db.DataBaseTableField

Packages that use DataBaseTableField
ch.sahits.codegen.java.model.util   
ch.sahits.codegen.util   
ch.sahits.model.db   
ch.sahits.model.java.db   
ch.sahits.model.php.db   
 

Uses of DataBaseTableField in ch.sahits.codegen.java.model.util
 

Methods in ch.sahits.codegen.java.model.util with parameters of type DataBaseTableField
static java.lang.String ConvenientCodegen.getClassShortName(DataBaseTableField dbtf)
          Extract the class name from the class declaration
static boolean ConvenientCodegen.isPrimitiveType(DataBaseTableField dbtf)
          Check weather the type is a primitive type, meaning a type defined in the package java.lang
 

Uses of DataBaseTableField in ch.sahits.codegen.util
 

Methods in ch.sahits.codegen.util with parameters of type DataBaseTableField
static java.lang.String ConvenientCodegen.getClassShortName(DataBaseTableField dbtf)
          Extract the class name from the class declaration
static boolean ConvenientCodegen.isPrimitiveType(DataBaseTableField dbtf)
          Check weather the type is a primitive type, meaning a type defined in the package java.lang
 

Uses of DataBaseTableField in ch.sahits.model.db
 

Methods in ch.sahits.model.db that return DataBaseTableField
 DataBaseTableField BasicDataBaseTable.findField(java.lang.String fieldName)
           
 DataBaseTableField IBasicDataBaseTable.findField(java.lang.String fieldName)
          Find the field with the name fieldName
 

Methods in ch.sahits.model.db that return types with arguments of type DataBaseTableField
 java.util.List<DataBaseTableField> BasicDataBaseTable.getFields()
           
 java.util.List<DataBaseTableField> DataBaseTableIndex.getFields()
          Retrieve the fields of this index
 java.util.List<DataBaseTableField> IBasicDataBaseTable.getFields()
          Retrieve a list of the database fields.
 java.util.List<DataBaseTableField> IDataBaseTable.getFields()
          Retrieve a list of the database fields.
 

Methods in ch.sahits.model.db with parameters of type DataBaseTableField
 void BasicDataBaseTable.add(DataBaseTableField field)
          Add a database field.
 void IDataBaseTable.add(DataBaseTableField field)
          Add a database field.
 void DataBaseTableIndex.addField(DataBaseTableField field)
          Add a field to the fields
 boolean DataBaseTableIndex.contains(DataBaseTableField field)
          Check wether a field is contained in this index
 void BasicDataBaseTable.setFieldAt(int index, DataBaseTableField field)
          Set a database field at position index
 void DataBaseTableIndex.setFieldAt(int i, DataBaseTableField field)
          Add a field to the fields at position i
 

Method parameters in ch.sahits.model.db with type arguments of type DataBaseTableField
 void BasicDataBaseTable.setFields(java.util.List<DataBaseTableField> _fields)
          Set the DataBaseTableField s
 void DataBaseTableIndex.setFields(java.util.List<DataBaseTableField> _fields)
          Set the fields of this index
 

Uses of DataBaseTableField in ch.sahits.model.java.db
 

Methods in ch.sahits.model.java.db that return DataBaseTableField
 DataBaseTableField DataBaseTable.findField(java.lang.String fieldName)
          Find the field with the name fieldName
 

Methods in ch.sahits.model.java.db that return types with arguments of type DataBaseTableField
 java.util.List<DataBaseTableField> DataBaseTable.getFields()
          Retrieve a list of the database fields.
 

Methods in ch.sahits.model.java.db with parameters of type DataBaseTableField
 void DataBaseTable.add(DataBaseTableField field)
          Add a database field.
 boolean DataBaseTable.isPrimaryKey(DataBaseTableField field)
          Check wether the field is part of the primary key
 void DataBaseTable.setFieldAt(int index, DataBaseTableField field)
          Set a database field at position index
 

Method parameters in ch.sahits.model.java.db with type arguments of type DataBaseTableField
 void DataBaseTable.setFields(java.util.List<DataBaseTableField> _fields)
          Set the DataBaseTableField s
 

Uses of DataBaseTableField in ch.sahits.model.php.db
 

Methods in ch.sahits.model.php.db with parameters of type DataBaseTableField
 IPHPClassDeclarationBuilder IPHPClassDeclarationBuilder.addField(DataBaseTableField field)
          Add a database field.