文本文件  |  17行  |  236 B

class AccessClassMemberThroughThis {

	private String label;

	public void setLabel(final String label) {
		this.label = label;
	}

	public String getLabel1() {
		return label;
	}

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

}