Package jmri.jmrix.loconet.swing
Class LnNamedPaneAction
- java.lang.Object
-
- javax.swing.AbstractAction
-
- jmri.util.swing.JmriAbstractAction
-
- jmri.util.swing.JmriNamedPaneAction
-
- jmri.jmrix.loconet.swing.LnNamedPaneAction
-
- All Implemented Interfaces:
java.awt.event.ActionListener
,java.io.Serializable
,java.lang.Cloneable
,java.util.EventListener
,javax.swing.Action
,SystemConnectionAction<LocoNetSystemConnectionMemo>
- Direct Known Subclasses:
ClockMonPaneAction
,Dcs210PlusUsbModeSelectPane.Default
,Dcs240PlusUsbModeSelectPane.Default
,Dcs240UsbModeSelectPane.Default
,Dcs52UsbModeSelectPane.Default
,DuplexGroupInfoPanel.Default
,LncvProgAction
,LocoMonPaneAction
,LocoStatsPanelAction
,Pr3SelectPaneAction
,Pr4SelectPane.Default
,SlotMonPaneAction
public class LnNamedPaneAction extends JmriNamedPaneAction implements SystemConnectionAction<LocoNetSystemConnectionMemo>
Action to create and load a JmriPanel from just its name.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description (package private) LocoNetSystemConnectionMemo
memo
-
Fields inherited from class jmri.util.swing.JmriNamedPaneAction
paneClass
-
Fields inherited from class jmri.util.swing.JmriAbstractAction
context, hint, wi
-
-
Constructor Summary
Constructors Constructor Description LnNamedPaneAction(java.lang.String s, javax.swing.Icon i, WindowInterface wi, java.lang.String paneClass, LocoNetSystemConnectionMemo memo)
Enhanced constructor for placing the pane in various GUIs.LnNamedPaneAction(java.lang.String s, WindowInterface wi, java.lang.String paneClass, LocoNetSystemConnectionMemo memo)
Enhanced constructor for placing the pane in various GUIs.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LocoNetSystemConnectionMemo
getSystemConnectionMemo()
Get theSystemConnectionMemo
this action is bound to.java.util.Set<java.lang.Class<? extends SystemConnectionMemo>>
getSystemConnectionMemoClasses()
Get a list ofSystemConnectionMemo
subclasses that the implementing class accepts.JmriPanel
makePanel()
Invoked as part of the action being invoked, e.g. when button pressed or menu item selected, this runs the panel through the initial part of its life cycle and installs in the given window interface.void
setSystemConnectionMemo(LocoNetSystemConnectionMemo memo)
Set theSystemConnectionMemo
this action is bound to.-
Methods inherited from class jmri.util.swing.JmriAbstractAction
actionPerformed, dispose, setContext, setHint, setName, setParameter, setParameter, setWindowInterface, toString
-
Methods inherited from class javax.swing.AbstractAction
addPropertyChangeListener, clone, firePropertyChange, getKeys, getPropertyChangeListeners, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled
-
-
-
-
Constructor Detail
-
LnNamedPaneAction
public LnNamedPaneAction(java.lang.String s, WindowInterface wi, java.lang.String paneClass, LocoNetSystemConnectionMemo memo)
Enhanced constructor for placing the pane in various GUIs.- Parameters:
s
- Human-readable panel name for display by the actionwi
- Window into which to install the new panel. If you want it to be put into a existing one, provide a reference. To create a new window containing just this pane, use "new jmri.util.swing.sdi.JmriJFrameInterface()"paneClass
- Name of the panel's class, which must be a subclass of JmriPanel. That's not checked at compile time or when the constructor runs, but must be true for the action to be invoked successfully.memo
-LocoNetSystemConnectionMemo
to be used by this object
-
LnNamedPaneAction
public LnNamedPaneAction(java.lang.String s, javax.swing.Icon i, WindowInterface wi, java.lang.String paneClass, LocoNetSystemConnectionMemo memo)
Enhanced constructor for placing the pane in various GUIs.- Parameters:
s
- Human-readable panel name for display by the actioni
- Icon for display by the actionwi
- Window into which to install the new panel. If you want it to be put into a existing one, provide a reference. To create a new window containing just this pane, use "new jmri.util.swing.sdi.JmriJFrameInterface()"paneClass
- Name of the panel's class, which must be a subclass of JmriPanel. That's not checked at compile time or when the constructor runs, but must be true for the action to be invoked successfully.memo
-LocoNetSystemConnectionMemo
to be used by this object
-
-
Method Detail
-
makePanel
public JmriPanel makePanel()
Description copied from class:JmriNamedPaneAction
Invoked as part of the action being invoked, e.g. when button pressed or menu item selected, this runs the panel through the initial part of its life cycle and installs in the given window interface.If different or additional initialization is needed, inherit from this class and override this method to do it.
- Overrides:
makePanel
in classJmriNamedPaneAction
-
getSystemConnectionMemo
public LocoNetSystemConnectionMemo getSystemConnectionMemo()
Description copied from interface:SystemConnectionAction
Get theSystemConnectionMemo
this action is bound to.- Specified by:
getSystemConnectionMemo
in interfaceSystemConnectionAction<LocoNetSystemConnectionMemo>
- Returns:
- the SystemConnectionMemo or null if not bound.
-
setSystemConnectionMemo
public void setSystemConnectionMemo(LocoNetSystemConnectionMemo memo) throws java.lang.IllegalArgumentException
Description copied from interface:SystemConnectionAction
Set theSystemConnectionMemo
this action is bound to.Implementing classes may throw an IllegalArgumentException if the implementing class requires a specific subclass of SystemConnectionMemo.
- Specified by:
setSystemConnectionMemo
in interfaceSystemConnectionAction<LocoNetSystemConnectionMemo>
- Parameters:
memo
- the SystemConnectionMemo- Throws:
java.lang.IllegalArgumentException
- if the SystemConnectionMemo is invalid
-
getSystemConnectionMemoClasses
public java.util.Set<java.lang.Class<? extends SystemConnectionMemo>> getSystemConnectionMemoClasses()
Description copied from interface:SystemConnectionAction
Get a list ofSystemConnectionMemo
subclasses that the implementing class accepts.If the implementing class is a subclass of a class that does accept SystemConnectionMemos, but the implementing class does not accept any, return an empty array instead of null.
- Specified by:
getSystemConnectionMemoClasses
in interfaceSystemConnectionAction<LocoNetSystemConnectionMemo>
- Returns:
- Set of SystemConnectionMemo subclasses or empty array.
-
-