blob: 02605553d8a3bd2ce00c950c52c44d4f8892519b [file] [log] [blame]
/**
* This is about <code>ClassName</code>.
* {@link com.yourCompany.aPackage.SuperClass}
* @author author
* @deprecated use <code>OtherClass</code> instead
*/
public class ClassName extends SuperClass {
private static final int CONSTANT= 0;
/* This comment may span multiple lines. */
private static int staticField= 0;
// This comment may span only this line
private String field= "zero";
// TASK: refactor
public int foo(int parameter) {
abstractMethod();
int local= 42*hashCode();
staticMethod();
return bar(local) + 24;
}
}