Uses of Interface
pl.edu.agh.cast.importer.base.converter.rules.IConversionRule

Packages that use IConversionRule
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.general Provides CAST Importer base classes for the general domain model. 
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.dialog.rule Provides CAST Importer wizard's classes for the import wizard conversion rule dialogs (configuring different conversion rules). 
pl.edu.agh.cast.importer.wizard.general Provides CAST Importer wizard's user classes for those import wizard pages and their main composites, which are associated with general domain model. 
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.util Provides CAST Importer wizard's various general utility classes. 
 

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

Methods in pl.edu.agh.cast.importer.base.converter with parameters of type IConversionRule
protected  void AbstractImportConverter.createAndAddColumn(List<TabularDataColumn> columns, IConversionRule rule, Class<?> type, String caption)
           
protected  boolean AbstractImportConverter.isRuleComplete(IConversionRule rule)
           
 

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

Classes in pl.edu.agh.cast.importer.base.converter.rules that implement IConversionRule
 class AbstractDateDoubleColumnConversionRule
          Date conversion rule for two columns: one date column and one time column.
 class AbstractDateSingleColumnConversionRule
          Retrieves and returns a date value from a specified column of given data row.
 class AbstractDirectedGraphConversionRule
          Source and target nodes' conversion for two String columns and one Direction column.
 class AbstractIntegerSingleColumnConversionRule
          Base class for conversion rules which conversion result is Integer value.
 class AbstractSingleColumnConversionRule
          Abstract class for all single column conversion rules.
 class AbstractStringSingleColumnConversionRule
          Retrieves and returns a string value from a specified column of given data row.
 

Methods in pl.edu.agh.cast.importer.base.converter.rules that return IConversionRule
 IConversionRule IConversionRule.createCopy()
          Creates a copy of the current conversion rule.
 

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

Subinterfaces of IConversionRule in pl.edu.agh.cast.importer.base.general
 interface IDateConversionRule
          Interface for all date conversion rules.
 interface ISourceNodeConversionRule
          Interface for all source node conversion rules.
 interface ITargetNodeConversionRule
          Interface for all target node conversion rules.
 

Classes in pl.edu.agh.cast.importer.base.general that implement IConversionRule
 class DateDoubleColumnConversionRule
          Date conversion rule for two columns: one date column and one time column.
 class DateSingleColumnConversionRule
          Date conversion rule for a single column.
 class DirectedGraphConversionRule
          Source and target nodes' conversion for two String columns and one Direction column.
 class SourceNodeSingleColumnConversionRule
          Source node conversion rule for a single column.
 class TargetNodeSingleColumnConversionRule
          Target node conversion rule for a single column.
 

Methods in pl.edu.agh.cast.importer.base.general that return IConversionRule
 IConversionRule DirectedGraphConversionRule.createCopy()
          Creates a copy of the current conversion rule.
 IConversionRule DateDoubleColumnConversionRule.createCopy()
          Creates a copy of the current conversion rule.
 

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

Methods in pl.edu.agh.cast.importer.base.util that return IConversionRule
 IConversionRule IImporterPluginRegistryProvider.getConversionRuleInstance(String conversionRuleId)
          Returns the conversion rule for model with given extension identifier.
 IConversionRule ImporterUtil.getConversionRuleInstance(String conversionRuleId)
          Delegated method.
 

Uses of IConversionRule in pl.edu.agh.cast.importer.wizard.dialog.rule
 

Fields in pl.edu.agh.cast.importer.wizard.dialog.rule declared as IConversionRule
protected  IConversionRule AbstractConversionRuleConfigDialog.rule
          The conversion rule.
 

Methods in pl.edu.agh.cast.importer.wizard.dialog.rule with parameters of type IConversionRule
 void AbstractSingleColumnConversionRuleConfigDialog.setData(AbstractConversionRulesSelectionPage mediator, TabularData tabData, String[] params, IConversionRule convRule)
          Sets necessary data for this conversion rule configuration dialog.
 void AbstractConversionRuleConfigDialog.setData(AbstractConversionRulesSelectionPage mediatingPage, TabularData tabData, String[] params, IConversionRule convRule)
          Sets necessary data for this conversion rule configuration dialog.
 

Uses of IConversionRule in pl.edu.agh.cast.importer.wizard.general
 

Methods in pl.edu.agh.cast.importer.wizard.general with parameters of type IConversionRule
 void GeneralConversionRulesSelectionPageComposite.disableCombos(List<org.eclipse.swt.widgets.Combo> combos, IConversionRule rule)
          Disables comboboxes after blocking rule selection.
 void GeneralConversionRulesSelectionPage.refreshCombosBlocking(List<org.eclipse.swt.widgets.Combo> combosToBlock, List<org.eclipse.swt.widgets.Combo> combosToUnblock, IConversionRule newRule)
          Refreshes the blocking of comboboxes on the current rules selection page.
 

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

Fields in pl.edu.agh.cast.importer.wizard.page with type parameters of type IConversionRule
protected  Map<Class<? extends IConversionRule>,org.eclipse.swt.widgets.Combo> AbstractConversionRulesSelectionPage.ruleCombosMap
          The map of existing conversion rules to the comboboxes that handle their configuration.
 

Methods in pl.edu.agh.cast.importer.wizard.page that return IConversionRule
 IConversionRule AbstractConversionRulesSelectionPage.getConversionRuleInstance(String ruleId)
          Retrieves conversion rule instance with specified identifier.
 

Methods in pl.edu.agh.cast.importer.wizard.page with parameters of type IConversionRule
 void AbstractConversionRulesSelectionPage.checkBlocking(IConversionRule oldRule, IConversionRule newRule, Class<? extends IConversionRule> ruleClazz)
          Checks whether the comboboxes in the curent rules selection page should be blocked or unblocked due to the change in rule selection.
abstract  void AbstractConversionRulesSelectionPage.refreshCombosBlocking(List<org.eclipse.swt.widgets.Combo> combosToBlock, List<org.eclipse.swt.widgets.Combo> combosToUnblock, IConversionRule newRule)
          Refreshes the blocking of comboboxes on the current rules selection page.
 

Method parameters in pl.edu.agh.cast.importer.wizard.page with type arguments of type IConversionRule
 void AbstractConversionRulesSelectionPage.checkBlocking(IConversionRule oldRule, IConversionRule newRule, Class<? extends IConversionRule> ruleClazz)
          Checks whether the comboboxes in the curent rules selection page should be blocked or unblocked due to the change in rule selection.
 void AbstractConversionRulesSelectionPage.setRuleCombosMap(Map<Class<? extends IConversionRule>,org.eclipse.swt.widgets.Combo> ruleCombosMap)
           
 

Uses of IConversionRule in pl.edu.agh.cast.importer.wizard.util
 

Methods in pl.edu.agh.cast.importer.wizard.util that return IConversionRule
 IConversionRule MockImporterPluginRegistryProvider.getConversionRuleInstance(String conversionRuleId)
          Returns the conversion rule for model with given extension identifier.
 



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