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

Examples of com.google.gwt.user.client.rpc.InheritanceTestSetFactory.AnonymousClassInterface


   * Test that anonymous classes are not serializable.
   */
  public void testAnonymousClasses() {
    InheritanceTestServiceAsync service = getServiceAsync();
    delayTestFinishForRpc();
    service.echo(new AnonymousClassInterface() {
      @Override
      public void foo() {
        // purposely empty
      }
    }, new AsyncCallback<Object>() {
View Full Code Here


        finishTest();
      }
    }.schedule(RPC_TIMEOUT / 2);

    InheritanceTestServiceAsync service = getServiceAsync();
    service.echo(new AnonymousClassInterface() {
      @Override
      public void foo() {
        // purposely empty
      }
    }, new AsyncCallback<Object>() {
View Full Code Here

TOP

Related Classes of com.google.gwt.user.client.rpc.InheritanceTestSetFactory.AnonymousClassInterface

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.