Uses of Interface
org.knime.core.node.config.ConfigWO

Packages that use ConfigWO
org.knime.base.data.util   
org.knime.base.node.mine.bayes.naivebayes.datamodel This package implements the naive bayes algorithm for numerical and nominal attributes. 
org.knime.base.node.preproc.correlation.pmcc   
org.knime.base.node.viz.aggregation This package contains all data models and some utility classes which are used in the different aggregation visualization implementations like pie chart and histogram. 
org.knime.base.node.viz.histogram.datamodel This package contains all data and visualization models which are used in the different histogram implementations. 
org.knime.base.node.viz.histogram.util Contains utility classes which performe binning or which are used in dialogs to select the aggregation columns. 
org.knime.base.node.viz.pie.datamodel This package contains the pie chart data model classes. 
org.knime.base.util   
org.knime.core.data Contains the interface definitions of the DataCell and DataTable and related classes, used to store and access the actual data. 
org.knime.core.data.date Definition of date and time in KNIME. 
org.knime.core.data.property Contains utility classes for Colors, Shapes, and Sizes which can be assigned to a DataTable via corresponding ColorHandler, ShapeHandler, and SizeHandler all derived from PropertyHandler
org.knime.core.node Contains all classes needed to implement a new node in the workflow. 
org.knime.core.node.config Contains a utility class Config to store a general state (i.e. 
org.knime.core.node.port.database   
org.knime.core.node.property.hilite Contains hilite classes to maintain hilite events between different views. 
 

Uses of ConfigWO in org.knime.base.data.util
 

Methods in org.knime.base.data.util with parameters of type ConfigWO
 void DataCellStringMapper.save(ConfigWO config)
          Saves the DataCellStringMapper> to the given ConfigWO.
 

Uses of ConfigWO in org.knime.base.node.mine.bayes.naivebayes.datamodel
 

Methods in org.knime.base.node.mine.bayes.naivebayes.datamodel with parameters of type ConfigWO
 void NaiveBayesModel.savePredictorParams(ConfigWO predParams)
           
 

Uses of ConfigWO in org.knime.base.node.preproc.correlation.pmcc
 

Methods in org.knime.base.node.preproc.correlation.pmcc with parameters of type ConfigWO
 void PMCCPortObjectAndSpec.save(ConfigWO m)
          Saves this object to a config.
 

Uses of ConfigWO in org.knime.base.node.viz.aggregation
 

Methods in org.knime.base.node.viz.aggregation with parameters of type ConfigWO
 void AggregationValSubModel.save2File(ConfigWO config, ExecutionMonitor exec)
           
 void AggregationValModel.save2File(ConfigWO config, ExecutionMonitor exec)
           
protected abstract  void AggregationValModel.saveElements(Collection<T> elements, ConfigWO config, ExecutionMonitor exec)
           
 

Uses of ConfigWO in org.knime.base.node.viz.histogram.datamodel
 

Methods in org.knime.base.node.viz.histogram.datamodel with parameters of type ConfigWO
 void BinDataModel.save2File(ConfigWO config, ExecutionMonitor exec)
           
protected  void BarDataModel.saveElements(Collection<BarElementDataModel> elements, ConfigWO config, ExecutionMonitor exec)
          
 

Uses of ConfigWO in org.knime.base.node.viz.histogram.util
 

Methods in org.knime.base.node.viz.histogram.util with parameters of type ConfigWO
 void ColorColumn.save2File(ConfigWO config, ExecutionMonitor exec)
           
 

Uses of ConfigWO in org.knime.base.node.viz.pie.datamodel
 

Methods in org.knime.base.node.viz.pie.datamodel with parameters of type ConfigWO
protected  void PieSectionDataModel.saveElements(Collection<PieSubSectionDataModel> elements, ConfigWO config, ExecutionMonitor exec)
          
 

Uses of ConfigWO in org.knime.base.util
 

Methods in org.knime.base.util with parameters of type ConfigWO
 void HalfFloatMatrix.save(ConfigWO config)
          Saves the matrix directly into the passed node settings object.
 void HalfDoubleMatrix.save(ConfigWO config)
          Saves the matrix directly into the passed node settings object.
 void HalfIntMatrix.save(ConfigWO config)
          Saves the matrix directly into the passed node settings object.
 

Uses of ConfigWO in org.knime.core.data
 

Methods in org.knime.core.data with parameters of type ConfigWO
 void DataColumnDomain.save(ConfigWO config)
          Save this domain to the given ConfigWO including lower and upper bound, and possible values or null - if not available.
 void DataColumnSpec.save(ConfigWO config)
          Saves name, type, domain, and properties and - if available - color, size, and shape handler to the given ConfigWO.
 void DataColumnProperties.save(ConfigWO config)
          Saves all key-value pairs to the given ConfigWO.
 void DataType.save(ConfigWO config)
          Saves this DataType to the given ConfigWO.
 void DataTableSpec.save(ConfigWO config)
          Saves the table spec name and all DataColumnSpecs to the given ConfigWO object.
 

Uses of ConfigWO in org.knime.core.data.date
 

Methods in org.knime.core.data.date with parameters of type ConfigWO
 void DateAndTimeCell.save(ConfigWO config)
          Save this cell to the argument config.
 

Uses of ConfigWO in org.knime.core.data.property
 

Methods in org.knime.core.data.property with parameters of type ConfigWO
 void ShapeModelNominal.save(ConfigWO config)
          Saves the DataCell to Shape mapping to the given Config.
 void SizeModelDouble.save(ConfigWO config)
          Saves min and max ranges to the given Config.
 void SizeHandler.save(ConfigWO config)
          Save the SizeModel class and settings to the given Config.
 void SizeHandler.SizeModel.save(ConfigWO config)
          Save size settings to.
 void ColorHandler.save(ConfigWO config)
          Saves the underlying ColorModel to the given Config by adding the ColorModel class as String and calling ColorHandler.ColorModel.save(ConfigWO) within the model.
 void ColorHandler.ColorModel.save(ConfigWO config)
          Saves this ColorModel to the given ConfigWO.
 void ColorModelRange.save(ConfigWO config)
          Save lower and upper, and min and max colors to the given Config.
 void ColorModelNominal.save(ConfigWO config)
          Saves the DataCell to Color mapping to the given Config.
 void ShapeHandler.save(ConfigWO config)
          Save the ShapeModel class and settings to the given Config.
 void ShapeHandler.ShapeModel.save(ConfigWO config)
          Saves this ShapeModel to the given config.
 

Uses of ConfigWO in org.knime.core.node
 

Subinterfaces of ConfigWO in org.knime.core.node
 interface ModelContentWO
          Write-only ModelContentWO interface.
 interface NodeSettingsWO
          Write-only NodeSettingsWO interface.
 

Classes in org.knime.core.node that implement ConfigWO
 class ModelContent
          This ModelContent is used to store XML-like model settings.
 class NodeSettings
          This class overwrites the general Config object and specializes some method to access NodeSettings object.
 

Uses of ConfigWO in org.knime.core.node.config
 

Classes in org.knime.core.node.config that implement ConfigWO
 class Config
          Supports a mechanism to save settings by their type and a key.
 

Methods in org.knime.core.node.config with parameters of type ConfigWO
 void Config.copyTo(ConfigWO dest)
          Makes a deep copy of this Config and all sub-configs.
 void ConfigRO.copyTo(ConfigWO config)
          Copies this Config into a write-only one.
 

Uses of ConfigWO in org.knime.core.node.port.database
 

Methods in org.knime.core.node.port.database with parameters of type ConfigWO
 void DatabaseConnectionSettings.saveConnection(ConfigWO settings)
          Save settings.
 void DatabaseQueryConnectionSettings.saveConnection(ConfigWO settings)
          Save settings.
 

Uses of ConfigWO in org.knime.core.node.property.hilite
 

Methods in org.knime.core.node.property.hilite with parameters of type ConfigWO
 void DefaultHiLiteMapper.save(ConfigWO config)
          Saves the settings in this mapper to a config object.
 



Copyright, 2003 - 2010. All rights reserved.
University of Konstanz, Germany.
Chair for Bioinformatics and Information Mining, Prof. Dr. Michael R. Berthold.
You may not modify, publish, transmit, transfer or sell, reproduce, create derivative works from, distribute, perform, display, or in any way exploit any of the content, in whole or in part, except as otherwise expressly permitted in writing by the copyright owner or as specified in the license file distributed with this product.