1 17 18 package org.apache.commons.digester.plugins; 19 20 public class TextLabel2 implements Widget { 21 private String id = "anonymous"; 22 private String label = "nolabel"; 23 24 public TextLabel2() {} 25 26 public String getId() { 27 return id; 28 } 29 30 public void setId(String id) { 31 this.id = id; 32 } 33 34 public String getLabel() { 35 return label; 36 } 37 38 public void setLabel(String label) { 39 this.label = label; 40 } 41 } 42 | Popular Tags |