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

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


   * Test that enums as fields in a wrapper class can be passed over RPC.
   */
  public void testFieldEnumWrapperClass() {
    delayTestFinishForRpc();

    FieldEnumWrapper wrapper = new FieldEnumWrapper();
    wrapper.setFieldEnum(FieldEnum.X);
    getService().echo(wrapper, new AsyncCallback<FieldEnumWrapper>() {
      @Override
      public void onFailure(Throwable caught) {
        rethrowException(caught);
      }
View Full Code Here

TOP

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

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.