Lynkeos
|
This protocol is implemented by the classes which store and provide parameters. More...
#import <LynkeosProcessing.h>
Instance Methods | |
(id< LynkeosProcessingParameter >) | - getProcessingParameterWithRef:forProcessing: |
Returns the required processing parameter. More... | |
(id< LynkeosProcessingParameter >) | - getProcessingParameterWithRef:forProcessing:goUp: |
Returns the required processing parameter. More... | |
(void) | - setProcessingParameter:withRef:forProcessing: |
Updates the required processing parameter. More... | |
This protocol is implemented by the classes which store and provide parameters.
- (id <LynkeosProcessingParameter>) getProcessingParameterWithRef: | (NSString *) | ref | |
forProcessing: | (NSString *) | processing | |
Returns the required processing parameter.
The expected behavior is that items being stored in hierachical trees, if the item cannot be found in an item, the item itself tries to retrieve it from its container item.
ref | A string identifying this parameter in its class. |
processing | A string identifying the owner of this parameter. nil is valid, if the parameter is of general scope. |
Referenced by MyImageAnalyzerView::autoSelectAction:.
- (id <LynkeosProcessingParameter>) getProcessingParameterWithRef: | (NSString *) | ref | |
forProcessing: | (NSString *) | processing | |
goUp: | (BOOL) | goUp | |
Returns the required processing parameter.
ref | A string identifying this parameter in its class. |
processing | A string identifying the owner of this parameter. nil is valid, if the parameter is of general scope. |
goUp | Whether to look for the parameter up in the hierarchy |
- (void) setProcessingParameter: | (id< LynkeosProcessingParameter >) | parameter | |
withRef: | (NSString *) | ref | |
forProcessing: | (NSString *) | processing | |
Updates the required processing parameter.
parameter | The new parameter value |
ref | A string identifying this parameter in its class. |
processing | A string identifying the owner of this parameter. nil is valid, if the parameter is of general scope. |
Referenced by MyChromaticAlignerView::automaticOffsets:, MyChromaticAlignerView::changeOffset:, and ProcessStackManager::getParameterForItem:andParam:.