Examples of MyChildObject


Examples of com.googlecode.gwt.test.client.MyChildObject

   public MyObject update(MyObject object) {
      object.setMyField("updated field by server side code");
      object.setMyTransientField("this will not be serialized");

      MyChildObject childObject = new MyChildObject("this is a child !");
      childObject.setMyChildTransientField("this will not be serialized too");
      childObject.setMyField("the field inherited from the parent has been updated !");
      childObject.setMyTransientField("this field is not expected to be serialized too");

      object.getMyChildObjects().add(childObject);

      return object;
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.