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.

123456789101112131415161718
  1. interface IMarker<CLOCK,STATE> { }
  2. public aspect MyAspect
  3. {
  4. public void IMarker<CLOCK,STATE>.map()
  5. {
  6. CLOCK[] var = find();
  7. };
  8. public CLOCK[] IMarker<CLOCK,STATE>.find()
  9. {
  10. return null;
  11. }
  12. }