Skip to content

Commit

Permalink
Fill javadoc for class org.openmrs.activelist.ActiveListType - TRUNK-…
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
unknown authored and wluyima committed May 8, 2013
1 parent 6c26027 commit 3c4427b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion api/src/main/java/org/openmrs/activelist/ActiveListType.java
Expand Up @@ -16,15 +16,24 @@
import org.openmrs.BaseOpenmrsMetadata;

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

/**
* the unique Identifier for the ActiveListType object
*/
private Integer activeListTypeId;

public ActiveListType() {
}

/**
* constructs an ActiveListType object with a given id
*
* @param id the activeListTypeId to set
*/
public ActiveListType(Integer id) {
this.activeListTypeId = id;
}
Expand Down

0 comments on commit 3c4427b

Please sign in to comment.