1 2 3 4 5 6 7 8 9 10 11
package a.b.c; @RelatedType(value=Vote._.choice.class) public class Runner { public static void main(String[]argv) { Vote._ v = new Vote._("wibble"); System.out.println(v.getString()); System.out.println(Runner.class.getDeclaredAnnotations()[0]); } }