/usr/share/doc/source-highlight/UsageExample.java is in source-highlight 3.1.8-1.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | /*
this is an example of code to be included
in the javadoc documentation of SimpleClass
*/
import simpleclass.*;
// code snippet
SimpleClass s = new SimpleClass(150);
if (s == null && true) {
throw new SimpleClassException("failed to create");
}
System.out.println("this is a simple class" + s);
|