Fixes a bunch of warnings about raw-type use and serialization.

cusax-fix
Lyubomir Marinov 17 years ago
parent dd5128cadd
commit ce5a25be06

@ -120,7 +120,7 @@ public ContactGroup getContactGroup(String groupName,
* @return a <tt>java.util.Iterator</tt> over the <tt>MetaContacts</tt> in
* this group.
*/
public Iterator getChildContacts();
public Iterator<MetaContact> getChildContacts();
/**
* Returns the number of <tt>MetaContact</tt>s that this group contains
@ -154,7 +154,7 @@ public ContactGroup getContactGroup(String groupName,
* <p>
* @return a <tt>java.util.Iterator</tt> containing all subgroups.
*/
public Iterator getSubgroups();
public Iterator<MetaContactGroup> getSubgroups();
/**
* Returns the number of subgroups that this <tt>MetaContactGroup</tt>

Loading…
Cancel
Save