Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] AJDoc do not generate annotations?

I don't know of any testcases for this, so it could be an undocumented
bug/restriction - probably worth raising a bug to cover fixing it or
at least documenting any restriction.

Andy.

On 12/02/07, Paulo Alexandre Corigo Zenida <paulo.zenida@xxxxxxxx> wrote:
Hello,

I tried to use AJDoc to document my AspectJ projects and I would like
annotations to be shown in the generated documentation. The following
example is properly generated when I use Javadoc.

@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {

}

public class A {

     @MyAnnotation
     public void foo() {
     }

}

However, with AJDoc (I have used the option "Generate AJDoc" from
Eclipse), it does not include the annotation. Is this a limitation in
AJDoc? I could not find any documentation about this matter.

Best regards,

Paulo Zenida

_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/aspectj-users



Back to the top