1 package org.neo.swarm.core.aop;
2
3 import org.neo.swarm.core.aop.silc.comp.MethodInterceptor;
4
5
6
7
8 /***
9 * @author damiang
10 */
11 public interface Aspect {
12
13 void advise(AspectComponent componentInstance);
14
15 MethodInterceptor getInterceptor();
16
17 void replaceInterceptor(MethodInterceptor interceptor);
18 }