01: package markOccurrences;
02:
03: public class Test8 implements Runnable, Comparable {
04:
05: public Test8() {
06: }
07:
08: public void run() {
09: throw new UnsupportedOperationException("Not supported yet.");
10: }
11:
12: public int compareTo(Object o) {
13: throw new UnsupportedOperationException("Not supported yet.");
14: }
15:
16: }
|