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

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

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

Subclasses of AbstractBooleanState in com.sdm.quasar.client.core.states
 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 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 XORBooleanState
          A BooleanState that combines a set of other boolean states with the logical XOR operation.
 

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

Subclasses of AbstractBooleanState 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 AbstractBooleanState in com.sdm.util.model.states
 

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