Package jfun.util

Examples of jfun.util.SerializableMethod


  private final SerializableMethod mtd;
  public void invoke(Object self, Object[] args) throws Throwable {
    invokeMethod(self, mtd.getMethod(), args);
  }
  MethodProcedure(Method mtd) {
    this.mtd = new SerializableMethod(mtd);
  }
View Full Code Here


  public boolean isConcrete(){
    return false;
  }
  MethodFunction(final Object obj, final java.lang.reflect.Method mtd) {
    this.obj = obj;
    this.mtd = new SerializableMethod(mtd);
  }
View Full Code Here

    return false;
  }
  FloatingMethodFunction(final Class type,
      final java.lang.reflect.Method mtd) {
    this.type = type;
    this.mtd = new SerializableMethod(mtd);
  }
View Full Code Here

  }
  public Class getParameterType() {
    return param_type;
  }
  Method1(Method mtd, Class param_type) {
    this.mtd = new SerializableMethod(mtd);
    this.param_type = param_type;
  }
View Full Code Here

TOP

Related Classes of jfun.util.SerializableMethod

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.