32 lines
679 B
Java
32 lines
679 B
Java
package OurApplication;
|
||
|
||
import visualisation.ParameterArea;
|
||
|
||
import javax.swing.*;
|
||
|
||
/**
|
||
* This class provides an example for using visualization.ParameterArea.
|
||
* @see ParameterArea
|
||
* @author MSch<63>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"));
|
||
|
||
// Hier Elemente adden
|
||
}
|
||
}
|