List<Method> aops = this.getAopMethod(mirror);
List<InterceptorPair> ipList = new ArrayList<InterceptorPair>();
if (aops.size() < 1)
return ipList;
for (Method m : aops) {
MethodMatcher mm = new SimpleMethodMatcher(m);
for (String nm : m.getAnnotation(Aop.class).value())
ipList.add(new InterceptorPair(ioc.get(MethodInterceptor.class, nm), mm));
}
return ipList;
}