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.

Vote_Amender.aj 412B

123456789101112131415
  1. package a.b.c;
  2. public aspect Vote_Amender {
  3. public static class Vote._ {
  4. private String string;
  5. public static class choice {}
  6. public Ip ip = new Ip();
  7. public _(String string) { this.string = string; }
  8. public String getString() { return this.string; }
  9. public class Ip {
  10. public String fieldName() { return "ip"; }
  11. public Class<Vote> type() { return Vote.class; }
  12. }
  13. }
  14. }