I have a simple serializable object in my gwt client

public interface MyTabInfo extends Serializable {
   public TreeSet<String> getName();
}

public class MyTabInfoImpl implements MyTabInfo {

     NameComparator comparator = new NameComparator();
     private TreeSet<String> names = new TreeSet<String>(comparator)



}

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to