1 14 15 package org.quickserver.util.xmlreader; 16 17 23 public class Property implements java.io.Serializable { 24 private String name; 25 private String value; 26 27 public Property() { 28 } 29 30 public Property(String name, String value) { 31 setName(name); 32 setValue(value); 33 } 34 35 38 public String getName() { 39 return name; 40 } 41 42 45 public void setName(String name) { 46 this.name = name; 47 } 48 49 52 public String getValue() { 53 return value; 54 } 55 56 59 public void setValue(String value) { 60 this.value = value; 61 } 62 } 63 | Popular Tags |