You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567
  1. public aspect SampleAspect {
  2. before () : staticinitialization(!SampleAspect) {
  3. System.out.println("initializing class " +
  4. thisJoinPointStaticPart.getSignature().getDeclaringType());
  5. }
  6. }