aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/WitherOnClass.java
blob: abc93446c333846d79169d42845aa9274fc19167 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
class WitherOnClass1 {
	boolean isNone;
	boolean isPublic;
	WitherOnClass1(boolean isNone, boolean isPublic) {
	}
	@java.lang.SuppressWarnings("all")
	public WitherOnClass1 withPublic(final boolean isPublic) {
		return this.isPublic == isPublic ? this : new WitherOnClass1(this.isNone, isPublic);
	}
}
class WitherOnClass2 {
	boolean isNone;
	boolean isProtected;
	boolean isPackage;
	WitherOnClass2(boolean isNone, boolean isProtected, boolean isPackage) {
	}
	@java.lang.SuppressWarnings("all")
	protected WitherOnClass2 withProtected(final boolean isProtected) {
		return this.isProtected == isProtected ? this : new WitherOnClass2(this.isNone, isProtected, this.isPackage);
	}
	@java.lang.SuppressWarnings("all")
	WitherOnClass2 withPackage(final boolean isPackage) {
		return this.isPackage == isPackage ? this : new WitherOnClass2(this.isNone, this.isProtected, isPackage);
	}
}
class WitherOnClass3 {
	String couldBeNull;
	@lombok.NonNull
	String nonNull;
	WitherOnClass3(String couldBeNull, String nonNull) {
	}
	@java.lang.SuppressWarnings("all")
	public WitherOnClass3 withCouldBeNull(final String couldBeNull) {
		return this.couldBeNull == couldBeNull ? this : new WitherOnClass3(couldBeNull, this.nonNull);
	}
	@java.lang.SuppressWarnings("all")
	public WitherOnClass3 withNonNull(@lombok.NonNull final String nonNull) {
		if (nonNull == null) {
			throw new java.lang.NullPointerException("nonNull is marked non-null but is null");
		}
		return this.nonNull == nonNull ? this : new WitherOnClass3(this.couldBeNull, nonNull);
	}
}
class WitherOnClass4 {
	final int fX = 10;
	final int fY;
	WitherOnClass4(int y) {
		this.fY = y;
	}
	@java.lang.SuppressWarnings("all")
	public WitherOnClass4 withY(final int fY) {
		return this.fY == fY ? this : new WitherOnClass4(fY);
	}
}