planetj.property
Class PropertyGroupList

java.lang.Object
  |
  +--java.util.AbstractCollection
        |
        +--java.util.AbstractList
              |
              +--java.util.ArrayList
                    |
                    +--planetj.property.PropertyGroupList
All Implemented Interfaces:
Cloneable, Collection, List, RandomAccess, Serializable

public class PropertyGroupList
extends ArrayList

A List containing PropertyGroup objects

See Also:
Serialized Form

Constructor Summary
PropertyGroupList()
          PropertyGroupList constructor comment.
PropertyGroupList(Collection c)
          PropertyGroupList constructor comment.
PropertyGroupList(int initialCapacity)
          PropertyGroupList constructor comment.
 
Method Summary
 boolean add(Object o)
          Adds a PropertyGroup to this List
 boolean add(PropertyGroup pPG)
          Adds a PropertyGroup to this List
 PropertyGroup getPropertyGroup(int i)
          Gets the PropertyGroup object at the specified index
 List getPropertyGroups(String pName)
          Gets a List containing only PropertyGroups with the specified name.
 String toString()
           
 
Methods inherited from class java.util.ArrayList
add, addAll, addAll, 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

PropertyGroupList

public PropertyGroupList()
PropertyGroupList constructor comment.


PropertyGroupList

public PropertyGroupList(int initialCapacity)
PropertyGroupList constructor comment.

Parameters:
initialCapacity - int

PropertyGroupList

public PropertyGroupList(Collection c)
PropertyGroupList constructor comment.

Parameters:
c - java.util.Collection
Method Detail

add

public boolean add(Object o)
Adds a PropertyGroup to this List

Specified by:
add in interface List
Overrides:
add in class ArrayList

add

public boolean add(PropertyGroup pPG)
Adds a PropertyGroup to this List


getPropertyGroup

public PropertyGroup getPropertyGroup(int i)
Gets the PropertyGroup object at the specified index


getPropertyGroups

public List getPropertyGroups(String pName)
Gets a List containing only PropertyGroups with the specified name. Changes to the returned List will affect this PropertyGroupList and vice versa.


toString

public String toString()
Overrides:
toString in class AbstractCollection