Changeset 4552 for openmrs/trunk/src/api/org/openmrs/Cohort.java
- Timestamp:
- 06/04/08 15:08:04 (6 months ago)
- Files:
-
- openmrs/trunk/src/api/org/openmrs/Cohort.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/trunk/src/api/org/openmrs/Cohort.java
r4358 r4552 109 109 * @param patientsOrIds optional collection which may contain Patients, or patientIds which may be Integers, Strings, or anything whose toString() can be parsed to an Integer. 110 110 */ 111 public Cohort(Collection patientsOrIds) { 111 @SuppressWarnings("unchecked") 112 public Cohort(Collection patientsOrIds) { 112 113 this(null, null, patientsOrIds); 113 114 } … … 119 120 * @param patientsOrIds optional collection which may contain Patients, or patientIds which may be Integers, Strings, or anything whose toString() can be parsed to an Integer. 120 121 */ 121 public Cohort(String name, String description, Collection patientsOrIds) { 122 @SuppressWarnings("unchecked") 123 public Cohort(String name, String description, Collection patientsOrIds) { 122 124 this.name = name; 123 125 this.description = description;