6.1.1 개념들 by ys
public interface Pointcut {
ClassFilter getClassFilter();
MethodMatcher getMethodMatcher();
}public interface ClassFilter {
boolean matches(Class clazz);
}Last updated
Was this helpful?
public interface Pointcut {
ClassFilter getClassFilter();
MethodMatcher getMethodMatcher();
}public interface ClassFilter {
boolean matches(Class clazz);
}Last updated
Was this helpful?
Was this helpful?
public interface MethodMatcher {
boolean matches(Method m, Class targetClass);
boolean isRuntime();
boolean matches(Method m, Class targetClass, Object[] args);
}