| 1 24 25 package org.aspectj.compiler.crosscuts.joinpoints; 26 27 import org.aspectj.compiler.base.ast.*; 28 import org.aspectj.compiler.crosscuts.ast.*; 29 30 import java.util.*; 31 32 public class PreInitializationJp extends CodeDecJp { 33 public PreInitializationJp(ConstructorDec constructorDec) { 34 super(constructorDec); 35 } 37 38 public static final Kind KIND = new Kind("preinitialization", -1); 39 40 public Kind getKind() { return KIND; } 41 42 public ASTObject getSourceLocation() { 43 return getCodeDec().getBytecodeTypeDec().getBody(); 44 } 45 46 public boolean isStaticContext() { return true; } 47 48 public void addPlan(JpPlan plan) { 49 return; 50 } 51 } 52 | Popular Tags |