Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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