Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
05/24/08 14:37:02 (8 months ago)
Author:
bwolfe
Message:

Merging api-refactoring to trunk [3595]:[4355]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/trunk/src/api/org/openmrs/GlobalProperty.java

    r4095 r4358  
    3131         
    3232        /** 
     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        /** 
    3342         * Constructor defining the key and value of this GP 
    3443         *  
     
    3746         */ 
    3847        public GlobalProperty(String property, String value) { 
    39                 this.property = property
     48                this(property)
    4049                this.propertyValue = value; 
    4150        } 
     
    4958         */ 
    5059        public GlobalProperty(String property, String value, String description) { 
    51                 this.property = property; 
    52                 this.propertyValue = value; 
     60                this(property, value); 
    5361                this.description = description; 
    5462        }