Uses of Class
LumiSoft.Data.DataColumn

Packages that use DataColumn
LumiSoft.Data   
 

Uses of DataColumn in LumiSoft.Data
 

Methods in LumiSoft.Data that return DataColumn
 DataColumn DataColumnCollection.Add(java.lang.String columnName)
          Creates and adds new data column.
 DataColumn DataColumnCollection.Add(java.lang.String columnName, java.lang.Class dataType)
          Creates and adds new data column.
 DataColumn DataColumnCollection.get(int columnIndex)
          Gets the DataColumn from the collection at the specified index.
 DataColumn DataColumnCollection.get(java.lang.String columnName)
          Gets the DataColumn from the collection with the specified name.
 DataColumn[] DataRelation.getChildColumns()
          Gets the child DataColumn objects of this relation.
 DataColumn[] DataRelation.getParentColumns()
          Gets the parent DataColumn objects of this relation.
 

Methods in LumiSoft.Data that return types with arguments of type DataColumn
 java.util.Iterator<DataColumn> DataColumnCollection.iterator()
          Gets iterator.
 

Methods in LumiSoft.Data with parameters of type DataColumn
 DataRelation DataRelationCollection.Add(java.lang.String name, DataColumn parentColumn, DataColumn childColumn)
          Creates a DataRelation with the specified name, and parent and child columns, and adds it to the collection.
 java.lang.Object DataRow.get(DataColumn column)
          Gets the data stored in the specified DataColumn.
 void DataColumnCollection.Remove(DataColumn column)
          Removes specified data column.