Uses of Interface
org.apache.empire.data.Column

Packages that use Column
org.apache.empire.data This package contains interfaces for data and metadata handling. 
org.apache.empire.db This package contains the core Empire-DB implementation classes. 
 

Uses of Column in org.apache.empire.data
 

Methods in org.apache.empire.data that return Column
 Column Record.getColumn(int index)
          returns the column at the specified index.
 Column[] Record.getKeyColumns()
          returns an array of key columns which uniquely identify the record.
 Column ColumnExpr.getSourceColumn()
          Returns the underlying source column (if any).
 

Methods in org.apache.empire.data with parameters of type Column
 Options Record.getFieldOptions(Column column)
          returns the Options list for the given record field.
 boolean Record.isFieldReadOnly(Column column)
          returns true if the field is read-only.
 boolean Record.isFieldVisible(Column column)
          returns true if the field is visible to the client.
 boolean Record.setValue(Column column, java.lang.Object value)
          sets a record value based on a column.
 boolean Record.wasModified(Column column)
          checks whether or not the field for the given column has been modified since it has been loaded.
 

Method parameters in org.apache.empire.data with type arguments of type Column
 boolean Record.setBeanValues(java.lang.Object bean, java.util.Collection<Column> ignoreList)
          sets all record values from a particular bean.
 

Uses of Column in org.apache.empire.db
 

Classes in org.apache.empire.db that implement Column
 class DBColumn
          This is the base class for all database columns that have a physical representation.
static class DBQuery.DBQueryColumn
           
 class DBTableColumn
          This class represent one column of a table.
static class DBView.DBViewColumn
           
 

Methods in org.apache.empire.db that return Column
 Column DBRecord.getColumn(int index)
          Implements the Record Interface getColumn method.
 Column[] DBRecord.getKeyColumns()
          returns an array of key columns which uniquely identify the record.
 Column DBColumnExpr.getSourceColumn()
          Returns the source column.
 

Methods in org.apache.empire.db with parameters of type Column
 int DBRowSet.getColumnIndex(Column column)
          Gets the index of a particular column expression.
 Options DBRecord.getFieldOptions(Column column)
          Gets the possbile Options for a field in the context of the current record.
 boolean DBRecord.isFieldReadOnly(Column column)
          returns whether a field is read only or not
 boolean DBRecord.isFieldVisible(Column column)
          returns whether a field is read only or not
 boolean DBRecord.setValue(Column column, java.lang.Object value)
          Sets the value of the column in the record.
 boolean DBRecord.wasModified(Column column)
          Returns true if the field was modified.
 

Method parameters in org.apache.empire.db with type arguments of type Column
 boolean DBRecord.setBeanValues(java.lang.Object bean, java.util.Collection<Column> ignoreList)
          Sets record values from the suppied java bean.