55.1k views
3 votes
You can use ____________ within a javadoc comment to apply formatting to the text when it’s displayed.

User LTJ
by
6.5k points

1 Answer

4 votes

Answer: Javadoc tags

Step-by-step explanation:

We can use the javadoc tags within the javadoc comments to apply formatting the text, when it is displayed. Javadoc comments are place above on any type class and methods.

Javadoc tags can be used in each javadoc comments as to provide more structured information in terms of code. Basically, javadoc comments use any multi line comments in the method declaration.

By using the javadoc comments, the html file generated and describe each methods in the class and also included tags to describe the characteristics.

User MaxwellN
by
5.7k points