選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

DeepAspect.java 144B

12345678
  1. public class DeepAspect {
  2. static class Inner {
  3. static aspect SimpleAspect {
  4. before(): staticinitialization(Cl*) {
  5. }
  6. }
  7. }
  8. }