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

Priority.aj 348B

1234567891011
  1. // Bug 53012
  2. // Although the declare precedence mentions interfaces (and not aspects explicitly), it does
  3. // mention with a '+' suffix - this should be allowed.
  4. public aspect Priority {
  5. public interface Highest {}
  6. public interface Lowest {}
  7. declare precedence: Highest+, *, Lowest+;
  8. }
  9. aspect Security implements Priority.Highest {}