Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/ghettojedi/aop/aspect/AdvisableInterceptor.java


1   package com.ghettojedi.aop.aspect;
2   
3   
4   public class AdvisableInterceptor implements Interceptor {
5       public Object invoke(Invocation invocation) throws Throwable {
6           return invocation.proceed();
7       }
8   }