aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/FieldNameConstantsOnRecord.java
blob: 5d3b01dade8085790963951b4283e940880c7c10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// version 14:
import lombok.experimental.FieldNameConstants;
import lombok.AccessLevel;
public @FieldNameConstants(level = AccessLevel.PACKAGE) record FieldNameConstantsOnRecord(String iAmADvdPlayer, int $skipMe, int andMe, String butPrintMePlease) {
  static final @java.lang.SuppressWarnings("all") class Fields {
    public static final java.lang.String iAmADvdPlayer = "iAmADvdPlayer";
    public static final java.lang.String butPrintMePlease = "butPrintMePlease";
    <clinit>() {
    }
    private @java.lang.SuppressWarnings("all") Fields() {
      super();
    }
  }
/* Implicit */  private final String iAmADvdPlayer;
/* Implicit */  private final int $skipMe;
/* Implicit */  private final int andMe;
/* Implicit */  private final String butPrintMePlease;
  static double skipMeToo;
  <clinit>() {
  }
  public FieldNameConstantsOnRecord(String iAmADvdPlayer, int $skipMe,  int andMe, String butPrintMePlease) {
    super();
    .iAmADvdPlayer = iAmADvdPlayer;
    .$skipMe = $skipMe;
    .andMe = andMe;
    .butPrintMePlease = butPrintMePlease;
  }
}