1 package hero.historic; 2 3 31 32 33 import java.io.Serializable ; 34 import java.util.Vector ; 35 36 public final class PropertyHistoric implements Serializable , java.lang.Cloneable { 37 38 40 private String key=""; 41 private String value=""; 42 43 45 public String getKey() { 46 return (key); 47 } 48 49 public void setKey(String key) { 50 this.key = key; 51 } 52 53 public String getValue() { 54 return (value); 55 } 56 57 public void setValue(String value) { 58 this.value= value; 59 } 60 61 public PropertyHistoric(){} 62 63 public Object clone() throws java.lang.CloneNotSupportedException { 64 return super.clone(); 65 } 66 67 } 68 | Popular Tags |