aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-symbol-solver-testing/src/test/resources/AccessEnumMemberThroughThis.java.txt
blob: df6a4db38eeca16bcce79f1db61ec9a8443b1c50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
enum AccessEnumMemberThroughThis {

	CONSTANT("constant");

	private String label;

	public String getLabel() {
		return this.label;
	}

	public String getLabel2() {
		return this.getLabel();
	}

}