33 lines
702 B
Java
33 lines
702 B
Java
package testApplication;
|
||
|
||
import javax.swing.BorderFactory;
|
||
import javax.swing.JTextField;
|
||
import visualisation.ParameterArea;
|
||
|
||
/**
|
||
* This class provides an example for using visualization.ParameterArea.
|
||
* @see ParameterArea
|
||
* @author MSch<63>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"));
|
||
}
|
||
|
||
|
||
|
||
}
|