Main.java revision 2a2ba905b6980a59bbc26506a3a0c1a0ce2ba9fe
/**
* Javadoc comment
*
* @author someone@axample.com
*/
class Main {
private double test = 12.36;
private double testen = 12.36e-10;
private double testep = 12.36e+10;
private double teste = 12.36e10;
}
/*
* Ordinary comment
*/
private void dump() {
}
// One line comment
}
/**
* Just an 'example' javadoc comment.
*
* See <filename.java>, &\/<> http://www.example.com/file.html
* or </path/to/Filename.java>
*
* @param argv The parameter \\ list
* @throws java.lang.Exception
*/
if (false) {
throw new Exception("Some \\ 'string'");
}
}
}