33 lines
657 B
Java
33 lines
657 B
Java
|
package OurApplication;
|
|||
|
|
|||
|
import visualisation.ParameterArea;
|
|||
|
|
|||
|
import javax.swing.*;
|
|||
|
|
|||
|
/**
|
|||
|
* This class provides an example for using visualization.ParameterArea.
|
|||
|
* @see ParameterArea
|
|||
|
* @author MSch<EFBFBD>fer
|
|||
|
* DHBW Stuttgart/Campus Horb AI2008<br>
|
|||
|
* <br>
|
|||
|
*/
|
|||
|
public class OurParameterArea 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 OurParameterArea() {
|
|||
|
super();
|
|||
|
setBorder(BorderFactory.createTitledBorder("ParameterArea"));
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|