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.

pr195090.java 368B

12345678910111213141516171819
  1. /**
  2. * Helper interface.
  3. */
  4. interface Interface{
  5. boolean methodToBeImplemented();
  6. }
  7. /**
  8. * Exposes the ajc$this_ is never read warning.
  9. */
  10. public aspect pr195090 {
  11. public boolean Interface.methodToBeImplemented() {
  12. return returnTrue();
  13. }
  14. public static boolean returnTrue() {
  15. return true;
  16. }
  17. }