|
http://www.jindent.com |
Previous: Deleting
|
Next: Misc
|
publicprivateprotected
|
See also: | Jindent - Settings - Environment - Environment Variables |
| Insert missing tags in existing JavaDocs |

@param of constructors/methods@throws or @exception of constructors/methods@return of methods| Delete obsolete tags from existing JavaDocs |

@param of constructors/methods@throws or @exception of constructors/methods@return of methods| public |

public class declarations.
|
See also: | Top template |
| friendly |

|
See also: | Top template |
| protected |

protected class declarations.
|
See also: | Top template |
| private |

private class declarations.
|
See also: | Top template |
| Top template |

|
/** * Class $declarationName$ * |
|
* |
|
* @param $paramName$ |
|
* * @version $version$ $date$ * @author $author$ */ |
|
/** <- Top Template, line 1 * Class TestClass <- Top Template, line 2 * <- Top Template, line 3 * <- Parameter Separator Template, line 1 * @param <T> <- Parameter Template, line 1 * <- Bottom Template, line 1 * @version 1.3 2005-02-14 <- Bottom Template, line 2 * @author Ren Hoek <- Bottom Template, line 3 */ <- Bottom Template, line 4 public class TestClass<T> { ... } |
version and author are user defined environment variables.date is a special environment variable and represents the current date.
declarationName contains the name of the corresponding class.
|
See also: | Jindent - Settings - Environment - Environment Variables |
| Parameter separator template |

| Parameter template |

| Bottom template |

| public |

public interface declarations.
|
See also: | Top template |
| friendly |

|
See also: | Top template |
| protected |

protected interface declarations.
|
See also: | Top template |
| private |

private interface declarations.
|
See also: | Top template |
| Top template |

|
/** * Interface $declarationName$ * |
|
* |
|
* @param $paramName$ |
|
* * @version $version$ $date$ * @author $author$ */ |
|
/** <- Top Template, line 1 * Interface ITest <- Top Template, line 2 * <- Top Template, line 3 * <- Parameter Separator Template, line 1 * @param <T> <- Parameter Template, line 1 * <- Bottom Template, line 1 * @version 1.3 2005-02-14 <- Bottom Template, line 2 * @author Ren Hoek <- Bottom Template, line 3 */ <- Bottom Template, line 4 public interface ITest<T> { ... } |
version and author are user defined environment variables.date is a special environment variable and represents the current date.
declarationName contains the name of the corresponding class.
|
See also: | Jindent - Settings - Environment - Environment Variables |
| Parameter separator template |

| Parameter template |

| Bottom template |

| public |

public annotation types.
|
See also: | Template |
| friendly |

|
See also: | Template |
| protected |

protected annotation types.
|
See also: | Template |
| private |

private annotation types.
|
See also: | Template |
| Template |

|
/** * Annotation $declarationName$ * * @version $version$ $date$ * @author $author$ */ |
|
/** * Annotation TestAnnotation * * @version 1.3 2005-02-14 * @author Ren Hoek */ public @interface TestAnnotation { ... } |
version and author are user defined environment variables.date represents the current date and declarationName the name of the
corresponding annotation type.
|
See also: | Jindent - Settings - Environment - Environment Variables |
| public |

public enumerations.
|
See also: | Template |
| friendly |

|
See also: | Template |
| protected |

protected enumerations.
|
See also: | Template |
| private |

private enumerations.
|
See also: | Template |
| Template |

|
/** * Enum $declarationName$ * * @version $version$ $date$ * @author $author$ */ |
|
/** * Enum TestEnumeration * * @version 1.3 2005-02-14 * @author Ren Hoek */ public enum TestEnumeration { ... } |
version and author are user defined environment variables.date represents the current date and declarationName the name of the
corresponding enumeration.
|
See also: | Jindent - Settings - Environment - Environment Variables |
| public |

public field declarations.
|
See also: | Template |
| friendly |

|
See also: | Template |
| protected |

protected field declarations.
|
See also: | Template |
| private |

private field declarations.
|
See also: | Template |
| Template |

|
/** Field $declarationName$ ... */ |
|
/** Field myField ... */ public int myField; |
declarationName represents the name of the corresponding field.
|
See also: | Jindent - Settings - Environment - Environment Variables |
| Sort exceptions in JavaDoc templates |

| public |

public constructor declarations.
|
See also: | Top template |
| friendly |

|
See also: | Top template |
| protected |

protected constructor declarations.
|
See also: | Top template |
| private |

private constructor declarations.
|
See also: | Top template |
| Top template |

|
/** * Constructor $declarationName$ ... * |
|
* ------------------------------------ |
|
* @param $paramName$, $paramType$ * We need more space for params * |
|
* ------------------------------------ |
|
* @throws $exceptionName$ |
|
*/ |
|
/** <- Top Template, line 1 * Constructor Demo ... <- Top Template, line 2 * <- Top Template, line 3 * ------------------------------------ <- Parameter Separator Template, line 1 * @param a, int <- Parameter Template, line 1 * We need more space for params <- Parameter Template, line 2 * <- Parameter Template, line 3 * @param b, String <- Parameter Template, line 1 * We need more space for params <- Parameter Template, line 2 * <- Parameter Template, line 3 * ------------------------------------ <- Exception Separator Template, line 1 * @throws AException <- Exception Template, line 1 * @throws BException <- Exception Template, line 1 * @throws CException <- Exception Template, line 1 */ <- Bottom Template, line 1 public Demo(int a, String b) throws BException, AException, CException { ... } |
|
See also: | Jindent - Settings - Environment - Environment Variables |
| Parameter separator template |

| Parameter template |

| Exception separator template |

| Exception template |

| Bottom template |

| public |

public method declarations.
|
See also: | Top template |
| friendly |

|
See also: | Top template |
| protected |

protected method declarations.
|
See also: | Top template |
| private |

private method declarations.
|
See also: | Top template |
| Top template |

|
/** * Method $declarationName$ ... * |
|
* |
|
* @param $paramName$, $paramType$ |
|
* @return a value of $returnType$ ... * |
|
* |
|
* @throws $exceptionName$ |
|
* * some space here ... */ |
|
/** <- Top Template, line 1 * Method calculate ... <- Top Template, line 2 * <- Top Template, line 3 * <- Parameter Separator Template, line 1 * @param a, int <- Parameter Template, line 1 * @param b, String <- Parameter Template, line 1 * <- Exception Separator Template, line 1 * @return a value of float ... <- Return Template, line 1 * <- Return Template, line 2 * @throws BException <- Exception Template, line 1 * @throws AException <- Exception Template, line 1 * @throws CException <- Exception Template, line 1 * <- Bottom Template, line 1 * some space here ... <- Bottom Template, line 2 */ <- Bottom Template, line 3 public float calculate(int a, String b) throws BException, AException, CException { ... } |
|
See also: | Jindent - Settings - Environment - Environment Variables |
| Parameter separator template |

| Parameter template |

| Return Template |

| Exception separator template |

| Exception template |

| Bottom template |
