@Override public boolean matches(Method method, Class<?> targetClass, Object[] args) { ++this.evaluations; ControlFlow cflow = ControlFlowFactory.createControlFlow(); return (this.methodName != null) ? cflow.under(this.clazz, this.methodName) : cflow.under(this.clazz); }
@Override public boolean matches(Method method, Class<?> targetClass, Object... args) { this.evaluations++; ControlFlow cflow = ControlFlowFactory.createControlFlow(); return (this.methodName != null ? cflow.under(this.clazz, this.methodName) : cflow.under(this.clazz)); }
public boolean matches(Method method, Class targetClass, Object[] args) { ++this.evaluations; ControlFlow cflow = ControlFlowFactory.createControlFlow(); return (this.methodName != null) ? cflow.under(this.clazz, this.methodName) : cflow.under(this.clazz); }