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

InitCatcher.java 200B

1234567891011
  1. package apackage;
  2. public aspect InitCatcher {
  3. declare warning: call(* *.init(..)) :
  4. "Please don't call init methods";
  5. declare warning: set(* SomeClass.*) :
  6. "Please don't call setters";
  7. }