1class AccessClassMemberThroughThis {
2
3 private String label;
4
5 public void setLabel(final String label) {
6 this.label = label;
7 }
8
9 public String getLabel1() {
10 return label;
11 }
12
13 public String getLabel2() {
14 return this.label;
15 }
16
17}