/** * @param vParam * @param index */ public void setParam(Param vParam, int index) throws java.lang.IndexOutOfBoundsException { // -- check bounds for index if ((index < 0) || (index > _paramList.size())) { throw new IndexOutOfBoundsException(); } _paramList.setElementAt(vParam, index); } // -- void setParam(Param, int)
/** @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)
/** * @param index * @param vValue */ public void setValue(int index, java.lang.String vValue) throws java.lang.IndexOutOfBoundsException { // -- check bounds for index if ((index < 0) || (index > _valueList.size())) { throw new IndexOutOfBoundsException(); } _valueList.setElementAt(vValue, index); } // -- void setValue(int, java.lang.String)
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()
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()
/** @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)
public int getValueCount() { return _valueList.size(); } // -- int getValueCount()
public int getParamCount() { return _paramList.size(); } // -- int getParamCount()