ProjektGraph/OurApplication/OurParameterArea.java

33 lines
657 B
Java
Raw Normal View History

2024-07-02 19:13:30 +00:00
package OurApplication;
2024-07-02 19:13:30 +00:00
import visualisation.ParameterArea;
import javax.swing.*;
/**
* This class provides an example for using visualization.ParameterArea.
2024-07-02 19:13:30 +00:00
* @see ParameterArea
* @author MSch<EFBFBD>fer
* DHBW Stuttgart/Campus Horb AI2008<br>
* <br>
*/
2024-07-02 19:13:30 +00:00
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.
*/
2024-07-02 19:13:30 +00:00
public OurParameterArea() {
super();
setBorder(BorderFactory.createTitledBorder("ParameterArea"));
}
}