Uses of Class
pl.edu.agh.cast.importer.base.data.DataRow

Packages that use DataRow
pl.edu.agh.cast.importer.base.converter Provides CAST Importer base classes used for the data conversion during the import process. 
pl.edu.agh.cast.importer.base.converter.rules Provides CAST Importer base classes representing conversion rules/strategies and their utility classes, used by the import converters. 
pl.edu.agh.cast.importer.base.data Provides CAST Importer base inner data formats, used by the import process, or more precisely by the IImportTokenizer, IImportParser and IAnalyzers. 
pl.edu.agh.cast.importer.base.general Provides CAST Importer base classes for the general domain model. 
pl.edu.agh.cast.importer.base.logging Provides CAST Importer base classes for the import process logging purposes. 
pl.edu.agh.cast.importer.base.parser Provides CAST Importer base classes used for the data parsing during the import process. 
pl.edu.agh.cast.importer.base.process Provides CAST Importer ImportProcess class. 
pl.edu.agh.cast.importer.base.util Provides CAST Importer various general utility classes for the base data importer. 
pl.edu.agh.cast.importer.wizard.page Provides CAST Importer wizard's user classes for the import wizard pages and their main composites. 
pl.edu.agh.cast.importer.wizard.provider Provides CAST Importer wizard's user interface provider classes for the import wizard. 
pl.edu.agh.cast.importer.wizard.utils Provides CAST Importer wizard's various user interface utility classes. 
 

Uses of DataRow in pl.edu.agh.cast.importer.base.converter
 

Methods in pl.edu.agh.cast.importer.base.converter that return DataRow
protected abstract  DataRow AbstractImportConverter.previewRow(DataRow row, TabularData data)
           
 

Methods in pl.edu.agh.cast.importer.base.converter with parameters of type DataRow
protected abstract  void AbstractImportConverter.convertRow(DataRow dataRow, int rowIndex, T dataSet, List<IImportLogger> loggers)
          Converts a specified data row and adds the relation, included within the row, to the specified data set.
protected  void AbstractImportConverter.logRowError(DataRow row, ErrorType errorType, List<IImportLogger> loggers)
           
protected  void AbstractImportConverter.logRowError(DataRow row, int rowIndex, ErrorType errorType, List<IImportLogger> loggers)
           
protected  void AbstractImportConverter.logTokenError(DataRow row, ConversionRuleException e, ErrorType errorType, List<IImportLogger> loggers)
           
protected  void AbstractImportConverter.logTokenError(DataRow row, ConversionRuleException e, List<IImportLogger> loggers)
           
protected abstract  DataRow AbstractImportConverter.previewRow(DataRow row, TabularData data)
           
 

Uses of DataRow in pl.edu.agh.cast.importer.base.converter.rules
 

Methods in pl.edu.agh.cast.importer.base.converter.rules with parameters of type DataRow
protected  void AbstractDirectedGraphConversionRule.checkRowNullEmpty(DataRow row, String nodeName)
           
 String AbstractStringSingleColumnConversionRule.fetchDomainField(DataRow row)
          Filters and processes a given row, in order to fetch a String field value.
 Date AbstractDateSingleColumnConversionRule.fetchDomainField(DataRow row)
          Filters and processes a given row, in order to fetch a Date field value.
protected  Date AbstractDateDoubleColumnConversionRule.getDate(DataRow row)
          Retrieves the date value for a specified data row.
protected  DirectionDataType AbstractDirectedGraphConversionRule.getDirectionValue(DataRow row)
           
 Integer AbstractIntegerSingleColumnConversionRule.getInteger(DataRow row)
          Returns integer value retrieved from input row.
 String AbstractDirectedGraphConversionRule.getSourceNode(DataRow row)
          Returns source node.
protected  String AbstractDirectedGraphConversionRule.getStringColumnValue(DataRow row, int columnIdx)
           
 String AbstractDirectedGraphConversionRule.getTargetNode(DataRow row)
          Returns target node.
 

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

Methods in pl.edu.agh.cast.importer.base.data that return DataRow
 DataRow TabularData.getRowByIndex(int rowIndex)
          Retrieves row with specified index.
 DataRow TabularData.remove(int row)
          
 DataRow TabularData.removeFirst()
          
 DataRow TabularData.removeLast()
          
 DataRow TabularData.removeRowWithIndex(int rowIndex)
          Removes row with specified index.
 

Methods in pl.edu.agh.cast.importer.base.data that return types with arguments of type DataRow
 List<DataRow> TabularData.redoOperation()
          Redoes row removal operation by removing again the rows that had previously been removed and restored with use of an undo operation.
 List<DataRow> TabularData.restoreIgnoredRows(int rowCount)
          Restores a specified number of ignored data rows.
 List<DataRow> TabularData.undoOperation()
          Undoes row removal operation by restoring the rows that were removed last.
 

Method parameters in pl.edu.agh.cast.importer.base.data with type arguments of type DataRow
 void TabularData.removeRows(List<DataRow> rows)
          Delegate method with default ignored flag set to true.
 void TabularData.removeRows(List<DataRow> rows, boolean ignored)
          Removes list of data rows and either saves them to an undo cache in order for an undo operation to be available (if the ignored flag is not set), or saves the rows to the ignored rows cache in order for them to be available if the ignored option is turned off.
 

Constructors in pl.edu.agh.cast.importer.base.data with parameters of type DataRow
DataRow(DataRow row, TabularData data)
          The copying constructor.
 

Uses of DataRow in pl.edu.agh.cast.importer.base.general
 

Methods in pl.edu.agh.cast.importer.base.general that return DataRow
protected  DataRow GeneralImportConverter.previewRow(DataRow dataRow, TabularData newData)
           
 

Methods in pl.edu.agh.cast.importer.base.general with parameters of type DataRow
protected  void GeneralImportConverter.convertRow(DataRow dataRow, int rowIndex, IGeneralDataSet<IGeneralElement> dataSet, List<IImportLogger> loggers)
           
 Date DateSingleColumnConversionRule.getDate(DataRow row)
          Retrieves the date value for a specified data row.
 Date DateDoubleColumnConversionRule.getDate(DataRow row)
          Retrieves the date value for a specified data row.
 Date IDateConversionRule.getDate(DataRow row)
          Retrieves the date value for a specified data row.
 String DirectedGraphConversionRule.getSourceNode(DataRow row)
          Returns source node.
 String SourceNodeSingleColumnConversionRule.getSourceNode(DataRow row)
          Retrieves the source node value for a specified data row.
 String ISourceNodeConversionRule.getSourceNode(DataRow row)
          Retrieves the source node value for a specified data row.
 String DirectedGraphConversionRule.getTargetNode(DataRow row)
          Returns target node.
 String ITargetNodeConversionRule.getTargetNode(DataRow row)
          Retrieves the target node value for a specified data row.
 String TargetNodeSingleColumnConversionRule.getTargetNode(DataRow row)
          Retrieves the target node value for a specified data row.
protected  DataRow GeneralImportConverter.previewRow(DataRow dataRow, TabularData newData)
           
 

Uses of DataRow in pl.edu.agh.cast.importer.base.logging
 

Methods in pl.edu.agh.cast.importer.base.logging with parameters of type DataRow
 void IImportDataObserver.notifyRemoved(DataRow row)
          Notifies when a row is removed.
 void FileImportLogger.notifyRemoved(DataRow row)
          Notifies when a row is removed.
 void CompositeImportLogger.notifyRemoved(DataRow row)
          Notifies when a row is removed.
 void IImportDataObserver.notifyRestored(DataRow row)
          Notifies when a row is restored.
 void FileImportLogger.notifyRestored(DataRow row)
          Notifies when a row is restored.
 void CompositeImportLogger.notifyRestored(DataRow row)
          Notifies when a row is restored.
 void IImportDataObserver.notifyValueChanged(DataRow row, int index, Object oldValue, Object newValue)
          Notifies when new value is set in a specified row.
 void FileImportLogger.notifyValueChanged(DataRow row, int index, Object oldValue, Object newValue)
          Notifies when new value is set in a specified row.
 void CompositeImportLogger.notifyValueChanged(DataRow row, int index, Object oldValue, Object newValue)
          Notifies when new value is set in a specified row.
 

Uses of DataRow in pl.edu.agh.cast.importer.base.parser
 

Methods in pl.edu.agh.cast.importer.base.parser with parameters of type DataRow
 void ImportParser.changeRowValueAfterParsing(TabularData parsedData, ErrorsLog errorsLog, DataRow row, int index, String value)
          Changes token value in input row.
 

Uses of DataRow in pl.edu.agh.cast.importer.base.process
 

Methods in pl.edu.agh.cast.importer.base.process with parameters of type DataRow
 void ImportProcess.changeRowValue(DataRow row, int index, String value)
          Changes token value in input row.
 

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

Methods in pl.edu.agh.cast.importer.base.util that return types with arguments of type DataRow
 ITabularData<DataRow> ConversionPreviewGenerator.generatePreview(IImportTemplate template, String filePath)
          Generates conversion preview for input file and input template.
 

Uses of DataRow in pl.edu.agh.cast.importer.wizard.page
 

Methods in pl.edu.agh.cast.importer.wizard.page that return types with arguments of type DataRow
 ITabularData<DataRow> InitImportPage.getTemplateConversionPreview()
          Creates and returns conversion preview.
 

Methods in pl.edu.agh.cast.importer.wizard.page with parameters of type DataRow
 void ValidationPageComposite.changeRowValue(DataRow row, int index, String value)
          Delegates method to ImportProcess#changeRowValue(DataRow, int, String).
 void ValidationPageComposite.rowContentChanged(DataRow row)
          Notifies about changes in row content.
 

Method parameters in pl.edu.agh.cast.importer.wizard.page with type arguments of type DataRow
 void ConversionPreviewComposite.refreshConversionPreview(ITabularData<DataRow> data)
          Views in table viewer conversion preview.
 

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

Method parameters in pl.edu.agh.cast.importer.wizard.provider with type arguments of type DataRow
 void ListColumnLabelProvider.setRowsWithEmptyTokens(List<DataRow> rowsWithEmptyTokens)
           
 

Uses of DataRow in pl.edu.agh.cast.importer.wizard.utils
 

Method parameters in pl.edu.agh.cast.importer.wizard.utils with type arguments of type DataRow
static void TableViewerHelper.setEmptyTokensReplacements(org.eclipse.jface.viewers.TableViewer tableViewer, Map<Integer,List<DataRow>> emptyTokenReplacements)
          Sets empty token replacements for a given table viewer.
 



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