initWithFormat |
- initWithFormat:parameterEvaluater:
- initWithFormat: (NSString *) aFormatString parameterEvaluater: (id <ECParameterEvaluater>) aParameterEvaluater;
aFormatString
- string containing variables which have to be substituted. It is important that the hand-off format string does notcontain any formatting characters (see NSString). It may only contain parameters!
aParameterEvaluator
- used to bind the variabes. The binding will not be performed with this call.
initWithFormat:parameterEvaluater: |
- initWithFormat
- initWithFormat: (NSString *) aFormatString parameterEvaluater: (id <ECParameterEvaluater>) aParameterEvaluater;
aFormatString
- string containing variables which have to be substituted. It is important that the hand-off format string does notcontain any formatting characters (see NSString). It may only contain parameters!
aParameterEvaluator
- used to bind the variabes. The binding will not be performed with this call.
parseFormatString: |
internal method used to parse the specified format string
- parseFormatString: (NSString *) aFormatString;
aFormatString
- format string given by method -init
modifies the internal variable
substituteVariables |
Using the current variable binding this method substitutes all variables by their assigned values.
- (NSString *) substituteVariables;
The binding of the variables, that is the evaluation on behalf of the ECParameterEvaluater instance is done when calling this method. Up to this time variables may be changed etc. But when calling this method all bindings must have been done so far.
(Last Updated August 27, 2006)