Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
07/17/08 15:20:10 (6 months ago)
Author:
catullus
Message:

sync-bidrectional: partly merge

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
  • openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/GlobalProperty.java

    r4096 r4969  
    4444         
    4545        /** 
     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        /** 
    4655         * Constructor defining the key and value of this GP 
    4756         *  
     
    5059         */ 
    5160        public GlobalProperty(String property, String value) { 
    52                 this.property = property
     61                this(property)
    5362                this.propertyValue = value; 
    5463        } 
     
    6271         */ 
    6372        public GlobalProperty(String property, String value, String description) { 
    64                 this.property = property; 
    65                 this.propertyValue = value; 
     73                this(property, value); 
    6674                this.description = description; 
    6775        }