Uses of Class
org.knime.core.node.AbstractNodeView

Packages that use AbstractNodeView
org.knime.base.node.mine.bayes.naivebayes.learner This package contains the classes of the learner node. 
org.knime.base.node.mine.bfn Contains abstract and util classes to train and perform prediction to rule models, also called BasisFunction models. 
org.knime.base.node.mine.bfn.fuzzy Contains the learner and predictor to train fuzzy rules and apply them to unknown data. 
org.knime.base.node.mine.bfn.radial Contains the PNN learner and predictor. 
org.knime.base.node.mine.cluster.fuzzycmeans The fuzzycmeans package contains all classes for the Fuzzy c-means node. 
org.knime.base.node.mine.cluster.hierarchical Contains the implementation of a node performing hierarchical clustering. 
org.knime.base.node.mine.cluster.kmeans This package contains the classes needed from the KMeans Node. 
org.knime.base.node.mine.decisiontree2.learner   
org.knime.base.node.mine.decisiontree2.predictor This package contains code for a decision tree model and predictor. 
org.knime.base.node.mine.neural.rprop This package contains all classes for the RProp Node. 
org.knime.base.node.mine.regression.linear.learn Node implementation performing linear regression. 
org.knime.base.node.mine.regression.linear.view Customized scatter plot view that also shows the regression line. 
org.knime.base.node.mine.regression.polynomial.learner The polyreg's predictor package contains just the two classes that make up the predictor node: the model and its factory. 
org.knime.base.node.mine.scorer.accuracy Similar to the default scorer. 
org.knime.base.node.mine.scorer.entrop Node that performs an entropy calculation and compares two clustering results. 
org.knime.base.node.mine.sota Contains the Sota node, which can be used for clustering hirarchically numerical and fuzzy data and visualize the resulting cluster tree. 
org.knime.base.node.mine.subgroupminer This package contains everything necessary for normal subgroup mining. 
org.knime.base.node.mine.svm.learner This subpackage contains all classes for the SVM Learner Node. 
org.knime.base.node.preproc.correlation.pmcc   
org.knime.base.node.preproc.discretization.caim2.modelcreator Contains the classes implementing a node that learns a class supervised discretization (binning) model. 
org.knime.base.node.preproc.filter.hilite.collector Contains the HiLite Collector node with can be used to apply annotations to a set of hilit rows. 
org.knime.base.node.util.exttool Provides functionality for nodes that want to launch external programs.
The CommandExecution can be used to run the external program. 
org.knime.base.node.viz.condbox Contains all classes that realize a conditional box plot. 
org.knime.base.node.viz.enrichment The enrichment plotter node allows you to plot enrichment curves. 
org.knime.base.node.viz.histogram.node Contains classes for KNIME nodes which uses the classes of the histogram package to display a histogram view. 
org.knime.base.node.viz.liftchart The liftchart package contains all classes for building a lift chart node. 
org.knime.base.node.viz.pie.node This package contains the KNIME node classes for the fixed and interactive pie chart. 
org.knime.base.node.viz.pie.node.fixed This package contains the KNIME node classes for the fixed pie chart. 
org.knime.base.node.viz.pie.node.interactive This package contains the KNIME node classes for the interactive pie chart. 
org.knime.base.node.viz.plotter.box Contains all classes that realize a box plot. 
org.knime.base.node.viz.plotter.node This package contains a default node implementation which can be used if a simple plotter is implemented, which displays data from one inport and also wants to display only a restricted number of rows. 
org.knime.base.node.viz.plotter.parcoord A ParallelCoordinatePlot is a representation of multi-dimensional information or data, in which multiple dimensions are allocated to parallel axes on-screen. 
org.knime.base.node.viz.plotter.scatter A scatter plot maps to columns (dimensions) of data to 2-dimensional space, which results that each row (data instance) can be represented as one 2-dimensional point. 
org.knime.base.node.viz.roc The ROC node allows you to plot ROC curves. 
org.knime.base.node.viz.statistics Contains the Statistics Node which can be used to compute statistics based on the input data table. 
org.knime.base.node.viz.table Node implementation of the interactive table view. 
org.knime.core.node Contains all classes needed to implement a new node in the workflow. 
org.knime.core.node.interrupt This package contains the necessary classes for an interruptible framework. 
org.knime.core.node.workflow Contains wrapper classes which control the communication between Node and GUI Workflow. 
 

Uses of AbstractNodeView in org.knime.base.node.mine.bayes.naivebayes.learner
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.bayes.naivebayes.learner
 class NaiveBayesLearnerNodeView
          NodeView for the "Naive Bayes Learner" Node.
 

Uses of AbstractNodeView in org.knime.base.node.mine.bfn
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.bfn
 class BasisFunctionLearnerNodeView<T extends BasisFunctionLearnerNodeModel>
          View to display basisfunction rule models.
 

Uses of AbstractNodeView in org.knime.base.node.mine.bfn.fuzzy
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.bfn.fuzzy
 class FuzzyBasisFunctionLearnerNodeView
           
 

Uses of AbstractNodeView in org.knime.base.node.mine.bfn.radial
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.bfn.radial
 class RadialBasisFunctionLearnerNodeView
           
 

Uses of AbstractNodeView in org.knime.base.node.mine.cluster.fuzzycmeans
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.cluster.fuzzycmeans
 class FuzzyClusterNodeView
          The FuzzyClusterNodeView provides the user with information about the quality of the clustering.
 

Uses of AbstractNodeView in org.knime.base.node.mine.cluster.hierarchical
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.cluster.hierarchical
 class HierarchicalClusterNodeView
          This view displays the scoring results.
 

Uses of AbstractNodeView in org.knime.base.node.mine.cluster.kmeans
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.cluster.kmeans
 class ClusterNodeView
           
 

Uses of AbstractNodeView in org.knime.base.node.mine.decisiontree2.learner
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.decisiontree2.learner
 class DecTreeNodeView
          This node view is exactly the same as the one for the c4.5 encapsulating view.
 

Uses of AbstractNodeView in org.knime.base.node.mine.decisiontree2.predictor
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.decisiontree2.predictor
 class DecTreePredictorNodeView
           
 

Uses of AbstractNodeView in org.knime.base.node.mine.neural.rprop
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.neural.rprop
 class RPropNodeView
          NodeView of the RProp Node.
 

Uses of AbstractNodeView in org.knime.base.node.mine.regression.linear.learn
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.regression.linear.learn
 class LinRegLearnerNodeView
          View on the linear regression learner node.
 

Uses of AbstractNodeView in org.knime.base.node.mine.regression.linear.view
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.regression.linear.view
 class LinRegLineNodeView
          2D plot showing the linear regression line.
 

Uses of AbstractNodeView in org.knime.base.node.mine.regression.polynomial.learner
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.regression.polynomial.learner
 class PolyRegCoefficientView
          This view show a simple table with all the coefficients for each attributed in the dataset.
 class PolyRegLineNodeView
          This class shows a view with one attribute on the x-axis, its values on the y-axis and the regression curve.
 

Uses of AbstractNodeView in org.knime.base.node.mine.scorer.accuracy
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.scorer.accuracy
(package private)  class AccuracyScorerNodeView
          This view displays the scoring results.
 class ROCView
          This view plots a ROC curve for the classified data and prints the area under the curve.
 

Uses of AbstractNodeView in org.knime.base.node.mine.scorer.entrop
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.scorer.entrop
 class EntropyNodeView
           
 

Uses of AbstractNodeView in org.knime.base.node.mine.sota
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.sota
 class SotaNodeView
           
 

Uses of AbstractNodeView in org.knime.base.node.mine.subgroupminer
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.subgroupminer
 class BitVectorGeneratorView
          The BitvectorGeneratorView provides information about the generation of the bitsets out of the data.
 

Uses of AbstractNodeView in org.knime.base.node.mine.svm.learner
 

Subclasses of AbstractNodeView in org.knime.base.node.mine.svm.learner
 class SVMLearnerNodeView
          The SVM view provides information about all SVM'S trained for each class with their corresponding support vectors.
 

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

Subclasses of AbstractNodeView in org.knime.base.node.preproc.correlation.pmcc
 class PMCCNodeView
           
 

Uses of AbstractNodeView in org.knime.base.node.preproc.discretization.caim2.modelcreator
 

Subclasses of AbstractNodeView in org.knime.base.node.preproc.discretization.caim2.modelcreator
 class BinModelNodeView
          The view to visualize a binning model.
 

Uses of AbstractNodeView in org.knime.base.node.preproc.filter.hilite.collector
 

Subclasses of AbstractNodeView in org.knime.base.node.preproc.filter.hilite.collector
 class HiLiteCollectorNodeView
           
 

Uses of AbstractNodeView in org.knime.base.node.util.exttool
 

Subclasses of AbstractNodeView in org.knime.base.node.util.exttool
 class ExtToolOutputNodeView<T extends ExtToolOutputNodeModel>
          Base class for both output views.
 class ExtToolStderrNodeView<T extends ExtToolOutputNodeModel>
          The view showing the output to standard error.
 class ExtToolStdoutNodeView<T extends ExtToolOutputNodeModel>
          The view showing the output to standard output.
 

Uses of AbstractNodeView in org.knime.base.node.viz.condbox
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.condbox
 class ConditionalBoxPlotNodeView
          Class for a view of the conditional box plot.
 

Uses of AbstractNodeView in org.knime.base.node.viz.enrichment
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.enrichment
 class EnrichmentPlotterView
          This is the view for the enrichment plotter node that shows all specified enrichment plots.
 

Uses of AbstractNodeView in org.knime.base.node.viz.histogram.node
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.histogram.node
 class FixedColumnHistogramNodeView
          The node view which contains the histogram plotter panel.
 class HistogramNodeView
          The node view which contains the histogram plotter panel.
 

Uses of AbstractNodeView in org.knime.base.node.viz.liftchart
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.liftchart
 class LiftChartNodeView
           
 

Uses of AbstractNodeView in org.knime.base.node.viz.pie.node
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.pie.node
 class PieNodeView<P extends PieProperties<D>,D extends PieVizModel,T extends PieNodeModel<D>>
          The abstract node view which contains the pie chart panel.
 

Uses of AbstractNodeView in org.knime.base.node.viz.pie.node.fixed
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.pie.node.fixed
 class FixedPieNodeView
          The fixed implementation of the PieNodeView.
 

Uses of AbstractNodeView in org.knime.base.node.viz.pie.node.interactive
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.pie.node.interactive
 class InteractivePieNodeView
          The interactive implementation of the PieNodeView.
 

Uses of AbstractNodeView in org.knime.base.node.viz.plotter.box
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.plotter.box
 class BoxPlotNodeView
           
 

Uses of AbstractNodeView in org.knime.base.node.viz.plotter.node
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.plotter.node
 class DefaultVisualizationNodeView
          Convenient implementation of a NodeView that can display one or more plotter implementations.
 

Uses of AbstractNodeView in org.knime.base.node.viz.plotter.parcoord
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.plotter.parcoord
 class ParallelCoordinateNodeView
          Extends the DefaultVisualizationNodeView since it provides an additional menu to show, fade or hide unhilited lines (rows).
 

Uses of AbstractNodeView in org.knime.base.node.viz.plotter.scatter
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.plotter.scatter
 class ScatterPlotterNodeView
          Extends the DefaultVisualizationNodeView by adding an additional menu to show, fade or hide unhilited dots.
 

Uses of AbstractNodeView in org.knime.base.node.viz.roc
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.roc
 class ROCNodeView
          This view show one or more ROC curves that were pre-calculated in the model.
 

Uses of AbstractNodeView in org.knime.base.node.viz.statistics
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.statistics
 class Statistics2NodeView
          The view shows the statistical information.
 

Uses of AbstractNodeView in org.knime.base.node.viz.table
 

Subclasses of AbstractNodeView in org.knime.base.node.viz.table
 class TableNodeView
          Table view on a DataTable.
 

Uses of AbstractNodeView in org.knime.core.node
 

Subclasses of AbstractNodeView in org.knime.core.node
 class ExternalApplicationNodeView<T extends NodeModel>
          Node view which opens an external application.
 class NodeView<T extends NodeModel>
          Node view class that displays the view content in an AWT-frame.
 

Methods in org.knime.core.node that return AbstractNodeView
 AbstractNodeView<T> NodeFactory.createAbstractNodeView(int viewIndex, T nodeModel)
          Generalization of NodeFactory.createNodeView(int, NodeModel) to allow for creation of a more flexible AbstractNodeView.
 AbstractNodeView<?> Node.getView(int viewIndex, String title)
          Return a new instance of the node's view (without opening it).
 

Methods in org.knime.core.node that return types with arguments of type AbstractNodeView
(package private)  Collection<AbstractNodeView<?>> NodeModel.getViews()
           
 

Methods in org.knime.core.node with parameters of type AbstractNodeView
static void Node.invokeCloseView(AbstractNodeView<?> view)
          Widens scope of closeView() method so it can be called from UI framework components.
static void Node.invokeOpenView(AbstractNodeView<?> view, String title)
          Widens scope of openView(String) method so it can be called from UI framework components.
(package private)  void NodeModel.registerView(AbstractNodeView<?> view)
          Registers the given view at the model to receive change events of the underlying model.
(package private)  void NodeModel.unregisterView(AbstractNodeView<?> view)
          Unregisters the given view.
 

Uses of AbstractNodeView in org.knime.core.node.interrupt
 

Subclasses of AbstractNodeView in org.knime.core.node.interrupt
 class InterruptibleNodeView
          This class provides a generic view for the InterruptibleNodeModel and all deriving classes, which basically consists in a control panel, with some control elements such as a "Run"-, a "Break"- and a "Finish"-Button and a slider to adjust the delay.
 

Uses of AbstractNodeView in org.knime.core.node.workflow
 

Methods in org.knime.core.node.workflow that return AbstractNodeView
abstract  AbstractNodeView<NodeModel> NodeContainer.getNodeView(int i)
          Return the view with the specified index provided by the node.
 AbstractNodeView<NodeModel> SingleNodeContainer.getNodeView(int i)
          Return the view with the specified index provided by the node.
 AbstractNodeView<NodeModel> NodeContainer.getView(int i)
           
 



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.