Package jmri.jmrix.direct
Class DirectSystemConnectionMemo
- java.lang.Object
-
- jmri.beans.UnboundBean
-
- jmri.beans.Bean
-
- jmri.jmrix.DefaultSystemConnectionMemo
-
- jmri.jmrix.direct.DirectSystemConnectionMemo
-
- All Implemented Interfaces:
BeanInterface,PropertyChangeFirer,PropertyChangeProvider,Disposable,ConfiguringSystemConnectionMemo,SystemConnectionMemo
public class DirectSystemConnectionMemo extends DefaultSystemConnectionMemo implements ConfiguringSystemConnectionMemo
Minimum required SystemConnectionMemo.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) ComponentFactorycf-
Fields inherited from class jmri.jmrix.DefaultSystemConnectionMemo
classObjectMap
-
Fields inherited from class jmri.beans.Bean
propertyChangeSupport
-
Fields inherited from interface jmri.SystemConnectionMemo
DEREGISTER, DISABLED, INTERVAL, STORE, SYSTEM_PREFIX, USER_NAME
-
-
Constructor Summary
Constructors Constructor Description DirectSystemConnectionMemo()DirectSystemConnectionMemo(java.lang.String prefix, java.lang.String userName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigureManagers()Configure the common managers associated with the System Connection memo.protected java.util.ResourceBundlegetActionModelResourceBundle()<B extends NamedBean>
java.util.Comparator<B>getNamedBeanComparator(java.lang.Class<B> type)Get the Comparator to be used for two NamedBeans.ThrottleManagergetThrottleManager()Get the ThrottleManager instance associated with this connection memo.TrafficControllergetTrafficController()Get the traffic controller instance associated with this connection memo.voidsetThrottleManager(ThrottleManager s)Set the traffic controller instance associated with this connection memo.voidsetTrafficController(TrafficController s)Set the traffic controller instance associated with this connection memo.-
Methods inherited from class jmri.jmrix.DefaultSystemConnectionMemo
deregister, dispose, get, getActionFactory, getConsistManager, getDefaultOutputInterval, getDisabled, getOutputInterval, getSystemPrefix, getUserName, isDirty, isRestartRequired, provides, register, setConsistManager, setDisabled, setOutputInterval, setSystemPrefix, setUserName, store
-
Methods inherited from class jmri.beans.Bean
addPropertyChangeListener, addPropertyChangeListener, fireIndexedPropertyChange, fireIndexedPropertyChange, fireIndexedPropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getPropertyChangeListeners, getPropertyChangeListeners, isNotifyOnEDT, removePropertyChangeListener, removePropertyChangeListener
-
Methods inherited from class jmri.beans.UnboundBean
getIndexedProperty, getProperty, getPropertyNames, hasIndexedProperty, hasProperty, setIndexedProperty, setProperty
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface jmri.beans.PropertyChangeProvider
addPropertyChangeListener, addPropertyChangeListener, getPropertyChangeListeners, getPropertyChangeListeners, removePropertyChangeListener, removePropertyChangeListener
-
Methods inherited from interface jmri.SystemConnectionMemo
dispose, get, getActionFactory, getDefaultOutputInterval, getDisabled, getOutputInterval, getSystemPrefix, getUserName, isDirty, isRestartRequired, provides, register, setDisabled, setOutputInterval, setSystemPrefix, setUserName
-
-
-
-
Constructor Detail
-
DirectSystemConnectionMemo
public DirectSystemConnectionMemo()
-
DirectSystemConnectionMemo
public DirectSystemConnectionMemo(@Nonnull java.lang.String prefix, @Nonnull java.lang.String userName)
-
-
Method Detail
-
setTrafficController
public void setTrafficController(TrafficController s)
Set the traffic controller instance associated with this connection memo.- Parameters:
s- jmri.jmrix.direct.TrafficController object to use.
-
getTrafficController
public TrafficController getTrafficController()
Get the traffic controller instance associated with this connection memo.- Returns:
- traffic controller, provided if null.
-
setThrottleManager
public void setThrottleManager(ThrottleManager s)
Set the traffic controller instance associated with this connection memo.- Parameters:
s- jmri.jmrix.direct.ThrottleManager object to use.
-
getThrottleManager
public ThrottleManager getThrottleManager()
Get the ThrottleManager instance associated with this connection memo.- Returns:
- throttle manager, provided if null.
-
getActionModelResourceBundle
protected java.util.ResourceBundle getActionModelResourceBundle()
- Specified by:
getActionModelResourceBundlein classDefaultSystemConnectionMemo
-
getNamedBeanComparator
public <B extends NamedBean> java.util.Comparator<B> getNamedBeanComparator(java.lang.Class<B> type)
Description copied from class:DefaultSystemConnectionMemoGet the Comparator to be used for two NamedBeans. This is typically anNamedBeanComparator, but may be any Comparator that works for this connection type.- Specified by:
getNamedBeanComparatorin interfaceSystemConnectionMemo- Specified by:
getNamedBeanComparatorin classDefaultSystemConnectionMemo- Type Parameters:
B- the type of NamedBean- Parameters:
type- the class of NamedBean- Returns:
- the Comparator
-
configureManagers
public void configureManagers()
Description copied from interface:ConfiguringSystemConnectionMemoConfigure the common managers associated with the System Connection memo.- Specified by:
configureManagersin interfaceConfiguringSystemConnectionMemo
-
-