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.

AspectITD.aj 271B

1234567891011121314151617
  1. // Simple aspect that tramples all over Simple.java
  2. public aspect AspectITD {
  3. int Simple.fieldint = 5;
  4. String Simple.fieldstring = "hello";
  5. public int Simple.returnint() {
  6. return 5;
  7. }
  8. public String Simple.returnstring() {
  9. return "abc";
  10. }
  11. }