You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Runner.java 271B

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