aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr240360/base/test/Base.java
blob: fe9a5e681f02c814b5b12dc0c35acebe35fef5d4 (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
package test;

public class Base {
	private int id;
	private String value;

	public Base(int id, String value) {
		super();
		this.id = id;
		this.value = value;
	}

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}
}