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.

OuterAbstract_PR408.java 329B

12345678910111213
  1. import org.aspectj.testing.*;
  2. public abstract class OuterAbstract_PR408 {
  3. public void go() {
  4. Tester.event("OuterAbstract_PR408.go");
  5. }
  6. public abstract class InnerAbstract {
  7. public InnerAbstract(String str) {}
  8. public void go() {
  9. Tester.event("InnerAbstract.go");
  10. }
  11. }
  12. }