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

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


      }

      @Override
      public void onSuccess(FieldEnumWrapper result) {
        assertNotNull("Was null", result);
        FieldEnum fieldEnum = result.getFieldEnum();
        /*
         * Don't want to do assertEquals(FieldEnum.X, fieldEnum) here,
         * since it will force an implicit upcast on FieldEnum -> Object,
         * which will bias the test.  We want to assert that the
         * EnumOrdinalizer properly prevents ordinalization of FieldEnum.
View Full Code Here

TOP

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

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.