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.

DefaultFoo.java 322B

12345678910111213
  1. package impl;
  2. import org.aspectj.lang.annotation.Aspect;
  3. import org.aspectj.lang.annotation.DeclareParents;
  4. public class DefaultFoo implements Foo {
  5. // Uncommenting the following fixes the error
  6. DefaultFoo() {
  7. }
  8. public void doFoo() {
  9. System.out.println("In doFoo " + this.getClass());
  10. }
  11. }