Interface CasProcessorExecArgs
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
CasProcessorExecArgsImpl
public interface CasProcessorExecArgs extends java.io.Serializable
An object containing allCasProcessorExecArg
instances. It provides the means of adding new program arguments, retrieving them, and removing them.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(CasProcessorExecArg aArg)
Adds newCasProcessorExecArg
instance to the list.CasProcessorExecArg
get(int aIndex)
Returns anCasProcessorExecArg
instance located with provided index.CasProcessorExecArg[]
getAll()
Returns ALLCasProcessorExecArg
instances.void
remove(int aIndex)
RemovesCasProcessorExecArg
instance found in the list in a given position.
-
-
-
Method Detail
-
add
void add(CasProcessorExecArg aArg)
Adds newCasProcessorExecArg
instance to the list.- Parameters:
aArg
- - new argument
-
get
CasProcessorExecArg get(int aIndex) throws CpeDescriptorException
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.
-
-