aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/WithOnRecord.java
blob: 2b24147ab097b0788aa85646c0cece6918c9db25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// version 14:
import lombok.With;
@With record WithOnRecord(String a, String b) {
/* Implicit */  private final String a;
/* Implicit */  private final String b;
  public WithOnRecord(String a, String b) {
    super();
    .a = a;
    .b = b;
  }
  public @java.lang.SuppressWarnings("all") WithOnRecord withA(final String a) {
    return ((this.a == a) ? this : new WithOnRecord(a, this.b));
  }
  public @java.lang.SuppressWarnings("all") WithOnRecord withB(final String b) {
    return ((this.b == b) ? this : new WithOnRecord(this.a, b));
  }
}