Home | History | Annotate | Download | only in resources
      1 enum AccessEnumMemberThroughThis {
      2 
      3 	CONSTANT("constant");
      4 
      5 	private String label;
      6 
      7 	public String getLabel() {
      8 		return this.label;
      9 	}
     10 
     11 	public String getLabel2() {
     12 		return this.getLabel();
     13 	}
     14 
     15 }