Uses of Interface
com.sdm.quasar.client.core.states.State

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

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

Subinterfaces of State in com.sdm.quasar.client.core.states
 interface BooleanState
          A boolean State interface.
 

Classes in com.sdm.quasar.client.core.states that implement State
 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 AbstractState
          A abstract uncomplete implementation of State which support listeners and adds a AbstractState.fireStateChanged() method to notify them.
 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 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.
 

Methods in com.sdm.quasar.client.core.states that return State
 State StateAcceptedBooleanState.getState()
          returns the currently observed state
 

Methods in com.sdm.quasar.client.core.states with parameters of type State
 void StateListener.stateChanged(State source)
          Called whenever the source state changed its value.
 void StateAcceptedBooleanState.setState(State state)
          sets a new State
 

Constructors in com.sdm.quasar.client.core.states with parameters of type State
StateAcceptedBooleanState(java.lang.String name, State sourceState, java.lang.Object compareValue)
          Creates a new StateAcceptedBooleanState.
StateAcceptedBooleanState(State sourceState, java.lang.Object compareValue)
          Creates a new StateAcceptedBooleanState.
StateAcceptedBooleanState(java.lang.String name, State sourceState, java.lang.Object compareValue, boolean inverse)
          Creates a new StateAcceptedBooleanState.
StateAcceptedBooleanState(State sourceState, java.lang.Object compareValue, boolean inverse)
          Creates a new StateAcceptedBooleanState.
StateAcceptedBooleanState(java.lang.String name, State sourceState, Acceptor acceptor)
          Creates a new StateAcceptedBooleanState.
StateAcceptedBooleanState(State sourceState, Acceptor acceptor)
          Creates a new StateAcceptedBooleanState.
 

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

Classes in com.sdm.quasar.client.swing.states that implement State
 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 State in com.sdm.util.model.states
 

Classes in com.sdm.util.model.states that implement State
 class ValueAcceptedBooleanState