1 package net.sourceforge.jarbundler; 2 3 public class JavaProperty { 4 5 6 7 private String name = null; 8 private String value = null; 9 10 13 14 public JavaProperty() { 15 } 16 17 23 public void setName(String name) { 24 this.name = name; 25 } 26 27 32 public String getName() { 33 34 if (this.name == null) 35 return null; 36 37 return this.name.trim(); 38 } 39 40 46 47 public void setValue(String value) { 48 this.value = value; 49 } 50 51 56 public String getValue() { 57 58 if (this.value == null) 59 return null; 60 61 return this.value.trim(); 62 } 63 64 } 65 | Popular Tags |