Package com.google.gwt.user.client.rpc.EnumsTestService

Examples of com.google.gwt.user.client.rpc.EnumsTestService.Complex


  /**
   * Test that complex enums with state and non-default constructors can be used
   * over RPC and that the client state does not change.
   */
  public void testComplexEnums() {
    Complex a = Complex.A;
    a.value = "client";

    delayTestFinishForRpc();
    getService().echo(Complex.A, new AsyncCallback<Complex>() {
      @Override
View Full Code Here

TOP

Related Classes of com.google.gwt.user.client.rpc.EnumsTestService.Complex

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.