Reports the following Javadoc comment flaws:

Example:


  class Main {
  }

After the quick-fix is applied:


  /**
   *
   */
  class Main {
  }

Example:


  String id(String value) {
    return value;
  }

After the quick-fix is applied:


  /**
   * @param value
   * @return
   */
  String id(String value) {
    return value;
  }
Use the tabs and corresponding inspection options to define visibility scope in which Javadoc is required, as well as the required Javadoc tags for classes, methods, fields, and inner classes.