Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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. }