Uses of Interface
com.sdm.quasar.client.core.data.structure.ComputationValueAccess

Packages that use ComputationValueAccess
com.sdm.quasar.client.core.data.structure   
 

Uses of ComputationValueAccess in com.sdm.quasar.client.core.data.structure
 

Methods in com.sdm.quasar.client.core.data.structure with parameters of type ComputationValueAccess
 java.lang.Object ContextNodeComputation.computeValue(ComputationValueAccess sourceValuesAccess, Context context)
          Performs the computation with an context. Takes the current index value from the first source while using the given context and adds the index value to the context for accessing the second source (the IndexedNode).
 void ContextNodeComputation.reverseValueComputation(java.lang.Object targetValue, ComputationValueAccess sourceValuesAccess, Context context)
          Perform a reverse computation computes the correct source values with respect to the target value with a context. The resulting new source values must be set using the ComputationValueAccess. Takes the current index value from the first source and uses it to build a Context for accessing the second source (the IndexedNode).
 java.util.Set ContextNodeComputation.computeIndexSet(ComputationValueAccess sourceValuesAccess, Context context)
           
 java.lang.Object Computation.computeValue(ComputationValueAccess sourceValuesAccess, Context context)
          Performs the computation with an context.
 java.util.Set Computation.computeIndexSet(ComputationValueAccess sourceValuesAccess, Context context)
          Performs the computation of a Set of the index values.
 void Computation.reverseValueComputation(java.lang.Object targetValue, ComputationValueAccess sourceValuesAccess, Context context)
          Perform a reverse computation computes the correct source values with respect to the target value with a context.
 java.lang.Object AbstractSimpleComputation.computeValue(ComputationValueAccess sourceValuesAccess, Context context)
          Performs the computation with an context. This implementation retrieves all source values using #getValues(ComputationValueAccess) and passes them on to AbstractSimpleComputation.computeFromValues(Object[]).
 void AbstractSimpleComputation.reverseValueComputation(java.lang.Object targetValue, ComputationValueAccess sourceValuesAccess, Context context)
          Perform a reverse computation computes the correct source values with respect to the target value with a context. The resulting new source values must be set using the ComputationValueAccess. This implementation retrieves all source values using #getValues(ComputationValueAccess) and passes them to AbstractSimpleComputation.reverseComputationToValues(Object, Object[]).
 java.util.Set AbstractSimpleComputation.computeIndexSet(ComputationValueAccess sourceValuesAccess, Context context)