Uses of Class
com.sdm.quasar.client.core.states.AbstractState

Packages that use AbstractState
com.sdm.quasar.client.core.states   
com.sdm.quasar.client.swing.states   
com.sdm.util.model.states   
 

Uses of AbstractState in com.sdm.quasar.client.core.states
 

Subclasses of AbstractState in com.sdm.quasar.client.core.states
 class AbstractBooleanState
          An abstract BooleanState implementation, that manages the enabled state as boolean, that subclasses can directly set.
 class AbstractCombinedBooleanState
          Abstract base class for boolean states that perform boolean operations on a set of other boolean states.
 class AcceptorBooleanState
          A BooleanState, that adapts an object to the own boolean state value (see BooleanState.isValueTrue()) using an Acceptor: The BooleanState is true, if the Acceptor accepts the object.
 class ANDBooleanState
          A BooleanState that combines a set of other boolean states with the logical AND operation.
 class ConstantBooleanState
          ConstantBooleanState defines the two constant boolean state instances ConstantBooleanState.TRUE_STATE and ConstantBooleanState.FALSE_STATE.
 class MutableBooleanState
          A very simple implementation of BooleanState.
 class MutableState
           
 class NOTBooleanState
          A BooleanState, that negates it's source state.
 class ORBooleanState
          A BooleanState that combines a set of other boolean states with the logical OR operation.
 class StateAcceptedBooleanState
          A BooleanState, that adapts the State value (see State.getValue() to the own boolean state value (see BooleanState.isValueTrue()) using an Acceptor: The BooleanState is true, if the Acceptor accepts the State value.
 class ThresholdCounterBooleanState
          A BooleanState implementation that is true, as long as the managed counter is at least as big as the treshold set.
 class WrapperBooleanState
          A BooleanState, that wrappes an other BooleanState: This BooleanState refelcts the state of the wrapped BooleanState.
 class XORBooleanState
          A BooleanState that combines a set of other boolean states with the logical XOR operation.
 

Uses of AbstractState in com.sdm.quasar.client.swing.states
 

Subclasses of AbstractState in com.sdm.quasar.client.swing.states
 class ActionEnabledBooleanState
          A BooleanState representing the enabled/disabled state of an Action.
 class ButtonModelSelectedBooleanState
          A BooleanState representing the selection state of an ButtonModel.
 class DocumentTextAcceptedBooleanState
          The BooleanState is true if the text of the Document is accepted by a given Acceptor.
 class JComponentEnabledBooleanState
          A BooleanState representing the enabled/disabled state of a JComponent.
 class ListModelSelectedBooleanState
          A BooleanState representing the selection/deselection state of a ListSelectionModel.
 class TreeModelSelectedBooleanState
          A BooleanState representing the selection/deselection state of a TreeSelectionModel.
 

Uses of AbstractState in com.sdm.util.model.states
 

Subclasses of AbstractState in com.sdm.util.model.states
 class ValueAcceptedBooleanState