blob: 0c0f0ebfb9b3a58801235dc8fcfe4d6d4eae4766 [file] [log] [blame]
////////////////////////////////////////////////////////////////////////////////
// Test case file for checkstyle.
// Created: 2004
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle.checks.javadoc.writetag;
/**
* Testing tag writing
* @author Daniel Grenner
* @incomplete This class needs more code...
* @doubletag first text
* @doubletag second text
* @emptytag
*/
class InputWriteTag
{
/**
* @todo Add a constructor comment
*/
public InputWriteTag()
{
}
public void method()
{
}
/**
* @todo Add a comment
*/
public void anotherMethod()
{
}
}