blob: a59add9c15bc5d4a70167a2e2d608718f53fddcb [file] [log] [blame]
/**
* This is about <code>ClassName</code>.
* {@link com.yourCompany.aPackage.SuperClass}
* @author author
*/
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;
}
}