blob: 17dbf668258b0677d8524a04e3996c2039a5e48a [file] [log] [blame]
package com.puppycrawl.tools.checkstyle.checks.javadoc.javadocmethod;
public class InputJavadocMethodMissingJavadocTags {
/**
* Missing return.
*
* @param number to return
* @throws ThreadDeath sometimes
*/
int missingReturn(int number) throws ThreadDeath {
return number;
}
/**
* Missing param.
*
* @return number
* @throws ThreadDeath sometimes
*/
int missingParam(int number) throws ThreadDeath {
return number;
}
/**
* Missing throws.
*
* @param number to return
* @return number
*/
int missingThrows(int number) throws ThreadDeath {
return number;
}
/**
* Missing return, but {@inheritDoc} is present.
*
* @param number to return
* @throws java.util.NoSuchElementException sometimes
*/
int missingReturnButInheritDocPresent(int number) throws java.util.NoSuchElementException {
return number;
}
/**
* Missing return in the middle.
*
* @param number to return
* @return
* @throws java.util.NoSuchElementException sometimes
*/
private int missingReturnInTheMiddle(int number) {
return number;
}
/**
* Missing return at the end.
*
* @param number to return
* @return
*/
private int missingReturnAtTheEnd(int number) {
return number;
}
/**
* Missing return at the end followed by empty line.
*
* @param number to return
* @return
*
*/
private int missingReturnAtTheEndFollowedByEmptyLine(int number) {
return number;
}
}