33 lines
746 B
Java
33 lines
746 B
Java
package testApplication;
|
|
|
|
import javax.swing.BorderFactory;
|
|
import javax.swing.JTextField;
|
|
import visualization.ParameterArea;
|
|
|
|
/**
|
|
* This class provides an example for using visualization.ParameterArea.
|
|
* @see visualization.ParameterArea
|
|
* @author MSchäfer
|
|
* DHBW Stuttgart/Campus Horb AI2008<br>
|
|
* <br>
|
|
*/
|
|
public class TestParameterArea extends ParameterArea{
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** TextField containing maximum sum up value. */
|
|
protected JTextField maxValue;
|
|
|
|
/**
|
|
* Standard constructor.
|
|
* Creates SumUpParameterArea with an empty JTextField.
|
|
*/
|
|
public TestParameterArea() {
|
|
super();
|
|
setBorder(BorderFactory.createTitledBorder("ParameterArea"));
|
|
}
|
|
|
|
|
|
|
|
}
|