Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

PR320.java 437B

1234567891011121314
  1. public class PR320 {
  2. public static void main(String[] args) {
  3. //org.aspectj.testing.Tester.check(false, "Shouldn't have compiled!");
  4. org.aspectj.testing.Tester.check(true, "OK to compile by 08b1!");
  5. }
  6. }
  7. class Product1 {}
  8. aspect Product1Aspect pertarget(target(Product1)){
  9. pointcut instance(Product1 p): target(p);
  10. before(Product1 p): instance(p) {
  11. System.out.println("Im am instance of product1");
  12. }
  13. }