GWT and java.io.Serializable
- by Ethan Leroy
Hello,
In my GWT app I have the following model class:
import com.google.gwt.user.client.rpc.IsSerializable;
public class TestEntity implements IsSerializable {
public String testString;
}
This class implements the GWT custom IsSerializable marker interface - which I really don't like, because I use my model classes not only for GWT. So I…