at.tuwien.ifs.somtoolbox.util
Interface ProgressListener

All Known Implementing Classes:
AdaptiveStdErrProgressWriter, StatusBar, StdErrProgressWriter

public interface ProgressListener

An interface defining a listener for progress messages. Currently StdErrProgressWriter is the only class implementing this interface.

Version:
$Id: ProgressListener.java 3583 2010-05-21 10:07:41Z mayer $
Author:
Michael Dittenbach, Rudolf Mayer

Method Summary
 int getCurrentStep()
           
 void insertColumn(int columns, String message)
           
 void insertRow(int rows, String message)
           
 void progress()
          Progress by one step.
 void progress(int currentStep)
          Progress by the given steps.
 void progress(String message)
          Progress by one step, and change the message
 void progress(String message, int currentStep)
          Progress by the given steps, and change the message
 

Method Detail

progress

void progress(String message,
              int currentStep)
Progress by the given steps, and change the message


progress

void progress(int currentStep)
Progress by the given steps.


progress

void progress()
Progress by one step.


progress

void progress(String message)
Progress by one step, and change the message


insertRow

void insertRow(int rows,
               String message)

insertColumn

void insertColumn(int columns,
                  String message)

getCurrentStep

int getCurrentStep()