|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.util.AbstractCollection | +--java.util.AbstractList | +--java.util.ArrayList | +--planetj.exception.ValidationExceptionCollection
Insert the type's description here. Creation date: (4/5/2002 12:51:17 PM)
Constructor Summary | |
ValidationExceptionCollection()
ExceptionCollection constructor comment. |
|
ValidationExceptionCollection(int initialCapacity)
ExceptionCollection constructor comment. |
Method Summary | |
void |
add(int index,
Object element)
Inserts the specified element at the specified position in this list. |
boolean |
add(Object element)
Appends the specified element to the end of this list. |
boolean |
addAll(Collection c)
Appends all of the elements in the specified Collection to the end of this list, in the order that they are returned by the specified Collection's Iterator. |
boolean |
addAll(int index,
Collection c)
Inserts all of the elements in the specified Collection into this list, starting at the specified position. |
StringBuffer |
toDetailedStringBuffer()
Returns a StringBuffer of all the Detailed Validation errors for each Exception in this list Please use this method if possible for performance Creation date: (4/5/2002 1:16:04 PM) |
String |
toShortString()
Returns a String of all the Short Validation errors for each Exception in this list Please use toStringBuffer() if possible for performance Creation date: (4/5/2002 1:14:10 PM) |
StringBuffer |
toShortStringBuffer()
Returns a StringBuffer of all the Short Validation errors for each Exception in this list Please use this method if possible for performance Creation date: (4/5/2002 1:16:04 PM) |
String |
toString()
Returns a String of all the Detailed Validation errors for each Exception in this list Please use toStringBuffer() if possible for performance Creation date: (4/5/2002 1:14:10 PM) |
Methods inherited from class java.util.ArrayList |
clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, set, size, toArray, toArray, trimToSize |
Methods inherited from class java.util.AbstractList |
equals, hashCode, iterator, listIterator, listIterator, subList |
Methods inherited from class java.util.AbstractCollection |
containsAll, remove, removeAll, retainAll |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.List |
containsAll, equals, hashCode, iterator, listIterator, listIterator, remove, removeAll, retainAll, subList |
Constructor Detail |
public ValidationExceptionCollection()
public ValidationExceptionCollection(int initialCapacity)
initialCapacity
- intMethod Detail |
public void add(int index, Object element)
add
in interface List
add
in class ArrayList
index
- index at which the specified element is to be inserted.element
- element to be inserted.
IndexOutOfBoundsException
- if index is out of range
(index < 0 || index > size()).public boolean add(Object element)
add
in interface List
add
in class ArrayList
public boolean addAll(int index, Collection c)
addAll
in interface List
addAll
in class ArrayList
index
- index at which to insert first element
from the specified collection.c
- elements to be inserted into this list.
IndexOutOfBoundsException
- if index out of range (index
< 0 || index > size()).public boolean addAll(Collection c)
addAll
in interface List
addAll
in class ArrayList
c
- elements to be inserted into this list.
IndexOutOfBoundsException
- if index out of range (index
< 0 || index > size()).public StringBuffer toDetailedStringBuffer()
public String toShortString()
public StringBuffer toShortStringBuffer()
public String toString()
toString
in class AbstractCollection
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |