kaos.kpat.models
Class ModelAttributeList

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractSet<E>
          extended by java.util.HashSet
              extended by kaos.kpat.models.ModelAttributeList
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, java.lang.Iterable, java.util.Collection, java.util.Set

public class ModelAttributeList
extends java.util.HashSet
implements java.io.Serializable

A group of related ModelAttribute objects. $Revision: 1.1.1.1 $

See Also:
Serialized Form

Constructor Summary
ModelAttributeList()
           
 
Method Summary
 boolean add(java.lang.Object o)
          Override the superclass's add(), to allow only the proper objects to be added.
 java.lang.Object clone()
          'Deep' implementation of clone() That is, if you create a clone, and then modify the original, the clone is NOT affected.
 java.lang.String toString()
          toString for pretty printing
 
Methods inherited from class java.util.HashSet
clear, contains, isEmpty, iterator, remove, size
 
Methods inherited from class java.util.AbstractSet
equals, hashCode, removeAll
 
Methods inherited from class java.util.AbstractCollection
addAll, containsAll, retainAll, toArray, toArray
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Set
addAll, containsAll, equals, hashCode, removeAll, retainAll, toArray, toArray
 

Constructor Detail

ModelAttributeList

public ModelAttributeList()
Method Detail

add

public boolean add(java.lang.Object o)
Override the superclass's add(), to allow only the proper objects to be added.

Specified by:
add in interface java.util.Collection
Specified by:
add in interface java.util.Set
Overrides:
add in class java.util.HashSet

clone

public java.lang.Object clone()
'Deep' implementation of clone() That is, if you create a clone, and then modify the original, the clone is NOT affected.

Overrides:
clone in class java.util.HashSet

toString

public java.lang.String toString()
toString for pretty printing

Overrides:
toString in class java.util.AbstractCollection