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.

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