Interface CasProcessorExecArgs
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
CasProcessorExecArgsImpl
public interface CasProcessorExecArgs extends java.io.SerializableAn object containing allCasProcessorExecArginstances. 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 voidadd(CasProcessorExecArg aArg)Adds newCasProcessorExecArginstance to the list.CasProcessorExecArgget(int aIndex)Returns anCasProcessorExecArginstance located with provided index.CasProcessorExecArg[]getAll()Returns ALLCasProcessorExecArginstances.voidremove(int aIndex)RemovesCasProcessorExecArginstance found in the list in a given position.
-
-
-
Method Detail
-
add
void add(CasProcessorExecArg aArg)
Adds newCasProcessorExecArginstance to the list.- Parameters:
aArg- - new argument
-
get
CasProcessorExecArg get(int aIndex) throws CpeDescriptorException
Returns anCasProcessorExecArginstance located with provided index.- Parameters:
aIndex- - position of argument in the list- Returns:
- -
CasProcessorExecArginstance - Throws:
CpeDescriptorException- tbd
-
getAll
CasProcessorExecArg[] getAll()
Returns ALLCasProcessorExecArginstances.- Returns:
- array of
CasProcessorExecArg
-
remove
void remove(int aIndex)
RemovesCasProcessorExecArginstance found in the list in a given position.- Parameters:
aIndex- - position of argument to remove.
-
-