Changeset 4358 for openmrs/trunk/src/api/org/openmrs/GlobalProperty.java
- Timestamp:
- 05/24/08 14:37:02 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/trunk/src/api/org/openmrs/GlobalProperty.java
r4095 r4358 31 31 32 32 /** 33 * Constructor defining the key for this GP 34 * 35 * @param property key to name the property 36 */ 37 public GlobalProperty(String property) { 38 this.property = property; 39 } 40 41 /** 33 42 * Constructor defining the key and value of this GP 34 43 * … … 37 46 */ 38 47 public GlobalProperty(String property, String value) { 39 this .property = property;48 this(property); 40 49 this.propertyValue = value; 41 50 } … … 49 58 */ 50 59 public GlobalProperty(String property, String value, String description) { 51 this.property = property; 52 this.propertyValue = value; 60 this(property, value); 53 61 this.description = description; 54 62 }