Package com.softwarementors.extjs.djn.test.helper

Examples of com.softwarementors.extjs.djn.test.helper.ComplexObject


    return "";
  }

  @DirectMethod
  public VeryComplexObject djn_test_serverReturningVeryComplexObject() {
    ComplexObject myComplexObject = new ComplexObject();
    myComplexObject.name = "MyPet";
    ComplexObject[] moreComplexObjects = new ComplexObject[2];
    moreComplexObjects[0] = null;
    moreComplexObjects[1] = new ComplexObject();
    moreComplexObjects[1].age = 5;
    VeryComplexObject result = new VeryComplexObject();
   
    result.ints = new Integer[] { Integer.valueOf(33), null };
    result.myComplexObject = myComplexObject;
View Full Code Here

TOP

Related Classes of com.softwarementors.extjs.djn.test.helper.ComplexObject

Copyright © 2018 www.massapicom. 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.