| 1 package net.sf.invicta.project; 2 3 import net.sf.invicta.api.Property; 4 5 11 public class PropertyImpl implements Property { 12 protected String name; 13 protected String value; 14 protected String description; 15 16 19 public PropertyImpl() { 20 21 } 22 23 29 public PropertyImpl(String name, String value, String description) { 30 31 this.name = name; 32 this.value = value; 33 this.description = description; 34 } 35 36 40 public String getName() { 41 return name; 42 } 43 44 48 public String getValue() { 49 return value; 50 } 51 52 56 public void setName(String name) { 57 this.name = name; 58 } 59 60 64 public void setValue(String value) { 65 this.value = value; 66 } 67 68 69 74 public String getDescription() { 75 return description; 76 } 77 78 81 public void setDescription(String description) { 82 this.description = description; 83 } 84 } 85 | Popular Tags |