Uses of Class
pl.edu.agh.cast.rawdata.DataRow

Packages that use DataRow
pl.edu.agh.cast.data.importer.data Provides CAST Data's fundamental classes for the data importer. 
pl.edu.agh.cast.data.importer.data.util Provides CAST Data's various general utility classes for the data importer. 
pl.edu.agh.cast.data.logging Provides CAST Data's classes for the logging purposes. 
pl.edu.agh.cast.data.preprocessing Provides CAST Data's classes for the data preprocessing purposes. 
pl.edu.agh.cast.data.ui.importer.wizard Provides CAST Data's user interface classes for the import wizard. 
pl.edu.agh.cast.data.ui.importer.wizard.provider Provides CAST Data's user interface provider classes for the import wizard. 
pl.edu.agh.cast.data.ui.utils Provides CAST Data's various user interface utility classes. 
pl.edu.agh.cast.model.base Provides base model classes and interfaces. 
pl.edu.agh.cast.rawdata Contains representation of raw data which is read from source files during import process. 
pl.edu.agh.cast.rawdata.logging Definies interfeces and abstract classes for logging changes in raw data. 
pl.edu.agh.cast.rawdata.stat Contains classes which are responsible for error handling on input data during import process. 
 

Uses of DataRow in pl.edu.agh.cast.data.importer.data
 

Methods in pl.edu.agh.cast.data.importer.data with parameters of type DataRow
protected static int AbstractDataImporterBase.removeEmptyCellsFromRowEnd(DataRow resultRow)
           
 

Uses of DataRow in pl.edu.agh.cast.data.importer.data.util
 

Methods in pl.edu.agh.cast.data.importer.data.util that return DataRow
 DataRow ImporterUtil.readRow(String line, List<Integer> cutIndexes)
          Cuts line in indexes defined in cutIndexes.
 

Uses of DataRow in pl.edu.agh.cast.data.logging
 

Methods in pl.edu.agh.cast.data.logging with parameters of type DataRow
 void FileRawDataLogger.notifyRemoved(DataRow row)
          Notifies when row is removed.
 void FileRawDataLogger.notifyRestored(DataRow row)
          Notifies when row is restored.
 void FileRawDataLogger.notifyValueChanged(DataRow row, String oldValue, String newValue)
          Notifies when new value is set in specified row.
 

Uses of DataRow in pl.edu.agh.cast.data.preprocessing
 

Methods in pl.edu.agh.cast.data.preprocessing that return DataRow
 DataRow DataCell.getRow()
           
 

Constructors in pl.edu.agh.cast.data.preprocessing with parameters of type DataRow
DataCell(DataRow row, int column)
          The default constructor.
 

Uses of DataRow in pl.edu.agh.cast.data.ui.importer.wizard
 

Methods in pl.edu.agh.cast.data.ui.importer.wizard with parameters of type DataRow
 void ImportWizard.validateRow(BrokenDataInfo errors, DataRow row)
          Validates the specified row according to the mapping of the current template.
 void ValidationPageComposite.validateRow(DataRow row)
          Delegate to ValidationPage.validateRow(DataRow) method.
 void ValidationPage.validateRow(DataRow row)
          Delegate to ImportWizard.validateRow(BrokenDataInfo, DataRow) method.
 

Uses of DataRow in pl.edu.agh.cast.data.ui.importer.wizard.provider
 

Method parameters in pl.edu.agh.cast.data.ui.importer.wizard.provider with type arguments of type DataRow
 void ListColumnLabelProvider.setSelectedRow(List<DataRow> selDataRows)
           
 

Uses of DataRow in pl.edu.agh.cast.data.ui.utils
 

Method parameters in pl.edu.agh.cast.data.ui.utils with type arguments of type DataRow
static void TableViewerHelper.setSelectedRows(org.eclipse.jface.viewers.TableViewer tableViewer, List<DataRow> selectedDataRows)
          Sets selected data rows within a specified table viewer.
 

Uses of DataRow in pl.edu.agh.cast.model.base
 

Methods in pl.edu.agh.cast.model.base with parameters of type DataRow
static void DataImporter.importData(DataRow tokens, IDataSet dataSet, Map<String,IEntity> entities)
          Deprecated. Transforms the tokens to 2 entities and 1 relation and puts the relation in the dataSet.
protected  void AbstractModelDataLoader.importRow(DataRow row, Map<Integer,Integer> mapping, BrokenRowInfo brokenRowInfo, IDataSet dataSet, Map<String,IEntity> entities)
          Creates one relation based on given data row.
abstract  BrokenRowInfo AbstractDataLoaderWithStatistics.validateRow(DataRow row, Map<Integer,Integer> modelToDataMapping)
          Check if row cells are correct for attached mapping.
 BrokenRowInfo AbstractModelDataLoader.validateRow(DataRow row, Map<Integer,Integer> modelToDataMapping)
          Validates given data row.
 

Uses of DataRow in pl.edu.agh.cast.rawdata
 

Fields in pl.edu.agh.cast.rawdata with type parameters of type DataRow
protected  LinkedList<DataRow> TabularData.rows
          List containing table rows.
 

Methods in pl.edu.agh.cast.rawdata that return DataRow
 DataRow TabularData.get(int row)
          Gets row in table by row number.
 

Methods in pl.edu.agh.cast.rawdata that return types with arguments of type DataRow
 List<DataRow> TabularData.getAllRows()
           
 

Methods in pl.edu.agh.cast.rawdata with parameters of type DataRow
 void TabularData.addRow(DataRow newRow)
          Add a specified row to the end of table.
 boolean TabularData.removeRow(DataRow toDelete)
          Removes the specified row from table.
 void TabularData.restoreAsFirst(DataRow row)
          Restores specified rows as first row in table.
 

Method parameters in pl.edu.agh.cast.rawdata with type arguments of type DataRow
 void TabularData.addRows(List<DataRow> newRows)
          Adds list of rows on the end of data table.
 

Uses of DataRow in pl.edu.agh.cast.rawdata.logging
 

Methods in pl.edu.agh.cast.rawdata.logging with parameters of type DataRow
 void IRawDataObserver.notifyRemoved(DataRow row)
          Notifies when row is removed.
 void IRawDataObserver.notifyRestored(DataRow row)
          Notifies when row is restored.
 void IRawDataObserver.notifyValueChanged(DataRow row, String oldValue, String newValue)
          Notifies when new value is set in specified row.
 

Uses of DataRow in pl.edu.agh.cast.rawdata.stat
 

Methods in pl.edu.agh.cast.rawdata.stat that return DataRow
 DataRow ErrorInfo.getRelatedRow()
           
 DataRow BrokenRowInfo.getSourceRow()
           
 

Methods in pl.edu.agh.cast.rawdata.stat with parameters of type DataRow
 List<BrokenCellInfo> BrokenDataInfo.getBrokenCellsRelatedTo(DataRow row)
          Returns list of BrokenCellInfo related to input row.
 BrokenRowInfo BrokenDataInfo.getBrokenRowInfo(DataRow row)
          Returns broken row info associated with the specified row.
 BrokenRowInfo BrokenDataInfo.removeDataRow(DataRow row)
          Removed the specified row.
 void BrokenDataInfo.replaceBrokenRowInfo(DataRow row, BrokenRowInfo newValue)
          Replaces information about data row which is in newValue object.
 

Constructors in pl.edu.agh.cast.rawdata.stat with parameters of type DataRow
BrokenRowInfo(DataRow sourceRow)
          Constructor without statistics.
ErrorInfo(ErrorType type, String[] params, DataRow relatedRow)
          Constructor with given error, parameters and related row.
 



Copyright © 2007-2009 IISG AGH-UST Krakow, Poland. All Rights Reserved.