public interface IArrayOfResponseType
| Modifier and Type | Method and Description | 
|---|---|
| void | addResponse(int index, IResponseType vResponse)Method addResponse | 
| void | addResponse(IResponseType vResponse)Method addResponse | 
| void | clearResponse()Method clearResponse | 
| java.util.List | getResponse()Method getResponse | 
| IResponseType | getResponse(int index)Method getResponse | 
| int | getResponseCount()Method getResponseCount | 
| IResponseType | removeResponse(int index)Method removeResponse | 
| void | setResponse(int index, IResponseType vResponse)Method setResponse | 
| void | setResponse(java.util.List responseList)Method setResponseSets the value of 'response' by copying the given ArrayList. | 
void addResponse(IResponseType vResponse) throws java.lang.IndexOutOfBoundsException
vResponse -java.lang.IndexOutOfBoundsException
void addResponse(int index,
                 IResponseType vResponse)
          throws java.lang.IndexOutOfBoundsException
index -vResponse -java.lang.IndexOutOfBoundsExceptionvoid clearResponse()
IResponseType getResponse(int index) throws java.lang.IndexOutOfBoundsException
index -java.lang.IndexOutOfBoundsExceptionjava.util.List getResponse()
int getResponseCount()
IResponseType removeResponse(int index) throws java.lang.IndexOutOfBoundsException
index -java.lang.IndexOutOfBoundsException
void setResponse(int index,
                 IResponseType vResponse)
          throws java.lang.IndexOutOfBoundsException
index -vResponse -java.lang.IndexOutOfBoundsExceptionvoid setResponse(java.util.List responseList)
responseList - the Vector to copy.