net.algart.model3d.common.movement
Interface ParameterGetter

All Known Implementing Classes:
MovingSpheresApplet

public interface ParameterGetter

A tool for customizing the model and view, represented by MovingSpheresModel and MovingSpheresView classes, via text strings, in a Java-applet manner. This interface declares only one getParameter(String) method, identical to the corresponding method of java.applet.Applet class.

This interface is implemented by MovingSpheresApplet class. If you want to use MovingSpheresModel and MovingSpheresView classes in your own application, not a Java applet, you need to implement this interface to work with those classes.

AlgART Laboratory 2010

Since:
JDK 1.5
Version:
1.0
Author:
Daniel Alievsky

Method Summary
Modifier and Type Method and Description
 java.lang.String getParameter(java.lang.String name)
          Returns the value of the named parameter.
 

Method Detail

getParameter

java.lang.String getParameter(java.lang.String name)
Returns the value of the named parameter. The name argument is case insensitive.

Parameters:
name - the parameter name.
Returns:
the value of the named parameter, or null if not set.