aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features169/itdInnerTypes/six/Vote_Amender.aj
blob: 0e9ce5cf6f12f824b0a3c1464b7df93f4448b98d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package a.b.c;

public aspect Vote_Amender {
  public static class Vote.__ {
    private String string;
    public static class choice {}
    public Ip ip = new Ip();
    public __(String string) { this.string = string; }
    public String getString() { return this.string; }
    public class Ip {
      public String fieldName() { return "ip"; }
      public Class<Vote> type() { return Vote.class; }
    }
  }
}