Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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