Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
05/09/08 10:53:35 (2 months ago)
Author:
bwolfe
Message:

Merging report-api-refactoring to trunk [2696]:[4157]

Files:

Legend:

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

    r4095 r4158  
    1717import java.util.Set; 
    1818 
     19import org.simpleframework.xml.Attribute; 
     20import org.simpleframework.xml.Root; 
     21 
     22@Root 
    1923public class Program implements java.io.Serializable { 
    2024         
     
    123127        } 
    124128 
     129        @Attribute(required=true) 
    125130        public Integer getProgramId() { 
    126131                return programId; 
    127132        } 
    128133 
     134        @Attribute(required=true) 
    129135        public void setProgramId(Integer programId) { 
    130136                this.programId = programId;