/** @param index */
  public java.lang.String getValue(int index) throws java.lang.IndexOutOfBoundsException {
    // -- check bounds for index
    if ((index < 0) || (index > _valueList.size())) {
      throw new IndexOutOfBoundsException();
    }

    return (String) _valueList.elementAt(index);
  } // -- java.lang.String getValue(int)
 public java.lang.String[] getValue() {
   int size = _valueList.size();
   java.lang.String[] mArray = new java.lang.String[size];
   for (int index = 0; index < size; index++) {
     mArray[index] = (String) _valueList.elementAt(index);
   }
   return mArray;
 } // -- java.lang.String[] getValue()
Beispiel #3
0
 public Param[] getParam() {
   int size = _paramList.size();
   Param[] mArray = new Param[size];
   for (int index = 0; index < size; index++) {
     mArray[index] = (Param) _paramList.elementAt(index);
   }
   return mArray;
 } // -- Param[] getParam()
Beispiel #4
0
  /** @param index */
  public Param getParam(int index) throws java.lang.IndexOutOfBoundsException {
    // -- check bounds for index
    if ((index < 0) || (index > _paramList.size())) {
      throw new IndexOutOfBoundsException();
    }

    return (Param) _paramList.elementAt(index);
  } // -- Param getParam(int)
 /** @param index */
 public java.lang.String removeValue(int index) {
   Object obj = _valueList.elementAt(index);
   _valueList.removeElementAt(index);
   return (String) obj;
 } // -- java.lang.String removeValue(int)
Beispiel #6
0
 /** @param index */
 public Param removeParam(int index) {
   Object obj = _paramList.elementAt(index);
   _paramList.removeElementAt(index);
   return (Param) obj;
 } // -- Param removeParam(int)