Package org.jibeframework.core.app.method

Examples of org.jibeframework.core.app.method.MethodHolder.invoke()


    return holders.get(annotation).containsKey(id);
  }

  public Object invoke(Class<? extends Annotation> annotationClass, String methodId, Object... args) {
    MethodHolder holder = resolveAnnotatedMethodHolder(annotationClass, methodId, args);
    Object retValue = holder.invoke();
    return retValue;
  }

  public Object invoke(String value, Object... args) {
    MethodHolder holder = resolveHolder(value, args);
View Full Code Here


    return retValue;
  }

  public Object invoke(String value, Object... args) {
    MethodHolder holder = resolveHolder(value, args);
    Object retValue = holder.invoke();
    return retValue;
  }

  public Collection<String> getAnnotatedMethodNames(Class<? extends Annotation> annotationClass) {
    return holders.get(annotationClass).keySet();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.