|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface ParamDict
| Method Summary | |
|---|---|
boolean |
containsKey(java.lang.String paramName)
Checks whether for the given parameter name an entry is stored. |
boolean |
containsKey(java.lang.String paramName,
int loopNr)
Checks whether for the given parameter name and a specific loop nr. |
boolean |
containsParamArray(ParameterArray paramArray)
Checks whether the given object exists as a value in the dictionary. |
ParameterArray |
get(java.lang.String paramName)
|
ParameterArray |
get(java.lang.String paramName,
int loopNr)
|
boolean |
isLooped(java.lang.String paramName)
|
void |
put(java.lang.String paramName,
int loopNr,
ParameterArray theParameter)
|
void |
put(java.lang.String paramName,
ParameterArray theParameter)
Add a parameter to the dictionary. |
boolean |
removeParamArray(ParameterArray paramArray)
If the given object exists as a value in the dictionary, then this method removes it. |
void |
replace(java.lang.String paramName,
int loopNr,
ParameterArray theParameter)
replaces the parameter of referenced by a specific name for a specific loop nr |
| Method Detail |
|---|
void put(java.lang.String paramName,
ParameterArray theParameter)
throws M4Exception
paramName - the name of the parameter as found in table OP_PARAM_TtheParameter - a ParameterArray object representing a parameter to be stored.
M4Exception
void put(java.lang.String paramName,
int loopNr,
ParameterArray theParameter)
throws M4Exception
M4Exceptionput(String, Object), just with the loop nr as an additional parameter
void replace(java.lang.String paramName,
int loopNr,
ParameterArray theParameter)
throws M4Exception
paramName - the name of the key - the parameter nameloopNr - the loop nrtheParameter - the new parameter value
M4Exceptionboolean containsKey(java.lang.String paramName)
paramName - the name of the parameter
boolean containsKey(java.lang.String paramName,
int loopNr)
boolean containsParamArray(ParameterArray paramArray)
paramArray - the object to check for
true iff the object was foundboolean removeParamArray(ParameterArray paramArray)
paramArray - the object to remove
true iff the object could be removed
ParameterArray get(java.lang.String paramName)
throws M4Exception
paramName - the name of the parameter to be looked up
null otherwise.
in case of loopsteps use the method get(String, int) instead.
M4Exception
ParameterArray get(java.lang.String paramName,
int loopNr)
paramName - the name of the parameter to be looked uploopNr - the loop nr. for which to look up the parameter.
Note that the first loopNr is "0", no matter if we have a looped
parameter or not.
null otherwise.boolean isLooped(java.lang.String paramName)
paramName - name of a parameter
true iff the specified parameter is looped in the current step.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||