2024-07-02 19:13:30 +00:00
|
|
|
|
package OurApplication;
|
2024-06-15 19:55:30 +00:00
|
|
|
|
|
2024-07-02 19:13:30 +00:00
|
|
|
|
import visualisation.ParameterArea;
|
|
|
|
|
|
|
|
|
|
import javax.swing.*;
|
2024-06-15 19:55:30 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This class provides an example for using visualization.ParameterArea.
|
2024-07-02 19:13:30 +00:00
|
|
|
|
* @see ParameterArea
|
|
|
|
|
* @author MSch<EFBFBD>fer
|
2024-06-15 19:55:30 +00:00
|
|
|
|
* DHBW Stuttgart/Campus Horb AI2008<br>
|
|
|
|
|
* <br>
|
|
|
|
|
*/
|
2024-07-02 19:13:30 +00:00
|
|
|
|
public class OurParameterArea extends ParameterArea{
|
2024-06-15 19:55:30 +00:00
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
/** TextField containing maximum sum up value. */
|
|
|
|
|
protected JTextField maxValue;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Standard constructor.
|
|
|
|
|
* Creates SumUpParameterArea with an empty JTextField.
|
|
|
|
|
*/
|
2024-07-02 19:13:30 +00:00
|
|
|
|
public OurParameterArea() {
|
2024-06-15 19:55:30 +00:00
|
|
|
|
super();
|
|
|
|
|
setBorder(BorderFactory.createTitledBorder("ParameterArea"));
|
|
|
|
|
|
2024-07-02 22:46:21 +00:00
|
|
|
|
// Hier Elemente adden
|
|
|
|
|
}
|
2024-06-15 19:55:30 +00:00
|
|
|
|
}
|