summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/certsrv/template/ArgList.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/certsrv/template/ArgList.java')
-rw-r--r--pki/base/common/src/com/netscape/certsrv/template/ArgList.java18
1 files changed, 8 insertions, 10 deletions
diff --git a/pki/base/common/src/com/netscape/certsrv/template/ArgList.java b/pki/base/common/src/com/netscape/certsrv/template/ArgList.java
index 72288a73..4ea2fb48 100644
--- a/pki/base/common/src/com/netscape/certsrv/template/ArgList.java
+++ b/pki/base/common/src/com/netscape/certsrv/template/ArgList.java
@@ -20,11 +20,10 @@ package com.netscape.certsrv.template;
import java.util.Vector;
/**
- * This class represents a list of arguments
- * that will be returned to the end-user via
- * the template framework.
+ * This class represents a list of arguments that will be returned to the
+ * end-user via the template framework.
* <p>
- *
+ *
* @version $Revision$, $Date$
*/
public class ArgList implements IArgValue {
@@ -39,16 +38,16 @@ public class ArgList implements IArgValue {
/**
* Adds an argument to the list.
- *
+ *
* @param arg argument to be added
*/
public void add(IArgValue arg) {
mList.addElement(arg);
}
- /**
+ /**
* Returns the number of arguments in the list.
- *
+ *
* @return size of the list
*/
public int size() {
@@ -56,9 +55,8 @@ public class ArgList implements IArgValue {
}
/**
- * Returns the argument at the given position
- * Position starts from 0.
- *
+ * Returns the argument at the given position Position starts from 0.
+ *
* @param pos position
* @return argument
*/