3

I'm using NetBeans 7.0.1 and I'm trying to generate the javadocs for one of my projects.

I tried both by right clicking the project -> Generate Javadoc and by Run -> Generate Javadoc. I managed to create the following javadocs sections:

  • Constructor Summary
  • Method Summary
  • Constructor Detail
  • Method Detail

but not the:

  • Field Summary
  • Filed Detail

How can I instruct the IDE with annotations, comments, or just through configuration to add that?

1 Answer 1

3

The "field summary" is created by javadoc using the first sentences of fields.

Field documentation should be generated automatically for public fields. To generate documentation for private and protected fields there's a checkbox option to include them in the project's Build/Documenting properties.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.