use of jmri.swing.JTitledSeparator in project JMRI by JMRI.
the class JmriSRCPServerPreferencesPanel method initGUI.
private void initGUI() {
this.setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
add(new JTitledSeparator(Bundle.getMessage("ServerSectionTitle")));
add(portPanel());
add(new JTitledSeparator(Bundle.getMessage("SRCPSectionTitle")));
add(Box.createVerticalGlue());
}
use of jmri.swing.JTitledSeparator in project JMRI by JMRI.
the class JsonServerPreferencesPanel method initGUI.
private void initGUI() {
this.setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
add(new JTitledSeparator(Bundle.getMessage("ServerSectionTitle")));
add(portPanel());
add(new JTitledSeparator(Bundle.getMessage("JSONSectionTitle")));
add(heartbeatPanel());
add(Box.createVerticalGlue());
}
use of jmri.swing.JTitledSeparator in project JMRI by JMRI.
the class SimpleServerPreferencesPanel method initGUI.
private void initGUI() {
this.setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
add(new JTitledSeparator(Bundle.getMessage("ServerSectionTitle")));
add(portPanel());
add(new JTitledSeparator(Bundle.getMessage("SimpleServerSectionTitle")));
add(Box.createVerticalGlue());
}
use of jmri.swing.JTitledSeparator in project JMRI by JMRI.
the class WiThrottlePrefsPanel method initGUI.
public void initGUI() {
setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
add(new JTitledSeparator(Bundle.getMessage("TitleDelayPanel")));
add(eStopDelayPanel());
add(new JTitledSeparator(Bundle.getMessage("TitleFunctionsPanel")));
add(functionsPanel());
add(new JTitledSeparator(Bundle.getMessage("TitleNetworkPanel")));
add(socketPortPanel());
add(new JTitledSeparator(Bundle.getMessage("TitleControllersPanel")));
add(allowedControllers());
}
use of jmri.swing.JTitledSeparator in project JMRI by JMRI.
the class RailroadNamePreferencesPanel method initGUI.
private void initGUI() {
this.setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
add(new JTitledSeparator(Bundle.getMessage("TitleRailroadNamePreferences")));
add(rrNamePanel());
}
Aggregations