您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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