aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ConstructorsWithAccessors.java
blob: 9937c7ee29b417eaf9b63f51dbefbcd99dfd4378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class ConstructorsWithAccessors {
	int plower;
	int pUpper;
	int _huh;
	int __huh2;

	@java.beans.ConstructorProperties({"plower", "upper", "huh", "_huh2"})
	@java.lang.SuppressWarnings("all")
	public ConstructorsWithAccessors(final int plower, final int upper, final int huh, final int _huh2) {
		this.plower = plower;
		this.pUpper = upper;
		this._huh = huh;
		this.__huh2 = _huh2;
	}
}