Package com.netscape.certsrv.template
Class ArgList
- java.lang.Object
-
- com.netscape.certsrv.template.ArgList
-
-
Constructor Summary
Constructors Constructor Description ArgList()
Constructs a argument list object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(IArgValue arg)
Adds an argument to the list.IArgValue
get(int pos)
Returns the argument at the given position Position starts from 0.int
size()
Returns the number of arguments in the list.
-
-
-
Method Detail
-
add
public void add(IArgValue arg)
Adds an argument to the list.- Parameters:
arg
- argument to be added
-
size
public int size()
Returns the number of arguments in the list.- Returns:
- size of the list
-
get
public IArgValue get(int pos)
Returns the argument at the given position Position starts from 0.- Parameters:
pos
- position- Returns:
- argument
-
-