Package rocket.generator.rebind.visitor

Examples of rocket.generator.rebind.visitor.AllMethodsVisitor


    this.getGeneratorContext().info("Implementing async service interface methods");

    final Type asyncServiceInterface = this.getAsyncServiceInterface(serviceInterface);

    final AllMethodsVisitor publicMethodFinder = new AllMethodsVisitor() {
      protected boolean visit(final Method method) {
        RpcClientGenerator.this.implementPublicMethod(method, serviceInterface, asyncServiceInterface, client);
        return false;
      }

      protected boolean skipJavaLangObjectMethods() {
        return true;
      }
    };
    publicMethodFinder.start(serviceInterface);
  }
View Full Code Here

TOP

Related Classes of rocket.generator.rebind.visitor.AllMethodsVisitor

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.