23 lines
678 B
Java
23 lines
678 B
Java
|
package ProjectElectricLocomotive;
|
||
|
|
||
|
import javax.swing.*;
|
||
|
|
||
|
public class FormLocomotiveConfig {
|
||
|
private JPanel MainPanel;
|
||
|
private JPanel groupBoxObjectParameters;
|
||
|
private JPanel groupBoxColors;
|
||
|
private JSpinner numericUpDownSpeed;
|
||
|
private JSpinner numericUpDownWeight;
|
||
|
private JLabel labelSpeed;
|
||
|
private JLabel labelWeight;
|
||
|
private JCheckBox checkBoxHorns;
|
||
|
private JCheckBox checkBoxSeifBatteries;
|
||
|
private JLabel lableSimpleObject;
|
||
|
private JLabel labelModifiedObject;
|
||
|
private JButton buttonOk;
|
||
|
private JButton buttonClose;
|
||
|
private JLabel labelColor;
|
||
|
private JLabel labelDopColor;
|
||
|
private JPanel pictureBoxObject;
|
||
|
}
|