Interface CasProcessorExecArgs
- All Superinterfaces:
Serializable
An object containing all
CasProcessorExecArg
instances. It provides the means of adding new program arguments, retrieving them, and removing
them.-
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(CasProcessorExecArg aArg) Adds newCasProcessorExecArg
instance to the list.get
(int aIndex) Returns anCasProcessorExecArg
instance located with provided index.getAll()
Returns ALLCasProcessorExecArg
instances.void
remove
(int aIndex) RemovesCasProcessorExecArg
instance found in the list in a given position.
-
Method Details
-
add
Adds newCasProcessorExecArg
instance to the list.- Parameters:
aArg
- - new argument
-
get
Returns anCasProcessorExecArg
instance located with provided index.- Parameters:
aIndex
- - position of argument in the list- Returns:
- -
CasProcessorExecArg
instance - Throws:
CpeDescriptorException
- tbd
-
getAll
CasProcessorExecArg[] getAll()Returns ALLCasProcessorExecArg
instances.- Returns:
- array of
CasProcessorExecArg
-
remove
void remove(int aIndex) RemovesCasProcessorExecArg
instance found in the list in a given position.- Parameters:
aIndex
- - position of argument to remove.
-