Uses of Interface
at.tuwien.ifs.somtoolbox.util.ProgressListener

Packages that use ProgressListener
at.tuwien.ifs.somtoolbox.apps.viewer This package implements the SOMViewer application; main class is SOMViewer.java. 
at.tuwien.ifs.somtoolbox.layers Provides the basic classes constituting SOM-based neural networks. 
at.tuwien.ifs.somtoolbox.util Provides various helper classes. 
 

Uses of ProgressListener in at.tuwien.ifs.somtoolbox.apps.viewer
 

Classes in at.tuwien.ifs.somtoolbox.apps.viewer that implement ProgressListener
 class StatusBar
          The status bar displayed in the lower-right part of the SOMViewer application.
 

Uses of ProgressListener in at.tuwien.ifs.somtoolbox.layers
 

Methods in at.tuwien.ifs.somtoolbox.layers with parameters of type ProgressListener
private  void GrowingLayer.insertRowColumn(Unit a, Unit b, ProgressListener listener)
          Inserts a row or column of units between units specified by argument a and b.
private  void GrowingLayer.trainNormal(InputData data, int numIterations, int startIteration, SOMProperties trainingProps, double initialLearnrate, double initialSigma, double expParam, double expParam2, ProgressListener progressWriter)
           
private  void GrowingCellLayer.trainNormal(InputData data, ProgressListener progressWriter)
          Trains the CellLayer with the secified InputData and logs to progressWriter
private  void GrowingLayer.trainSpecial(InputData data, int numIterations, int startIteration, SOMProperties trainingProps, double initialLearnrate, double initialSigma, double expParam, double expParam2, SOMLibClassInformation classInfo, double minProbability, ProgressListener progressWriter)
           
 

Uses of ProgressListener in at.tuwien.ifs.somtoolbox.util
 

Classes in at.tuwien.ifs.somtoolbox.util that implement ProgressListener
 class AdaptiveStdErrProgressWriter
           
 class StdErrProgressWriter
          A progress listener that writes the progress messages to the standard error stream (System.err).
 

Fields in at.tuwien.ifs.somtoolbox.util declared as ProgressListener
private  ProgressListener ProgressListenerFactory.listener
           
 

Methods in at.tuwien.ifs.somtoolbox.util that return ProgressListener
 ProgressListener ProgressListenerFactory.createProgressListener(int numIterations, String iteration)
           
 ProgressListener ProgressListenerFactory.createProgressListener(int numIterations, String iteration, int stepWidth)
           
 ProgressListener ProgressListenerFactory.createProgressListener(int numIterations, String iteration, int stepWidth, int newLineWidth)
           
 ProgressListener ProgressListenerFactory.getListener()
           
 

Methods in at.tuwien.ifs.somtoolbox.util with parameters of type ProgressListener
 void ProgressListenerFactory.setListener(ProgressListener listener)