Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jdt-core-dev] 2 additional compiler options for Javadoc comments



2 new Javadoc compiler options have been added (see bugs
http://bugs.eclipse.org/bugs/show_bug.cgi?id=53977 and
http://bugs.eclipse.org/bugs/show_bug.cgi?id=75701
While reporting problems on invalid Javadoc tags, user can now decide not
to report deprecation and/or visibility warnings on references used in
@see, @link or @values tags.

Here's the description of these new options:
       * COMPILER / Reporting Invalid Javadoc Tags with Deprecated
References
       *    Specify whether the compiler will report deprecated references
used in Javadoc tags.
       *    Note that this diagnosis can be enabled based on the visibility
of the construct associated with the Javadoc;
       *    also see the setting
"org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility".
       *     - option id:
"org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsDeprecatedRef"
       *     - possible values:   { "enabled", "disabled" }
       *     - default:           "enabled"
       *
       * COMPILER / Reporting Invalid Javadoc Tags with Not Visible
References
       *    Specify whether the compiler will report non-visible references
used in Javadoc tags.
       *    Note that this diagnosis can be enabled based on the visibility
of the construct associated with the Javadoc;
       *    also see the setting
"org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility".
       *     - option id:
"org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsNotVisibleRef"
       *     - possible values:   { "enabled", "disabled" }
       *     - default:           "enabled"
       *

Cordialement/Regards,

Frédéric




Back to the top