KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ch > ethz > prose > jvmai > jikesrvm > advice_weaver > LocalAdviceAspectManager


1 package ch.ethz.prose.jvmai.jikesrvm.advice_weaver;
2
3 import ch.ethz.jvmai.JVMAspectInterface;
4 import ch.ethz.prose.LocalAspectManager;
5
6 /**
7  * An aspect manager that uses advice weaving.
8  *
9  * @author Johann Gyger
10  */

11 public class LocalAdviceAspectManager extends LocalAspectManager {
12
13   public LocalAdviceAspectManager(boolean isConnected, JVMAspectInterface ai) {
14     super(isConnected, ai);
15   }
16
17   protected void createJoinPointManager(boolean isConnected, JVMAspectInterface ai) {
18     jpm = new AdviceJoinPointManager(isConnected, ai, true);
19   }
20
21 }
22
Popular Tags