Package jmri.jmrix.roco.z21
Class Z21XNetConnectionConfig
- java.lang.Object
-
- jmri.jmrix.AbstractConnectionConfig
-
- jmri.jmrix.AbstractStreamConnectionConfig
-
- jmri.jmrix.roco.z21.Z21XNetConnectionConfig
-
- All Implemented Interfaces:
ConnectionConfig
,StreamConnectionConfig
public class Z21XNetConnectionConfig extends AbstractStreamConnectionConfig
Handle configuring the XpressNet tunnel for the z21 Connection.This uses the
Z21XNetStreamPortController
class to do the actual connection.- See Also:
Z21XNetStreamPortController
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class jmri.jmrix.AbstractConnectionConfig
AbstractConnectionConfig.Option
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.lang.String
manufacturerName
-
Fields inherited from class jmri.jmrix.AbstractStreamConnectionConfig
adapter, init
-
Fields inherited from class jmri.jmrix.AbstractConnectionConfig
_details, additionalItems, cL, connectionNameField, connectionNameLabel, cR, gbLayout, NUMOPTIONS, options, showAdvanced, systemPrefixField, systemPrefixLabel
-
-
Constructor Summary
Constructors Constructor Description Z21XNetConnectionConfig()
Ctor for a connection configuration with no preexisting adapter.Z21XNetConnectionConfig(AbstractStreamPortController p)
Ctor for an object being created during load process; Swing init is deferred.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getManufacturer()
boolean
isDirty()
Determine if configuration needs to be written to disk.java.lang.String
name()
protected void
setInstance()
Load the adapter with an appropriate object unless it's already been set.void
setManufacturer(java.lang.String manu)
-
Methods inherited from class jmri.jmrix.AbstractStreamConnectionConfig
checkInitDone, dispose, getAdapter, getConnectionName, getDisabled, getInfo, loadDetails, setDisabled, showAdvancedItems, updateAdapter
-
Methods inherited from class jmri.jmrix.AbstractConnectionConfig
addNameEntryCheckers, addStandardDetails, 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
isRestartRequired, register
-
-
-
-
Field Detail
-
manufacturerName
java.lang.String manufacturerName
-
-
Constructor Detail
-
Z21XNetConnectionConfig
public Z21XNetConnectionConfig(AbstractStreamPortController p)
Ctor for an object being created during load process; Swing init is deferred.- Parameters:
p
- stream port controller.
-
Z21XNetConnectionConfig
public Z21XNetConnectionConfig()
Ctor for a connection configuration with no preexisting adapter.setInstance()
will fill the adapter member.
-
-
Method Detail
-
name
public java.lang.String name()
-
getManufacturer
public java.lang.String getManufacturer()
- Specified by:
getManufacturer
in interfaceConnectionConfig
- Overrides:
getManufacturer
in classAbstractStreamConnectionConfig
-
setManufacturer
public void setManufacturer(java.lang.String manu)
- Specified by:
setManufacturer
in interfaceConnectionConfig
- Overrides:
setManufacturer
in classAbstractStreamConnectionConfig
-
setInstance
protected void setInstance()
Load the adapter with an appropriate object unless it's already been set.- Specified by:
setInstance
in classAbstractConnectionConfig
-
isDirty
public boolean isDirty()
Determine if configuration needs to be written to disk. this implementation always returns false.- Specified by:
isDirty
in interfaceConnectionConfig
- Overrides:
isDirty
in classAbstractConnectionConfig
- Returns:
- true if configuration need to be saved, false otherwise
-
-