| java.util.ArrayList org.sakaiproject.metaobj.shared.model.ElementListBean
ElementListBean | public class ElementListBean extends ArrayList implements LimitedList(Code) | | Created by IntelliJ IDEA.
User: John Ellis
Date: Mar 11, 2004
Time: 3:55:06 PM
To change this template use File | Settings | File Templates.
|
Field Summary | |
final protected Log | logger |
Method Summary | |
public boolean | add(Object o) Appends the specified element to the end of this list.
Parameters: o - element to be appended to this list. | public void | add(int index, Object element) Inserts the specified element at the specified position in this
list. | public boolean | addAll(Collection collection) | public void | clear() | public ElementBean | createBlank() | public Object | get(int index) | public int | getLowerLimit() | public int | getUpperLimit() | public Object | remove(int index) Removes the element at the specified position in this list.
Shifts any subsequent elements to the left (subtracts one from their
indices).
Parameters: index - the index of the element to removed. |
logger | final protected Log logger(Code) | | |
ElementListBean | public ElementListBean()(Code) | | |
ElementListBean | public ElementListBean(Element parentElement, SchemaNode schema, boolean deferValidation)(Code) | | |
ElementListBean | public ElementListBean(Element parentElement, List elements, SchemaNode schema, boolean deferValidation)(Code) | | |
add | public boolean add(Object o)(Code) | | Appends the specified element to the end of this list.
Parameters: o - element to be appended to this list. true (as per the general contract of Collection.add). |
add | public void add(int index, Object element)(Code) | | Inserts the specified element at the specified position in this
list. Shifts the element currently at that position (if any) and
any subsequent elements to the right (adds one to their indices).
Parameters: index - index at which the specified element is to be inserted. Parameters: element - element to be inserted. throws: IndexOutOfBoundsException - if index is out of range(index < 0 || index > size()). |
clear | public void clear()(Code) | | |
getLowerLimit | public int getLowerLimit()(Code) | | |
getUpperLimit | public int getUpperLimit()(Code) | | |
remove | public Object remove(int index)(Code) | | Removes the element at the specified position in this list.
Shifts any subsequent elements to the left (subtracts one from their
indices).
Parameters: index - the index of the element to removed. the element that was removed from the list. throws: IndexOutOfBoundsException - if index out of range (index< 0 || index >= size()). |
|
|