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

Bug.java 282B

1234567891011
  1. aspect MyAspect implements MyInterface<MyClass> {
  2. before() : MyAspect1<MyClass>.myPointcutInInterface(){ }
  3. }
  4. class MyClass { }
  5. interface MyInterface<T>{
  6. public abstract static aspect MyAspect1<T> {
  7. public final pointcut myPointcutInInterface() : call(* *..*.*(..));
  8. }
  9. }