net.algart.model3d.common.movement
Interface StatusShower

All Known Implementing Classes:
MovingSpheresApplet

public interface StatusShower

A tool for showing status line by the component MovingSpheresController. This interface declares only one showStatus(String) method, identical to the corresponding method of java.applet.Applet class.

This interface is implemented by MovingSpheresApplet class. If you want to use MovingSpheresController class in your own application, not a Java applet, you need to implement this interface to work with that component.

AlgART Laboratory 2010

Since:
JDK 1.5
Version:
1.0
Author:
Daniel Alievsky

Method Summary
Modifier and Type Method and Description
 void showStatus(java.lang.String message)
          Requests that the argument string be displayed in the "status line".
 

Method Detail

showStatus

void showStatus(java.lang.String message)
Requests that the argument string be displayed in the "status line".

Parameters:
message - a string to display in the status line.