| org.mmbase.bridge.BridgeList
BridgeList | public interface BridgeList extends List<E>(Code) | | A list of nodes
author: Pierre van Rooden version: $Id: BridgeList.java,v 1.10 2008/02/16 22:13:53 nklasens Exp $< Parameters: E - > Type of elements since: MMBase-1.6 |
getProperty | public Object getProperty(Object key)(Code) | | Retrieves a property previously set for this list.
Use this to store and retrieve metadata on whow teh listw as created
(such as what sort-order was specified)
Parameters: key - the key of the property the property value |
setProperty | public void setProperty(Object key, Object value)(Code) | | Sets a property for this list.
Use this to store and retrieve metadata on whow teh listw as created
(such as what sort-order was specified)
Parameters: key - the key of the property Parameters: value - the property value |
sort | public void sort()(Code) | | Sorts this list according to a default sort order.
|
sort | public void sort(Comparator<? super E> comparator)(Code) | | Sorts this list according to a specified sort order
Parameters: comparator - the comparator defining the sort order |
|
|