Example:
/**
* Missing "@param" is reported (if configured).
*/
public void sample(int param){
}
The quick-fixes add missing tag or missing Javadoc comment:
/**
* Missing "@param" is reported (if configured).
* @param param
*/
public void sample(int param){
}
Inspection can be configured to ignore deprecated elements or simple accessor methods like getField()
or setField()
.