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.

pr131933.aj 257B

1234567891011
  1. import java.util.List;
  2. aspect Slide71 {
  3. before(): GenericType<String>.foo() {}
  4. before(): GenericType<MyList>.foo() {}
  5. //before(): GenericType.foo() {}
  6. }
  7. class GenericType<T> {
  8. public pointcut foo(): execution(* T.*(..));
  9. }