01: package tide.annotations; 02: 03: public final class Test implements Comparable<String> { 04: public Test() { 05: } 06: 07: @tide.annotations.Implements("Comparable") 08: @tide.annotations.Recurse 09: public int compareTo(String s) { 10: return 10; 11: } 12: 13: }