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

Packages that use BooleanState
com.sdm.quasar.client.core.commands   
com.sdm.quasar.client.core.data.plugins   
com.sdm.quasar.client.core.data.plugins.impl   
com.sdm.quasar.client.core.server   
com.sdm.quasar.client.core.server.impl   
com.sdm.quasar.client.core.states   
com.sdm.quasar.client.showcase.swing.allinone.emplDetail   
com.sdm.quasar.client.swing.commands.adapters   
com.sdm.quasar.client.swing.states   
com.sdm.quasar.client.swing.states.adapters   
com.sdm.util.model.states   
 

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

Methods in com.sdm.quasar.client.core.commands that return BooleanState
 BooleanState Command.getEnabledBooleanState()
           
 BooleanState Command.getProcessingBooleanState()
           
 

Methods in com.sdm.quasar.client.core.commands with parameters of type BooleanState
 void RunnableCommandManager.registerCommand(java.lang.String commandId, java.lang.Runnable runnable, BooleanState enabledBooleanState)
          Registers a new command with the given id and parameters to this RunnableCommandManager.
 void RunnableCommandManager.setEnabledBooleanState(java.lang.String commandId, BooleanState enabledBooleanState)
          Sets the enabled BooleanState for the command with the given id.
 void GenericCommandManager.registerCommand(java.lang.String commandId, java.lang.Object target, java.lang.reflect.Method method, BooleanState enabledBooleanState)
          Registers a new command with the given id and parameters to this GenericCommandManager.
 void GenericCommandManager.registerCommand(java.lang.String commandId, java.lang.Object target, java.lang.Class targetClass, java.lang.String methodName, BooleanState enabledBooleanState)
          Registers a new command with the given id and parameters to this GenericCommandManager.
 void GenericCommandManager.registerCommand(java.lang.String name, java.lang.Object target, java.lang.String methodName, BooleanState enabledBooleanState)
          Registers a new command with the given id and parameters to this GenericCommandManager.
 

Uses of BooleanState in com.sdm.quasar.client.core.data.plugins
 

Methods in com.sdm.quasar.client.core.data.plugins that return BooleanState
 BooleanState ValueChangedPlugIn.getValueChangedState(java.lang.String key)
          Returns the state that is true if the value of the given node has changed (according to the comparator) from the time ValueChangedPlugIn.saveReferenceValues(String) was called last for the node.
 BooleanState ValueChangedPlugIn.getValuesChangedState(java.lang.String startKey)
          Returns the state that is true if any value in the subtree starting at the given node has changed (according to the comparator) from the time ValueChangedPlugIn.saveReferenceValues(String) was called last for the nodes.
 

Uses of BooleanState in com.sdm.quasar.client.core.data.plugins.impl
 

Methods in com.sdm.quasar.client.core.data.plugins.impl that return BooleanState
 BooleanState DefaultValueChangedPlugIn.getValueChangedState(java.lang.String key)
           
 BooleanState DefaultValueChangedPlugIn.getValuesChangedState(java.lang.String startKey)
           
 

Uses of BooleanState in com.sdm.quasar.client.core.server
 

Methods in com.sdm.quasar.client.core.server that return BooleanState
 BooleanState ServerAccessService.getServiceCallingBooleanState()
          Returns a BooleanState, that is true as long as a service - previously returned by ServerAccessService.getService(Class) - is beeing called.
 

Uses of BooleanState in com.sdm.quasar.client.core.server.impl
 

Methods in com.sdm.quasar.client.core.server.impl that return BooleanState
 BooleanState ServerProxy.getServiceCallingBooleanState()
           
 

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

Classes in com.sdm.quasar.client.core.states that implement BooleanState
 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 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 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 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.
 

Fields in com.sdm.quasar.client.core.states declared as BooleanState
static BooleanState ConstantBooleanState.TRUE_STATE
          A BooleanState, that is always true.
static BooleanState ConstantBooleanState.FALSE_STATE
          A BooleanState, that is always false.
 

Methods in com.sdm.quasar.client.core.states that return BooleanState
 BooleanState WrapperBooleanState.getState()
          Returns the source BooleanState.
protected  BooleanState WrapperBooleanState.getBooleanState()
           
 BooleanState NOTBooleanState.getState()
          Returns the source BooleanState.
 BooleanState BooleanStateAdapter.getBooleanState()
           
 BooleanState AbstractCombinedBooleanState.get(int index)
          Returns the BooleanState combining with the given index.
 BooleanState AbstractBooleanStateAdapter.getBooleanState()
           
 

Methods in com.sdm.quasar.client.core.states with parameters of type BooleanState
static XORBooleanState XORBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1)
          Creates a new XORBooleanState.
static XORBooleanState XORBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2)
          Creates a new XORBooleanState.
static XORBooleanState XORBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2, BooleanState state3, boolean sign3)
          Creates a new XORBooleanState.
static XORBooleanState XORBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2, BooleanState state3, boolean sign3, BooleanState state4, boolean sign4)
          Creates a new XORBooleanState.
static XORBooleanState XORBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2, BooleanState state3, boolean sign3, BooleanState state4, boolean sign4, BooleanState state5, boolean sign5)
          Creates a new XORBooleanState.
static XORBooleanState XORBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2, BooleanState state3, boolean sign3, BooleanState state4, boolean sign4, BooleanState state5, boolean sign5, BooleanState state6, boolean sign6)
          Creates a new XORBooleanState.
static XORBooleanState XORBooleanState.create(java.lang.String name, BooleanState state1)
          Creates a new XORBooleanState.
static XORBooleanState XORBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2)
          Creates a new XORBooleanState.
static XORBooleanState XORBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2, BooleanState state3)
          Creates a new XORBooleanState.
static XORBooleanState XORBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2, BooleanState state3, BooleanState state4)
          Creates a new XORBooleanState.
static XORBooleanState XORBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2, BooleanState state3, BooleanState state4, BooleanState state5)
          Creates a new XORBooleanState.
static XORBooleanState XORBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2, BooleanState state3, BooleanState state4, BooleanState state5, BooleanState state6)
          Creates a new XORBooleanState.
 void WrapperBooleanState.setWrappedBooleanState(BooleanState newWrappedBooleanState)
          Set a new wrapped state.
static ORBooleanState ORBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1)
          Creates a new ORBooleanState.
static ORBooleanState ORBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2)
          Creates a new ORBooleanState.
static ORBooleanState ORBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2, BooleanState state3, boolean sign3)
          Creates a new ORBooleanState.
static ORBooleanState ORBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2, BooleanState state3, boolean sign3, BooleanState state4, boolean sign4)
          Creates a new ORBooleanState.
static ORBooleanState ORBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2, BooleanState state3, boolean sign3, BooleanState state4, boolean sign4, BooleanState state5, boolean sign5)
          Creates a new ORBooleanState.
static ORBooleanState ORBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2, BooleanState state3, boolean sign3, BooleanState state4, boolean sign4, BooleanState state5, boolean sign5, BooleanState state6, boolean sign6)
          Creates a new ORBooleanState.
static ORBooleanState ORBooleanState.create(java.lang.String name, BooleanState state1)
          Creates a new ORBooleanState.
static ORBooleanState ORBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2)
          Creates a new ORBooleanState.
static ORBooleanState ORBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2, BooleanState state3)
          Creates a new ORBooleanState.
static ORBooleanState ORBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2, BooleanState state3, BooleanState state4)
          Creates a new ORBooleanState.
static ORBooleanState ORBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2, BooleanState state3, BooleanState state4, BooleanState state5)
          Creates a new ORBooleanState.
static ORBooleanState ORBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2, BooleanState state3, BooleanState state4, BooleanState state5, BooleanState state6)
          Creates a new ORBooleanState.
static NOTBooleanState NOTBooleanState.create(BooleanState state)
          Creates a new NOTBooleanState.
static NOTBooleanState NOTBooleanState.create(java.lang.String name, BooleanState state)
          Creates a new NOTBooleanState.
 void BooleanStateAdapter.setBooleanState(BooleanState state)
          Sets (or resets if state==null) the state this adapter acts on.
static ANDBooleanState ANDBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1)
          Creates a new ANDBooleanState.
static ANDBooleanState ANDBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2)
          Creates a new ANDBooleanState.
static ANDBooleanState ANDBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2, BooleanState state3, boolean sign3)
          Creates a new ANDBooleanState.
static ANDBooleanState ANDBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2, BooleanState state3, boolean sign3, BooleanState state4, boolean sign4)
          Creates a new ANDBooleanState.
static ANDBooleanState ANDBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2, BooleanState state3, boolean sign3, BooleanState state4, boolean sign4, BooleanState state5, boolean sign5)
          Creates a new ANDBooleanState.
static ANDBooleanState ANDBooleanState.create(java.lang.String name, BooleanState state1, boolean sign1, BooleanState state2, boolean sign2, BooleanState state3, boolean sign3, BooleanState state4, boolean sign4, BooleanState state5, boolean sign5, BooleanState state6, boolean sign6)
          Creates a new ANDBooleanState.
static ANDBooleanState ANDBooleanState.create(java.lang.String name, BooleanState state1)
          Creates a new ANDBooleanState.
static ANDBooleanState ANDBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2)
          Creates a new ANDBooleanState.
static ANDBooleanState ANDBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2, BooleanState state3)
          Creates a new ANDBooleanState.
static ANDBooleanState ANDBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2, BooleanState state3, BooleanState state4)
          Creates a new ANDBooleanState.
static ANDBooleanState ANDBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2, BooleanState state3, BooleanState state4, BooleanState state5)
          Creates a new ANDBooleanState.
static ANDBooleanState ANDBooleanState.create(java.lang.String name, BooleanState state1, BooleanState state2, BooleanState state3, BooleanState state4, BooleanState state5, BooleanState state6)
          Creates a new ANDBooleanState.
 void AbstractCombinedBooleanState.add(BooleanState booleanState, boolean sign)
          Adds the given BooleanState to this AbstractCombinedBooleanState.
 void AbstractCombinedBooleanState.remove(BooleanState booleanState)
          Removes the BooleanState from this AbstractCombinedBooleanState.
 void AbstractCombinedBooleanState.remove(BooleanState booleanState, boolean sign)
          Removes the BooleanState from this AbstractCombinedBooleanState.
 void AbstractBooleanStateAdapter.setBooleanState(BooleanState state)
           
 

Constructors in com.sdm.quasar.client.core.states with parameters of type BooleanState
XORBooleanState(java.lang.String name, BooleanState[] states, boolean[] signs)
          Creates a new XORBooleanState.
WrapperBooleanState(BooleanState state)
          Creates a new WrapperBooleanState.
WrapperBooleanState(java.lang.String name, BooleanState state)
          Creates a new WrapperBooleanState.
ORBooleanState(java.lang.String name, BooleanState[] states, boolean[] signs)
          Creates a new ORBooleanState.
NOTBooleanState(BooleanState state)
          Creates a new NOTBooleanState.
NOTBooleanState(java.lang.String name, BooleanState state)
          Creates a new NOTBooleanState.
ANDBooleanState(java.lang.String name, BooleanState[] states, boolean[] signs)
          Creates a new ANDBooleanState.
AbstractCombinedBooleanState(java.lang.String name, byte operation, BooleanState[] states, boolean[] signs)
          Creates a new AbstractCombinedBooleanState.
AbstractBooleanStateAdapter(BooleanState state)
          Creates a new AbstractBooleanStateAdapter.
AbstractBooleanStateAdapter(java.lang.String name, BooleanState state)
          Creates a new AbstractBooleanStateAdapter.
 

Uses of BooleanState in com.sdm.quasar.client.showcase.swing.allinone.emplDetail
 

Methods in com.sdm.quasar.client.showcase.swing.allinone.emplDetail that return BooleanState
 BooleanState EmplDetailDialog.getIsEditState()
           
 BooleanState EmplDetailDialog.getDateOfBirthValidState()
           
 BooleanState EmplDetailDialog.getEmplNumberValidState()
           
 BooleanState EmplDetailDialog.getFirstNameValidState()
           
 BooleanState EmplDetailDialog.getNameValidState()
           
 

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

Methods in com.sdm.quasar.client.swing.commands.adapters that return BooleanState
 BooleanState JComponentCommandAdapter.getEnabledBooleanState()
           
 BooleanState JComboBoxCommandAdapter.getEnabledBooleanState()
           
 BooleanState AbstractButtonCommandAdapter.getEnabledBooleanState()
           
 

Methods in com.sdm.quasar.client.swing.commands.adapters with parameters of type BooleanState
 void JComponentCommandAdapter.setEnabledBooleanState(BooleanState enabledState)
          Sets the BooleanState that controls the enabled state of th adapted JComponent.
 void JComboBoxCommandAdapter.setEnabledBooleanState(BooleanState enabledState)
          Sets the BooleanState that controls the enabled state of the adapted JComponent.
 void AbstractButtonCommandAdapter.setEnabledBooleanState(BooleanState enabledState)
          Sets the BooleanState that controls the enabled state of the adapted JComponent.
 

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

Classes in com.sdm.quasar.client.swing.states that implement BooleanState
 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 BooleanState in com.sdm.quasar.client.swing.states.adapters
 

Constructors in com.sdm.quasar.client.swing.states.adapters with parameters of type BooleanState
JComponentEnabledBooleanStateAdapter(BooleanState state)
          Creates a new AbstractBooleanStateAdapter.
JComponentEnabledBooleanStateAdapter(java.lang.String name, BooleanState state)
          Creates a new AbstractBooleanStateAdapter.
AbstractSwingBooleanStateAdapter(BooleanState state)
          Creates a new AbstractBooleanStateAdapter.
AbstractSwingBooleanStateAdapter(java.lang.String name, BooleanState state)
          Creates a new AbstractBooleanStateAdapter.
 

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

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