Uses of Interface
com.sdm.quasar.client.core.commands.CommandAdapter

Packages that use CommandAdapter
com.sdm.quasar.client.core.commands   
com.sdm.quasar.client.swing.commands.adapters   
 

Uses of CommandAdapter in com.sdm.quasar.client.core.commands
 

Classes in com.sdm.quasar.client.core.commands that implement CommandAdapter
 class AbstractCommandAdapter
          An abstract CommandAdapter implementation.
 

Uses of CommandAdapter in com.sdm.quasar.client.swing.commands.adapters
 

Classes in com.sdm.quasar.client.swing.commands.adapters that implement CommandAdapter
 class AbstractButtonCommandAdapter
          The AbstractButtonCommandAdapter is an bidirectional adapter between an AbstractButton and a Command: It trigges the Command, when the ActionEvent is fired and it sets the enabled state of the AbstractButton due to the executable BooleanState of the Command.
 class JComboBoxCommandAdapter
          The JComboBoxCommandAdapter is an bidirectional adapter between an JComboBox and a Command: It trigges the Command, when the ActionEvent is fired and it sets the state of the JComboBox due to the executable BooleanState of the Command.
 class JComponentCommandAdapter
          The JComponentCommandAdapter is an bidirectional adapter between a JComponent that fires action events and the command interface of the quasar client.
 class JTableDoubleClickCommandAdapter
          The JTableDoubleClickCommandAdapter is an adapter between a JTable and a Command: It trigges the Command, when a row is selected via double click.
 class JTreeSelectionCommandAdapter
          The JTreeSelectionCommandAdapter is an adapter between a JTree and a Command: It trigges the Command, when a TreeSelectionEvent is fired.
 class ListSelectionCommandAdapter
          The ListSelectionCommandAdapter is an adapter between a ListSelectionModeland a Command: It trigges the Command, when a ListSelectionEvent is fired.
 class WindowClosingCommandAdapter
          The WindowClosingCommandAdapter is an adapter between a Windowsand a Command: It trigges the Command, when a WindowEvent is fired signalling the closing of the window.