Skip to content

Commit 3c4427b

Browse files
unknownwluyima
unknown
authored andcommittedMay 8, 2013
Fill javadoc for class org.openmrs.activelist.ActiveListType - TRUNK-3176
TRUNK-3176 fill javadoc fro the class ActiveListType. I did some changes as ur comments. Removed unnecessary javadocs that are defined on the superclass or getters/setters - TRUNK-3176
1 parent 6c26027 commit 3c4427b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed
 

‎api/src/main/java/org/openmrs/activelist/ActiveListType.java

+10-1
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,24 @@
1616
import org.openmrs.BaseOpenmrsMetadata;
1717

1818
/**
19-
* TODO
19+
* Active lists can be of two types: allergies and problems. So the active list type is the metadata
20+
* that says what kind of item is.
2021
*/
2122
public class ActiveListType extends BaseOpenmrsMetadata {
2223

24+
/**
25+
* the unique Identifier for the ActiveListType object
26+
*/
2327
private Integer activeListTypeId;
2428

2529
public ActiveListType() {
2630
}
2731

32+
/**
33+
* constructs an ActiveListType object with a given id
34+
*
35+
* @param id the activeListTypeId to set
36+
*/
2837
public ActiveListType(Integer id) {
2938
this.activeListTypeId = id;
3039
}

0 commit comments

Comments
 (0)
Please sign in to comment.