1 package ch.ethz.prose.jvmai.jikesrvm.advice_weaver; 2 3 import ch.ethz.jvmai.JVMAspectInterface; 4 import ch.ethz.prose.LocalAspectManager; 5 6 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 |