Package jmri.jmrix
Class AbstractNetworkConnectionConfig
- java.lang.Object
-
- jmri.jmrix.AbstractConnectionConfig
-
- jmri.jmrix.AbstractNetworkConnectionConfig
-
- All Implemented Interfaces:
ConnectionConfig
- Direct Known Subclasses:
ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,ConnectionConfig,MarklinSimConnectionConfig,MqttConnectionConfig
public abstract class AbstractNetworkConnectionConfig extends AbstractConnectionConfig
Abstract base class for common implementation of the NetworkConnectionConfig.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class jmri.jmrix.AbstractConnectionConfig
AbstractConnectionConfig.Option
-
-
Field Summary
Fields Modifier and Type Field Description protected NetworkPortAdapteradapterprotected javax.swing.JTextFieldadNameFieldprotected javax.swing.JLabeladNameFieldLabelprotected javax.swing.JTextFieldhostNameFieldprotected javax.swing.JLabelhostNameFieldLabelprotected booleaninitprotected javax.swing.SpinnerNumberModelintervalSpinnerprotected javax.swing.JLabeloutputIntervalLabelprotected javax.swing.JButtonoutputIntervalResetprotected javax.swing.JSpinneroutputIntervalSpinner(package private) UserPreferencesManagerpprotected javax.swing.JTextFieldportFieldprotected javax.swing.JLabelportFieldLabelprotected javax.swing.JTextFieldserviceTypeFieldprotected javax.swing.JLabelserviceTypeFieldLabelprotected javax.swing.JCheckBoxshowAutoConfig-
Fields inherited from class jmri.jmrix.AbstractConnectionConfig
_details, additionalItems, cL, connectionNameField, connectionNameLabel, cR, gbLayout, NUMOPTIONS, options, showAdvanced, systemPrefixField, systemPrefixLabel
-
-
Constructor Summary
Constructors Constructor Description AbstractNetworkConnectionConfig()Ctor for a functional object with no preexisting adapter.AbstractNetworkConnectionConfig(NetworkPortAdapter p)Create a connection configuration with a preexisting adapter.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected intaddStandardDetails(boolean incAdvanced, int i)protected voidcheckInitDone()Complete connection adapter initialization, adding desired options to the Connection Configuration pane.protected voidcheckOptionValueValidity(java.lang.String i, javax.swing.JComboBox<java.lang.String> opt)voiddispose()Done with this ConnectionConfig object.NetworkPortAdaptergetAdapter()java.lang.StringgetConnectionName()booleangetDisabled()java.lang.StringgetInfo()java.lang.StringgetManufacturer()booleanisAutoConfigPossible()booleanisHostNameAdvanced()booleanisPortAdvanced()Determine whether to display port in Advanced options.voidloadDetails(javax.swing.JPanel details)Load the Swing widgets needed to configure this connection into a specified JPanel.voidsetAutoNetworkConfig()voidsetDisabled(boolean disabled)protected abstract voidsetInstance()Load the adapter with an appropriate object unless it's already been set.voidsetManufacturer(java.lang.String manufacturer)protected voidshowAdvancedItems()voidupdateAdapter()-
Methods inherited from class jmri.jmrix.AbstractConnectionConfig
addNameEntryCheckers, addStandardDetails, isDirty, isRestartRequired, register
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface jmri.jmrix.ConnectionConfig
name
-
-
-
-
Field Detail
-
init
protected boolean init
-
hostNameField
protected javax.swing.JTextField hostNameField
-
hostNameFieldLabel
protected javax.swing.JLabel hostNameFieldLabel
-
portField
protected javax.swing.JTextField portField
-
portFieldLabel
protected javax.swing.JLabel portFieldLabel
-
showAutoConfig
protected javax.swing.JCheckBox showAutoConfig
-
adNameField
protected javax.swing.JTextField adNameField
-
adNameFieldLabel
protected javax.swing.JLabel adNameFieldLabel
-
serviceTypeField
protected javax.swing.JTextField serviceTypeField
-
serviceTypeFieldLabel
protected javax.swing.JLabel serviceTypeFieldLabel
-
intervalSpinner
protected javax.swing.SpinnerNumberModel intervalSpinner
-
outputIntervalSpinner
protected javax.swing.JSpinner outputIntervalSpinner
-
outputIntervalLabel
protected javax.swing.JLabel outputIntervalLabel
-
outputIntervalReset
protected javax.swing.JButton outputIntervalReset
-
adapter
protected NetworkPortAdapter adapter
-
-
Constructor Detail
-
AbstractNetworkConnectionConfig
public AbstractNetworkConnectionConfig(NetworkPortAdapter p)
Create a connection configuration with a preexisting adapter. This is used principally when loading a configuration that defines this connection.- Parameters:
p- the adapter to create a connection configuration for
-
AbstractNetworkConnectionConfig
public AbstractNetworkConnectionConfig()
Ctor for a functional object with no preexisting adapter. Expect that the subclass setInstance() will fill the adapter member.
-
-
Method Detail
-
checkInitDone
protected void checkInitDone()
Complete connection adapter initialization, adding desired options to the Connection Configuration pane. Required action: set init to true. Optional actions:- fill in connectionNameField
- add ActionListeners to config fields eg. systemPrefixField to update adapter after change by the user
- Specified by:
checkInitDonein classAbstractConnectionConfig
-
updateAdapter
public void updateAdapter()
- Specified by:
updateAdapterin classAbstractConnectionConfig
-
getAdapter
public NetworkPortAdapter getAdapter()
-
setInstance
protected abstract void setInstance()
Load the adapter with an appropriate object unless it's already been set.- Specified by:
setInstancein classAbstractConnectionConfig
-
getInfo
public java.lang.String getInfo()
- Specified by:
getInfoin interfaceConnectionConfig- Specified by:
getInfoin classAbstractConnectionConfig
-
checkOptionValueValidity
protected void checkOptionValueValidity(java.lang.String i, javax.swing.JComboBox<java.lang.String> opt)
-
loadDetails
public void loadDetails(javax.swing.JPanel details)
Load the Swing widgets needed to configure this connection into a specified JPanel. Used during the configuration process to fill out the preferences window with content specific to this Connection type. The JPanel contents need to handle their own gets/sets to the underlying Connection content.- Specified by:
loadDetailsin interfaceConnectionConfig- Specified by:
loadDetailsin classAbstractConnectionConfig- Parameters:
details- the specific Swing object to be configured and filled
-
showAdvancedItems
protected void showAdvancedItems()
- Specified by:
showAdvancedItemsin classAbstractConnectionConfig
-
addStandardDetails
protected int addStandardDetails(boolean incAdvanced, int i)
-
isHostNameAdvanced
public boolean isHostNameAdvanced()
-
isPortAdvanced
public boolean isPortAdvanced()
Determine whether to display port in Advanced options.Default in Abstract Net Conn Config. Abstract True.
- Returns:
- true to display port in advanced options.
-
isAutoConfigPossible
public boolean isAutoConfigPossible()
-
setAutoNetworkConfig
public void setAutoNetworkConfig()
-
getManufacturer
public java.lang.String getManufacturer()
- Specified by:
getManufacturerin interfaceConnectionConfig- Specified by:
getManufacturerin classAbstractConnectionConfig
-
setManufacturer
public void setManufacturer(java.lang.String manufacturer)
- Specified by:
setManufacturerin interfaceConnectionConfig- Specified by:
setManufacturerin classAbstractConnectionConfig
-
getDisabled
public boolean getDisabled()
- Specified by:
getDisabledin interfaceConnectionConfig- Specified by:
getDisabledin classAbstractConnectionConfig
-
setDisabled
public void setDisabled(boolean disabled)
- Specified by:
setDisabledin interfaceConnectionConfig- Specified by:
setDisabledin classAbstractConnectionConfig
-
getConnectionName
public java.lang.String getConnectionName()
- Specified by:
getConnectionNamein interfaceConnectionConfig- Specified by:
getConnectionNamein classAbstractConnectionConfig
-
dispose
public void dispose()
Description copied from interface:ConnectionConfigDone with this ConnectionConfig object. Invoked inJmrixConfigPanewhen switching away from this particular mode.- Specified by:
disposein interfaceConnectionConfig- Overrides:
disposein classAbstractConnectionConfig
-
-