Changeset 4969 for openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/GlobalProperty.java
- Timestamp:
- 07/17/08 15:20:10 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/branches/data_synchronization_bidirectional
- Property svn:ignore changed from
build*
dist*
${env.CATALINA_HOME}
docs
.metadata
setup.inf
setup.rpt
to
build*
dist*
${env.CATALINA_HOME}
docs
.metadata
setup.inf
setup.rpt
*.iws
*.ipr
*.iml
- Property svn:ignore changed from
openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/GlobalProperty.java
r4096 r4969 44 44 45 45 /** 46 * Constructor defining the key for this GP 47 * 48 * @param property key to name the property 49 */ 50 public GlobalProperty(String property) { 51 this.property = property; 52 } 53 54 /** 46 55 * Constructor defining the key and value of this GP 47 56 * … … 50 59 */ 51 60 public GlobalProperty(String property, String value) { 52 this .property = property;61 this(property); 53 62 this.propertyValue = value; 54 63 } … … 62 71 */ 63 72 public GlobalProperty(String property, String value, String description) { 64 this.property = property; 65 this.propertyValue = value; 73 this(property, value); 66 74 this.description = description; 67 75 }