evaluateParameters: |
Used to bind variables to a specific value.
- (NSDictionary *) evaluateParameters: (NSArray *) parameters;
This method is called when constructing strings of a ECParameterString. The evaluator has to return a dictionary which maps a parameter to a corresponding string
parameterValues |
- (NSDictionary *) parameterValues;
removeAllVariables |
removes all variables
- removeAllVariables;
setParameterValues: |
used to hand-off all parameters. The previously set of varaible values is being deleted with this call.
- setParameterValues: (NSDictionary *) dictionary;
setValue |
sets/overwrites a value for a variable
See Also:
- setValue:forVariable:
- setValue: (NSString *) aValue forVariable: (NSString *) aVariable;
setValue:forVariable: |
sets/overwrites a value for a variable
See Also:
- setValue
- setValue: (NSString *) aValue forVariable: (NSString *) aVariable;
(Last Updated November 08, 2007)