Package net.sourceforge.javautil.groovy.builder.GroovyBuilderInterceptor

Examples of net.sourceforge.javautil.groovy.builder.GroovyBuilderInterceptor.InterceptorContext


   * It does NOT invoke any methods, even if a meta method was found for the call.
   */
  public Object invokeMethod(String name, Object args) {
    if (!this.isStackInitialized()) this.initializeStack();
    Object[] arguments = InvokerHelper.asArray(args);
    return interceptor.handleInvokedMethod(new InterceptorContext( this, this.getStack(), name, arguments ));
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.javautil.groovy.builder.GroovyBuilderInterceptor.InterceptorContext

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.