Back to project page SymptomManagement.
The source code is released under:
Apache License
If you think the Android project SymptomManagement listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.android.capstone.patient.checkin_now.model; //from ww w. j a va2 s .c om public class ReviewItem { public static final int DEFAULT_WEIGHT = 0; private int mWeight; private String mTitle; private String mDisplayValue; private String mPageKey; public ReviewItem(String title, String displayValue, String pageKey) { this(title, displayValue, pageKey, DEFAULT_WEIGHT); } public ReviewItem(String title, String displayValue, String pageKey, int weight) { mTitle = title; mDisplayValue = displayValue; mPageKey = pageKey; mWeight = weight; } public String getDisplayValue() { return mDisplayValue; } public void setDisplayValue(String displayValue) { mDisplayValue = displayValue; } public String getPageKey() { return mPageKey; } public void setPageKey(String pageKey) { mPageKey = pageKey; } public String getTitle() { return mTitle; } public void setTitle(String title) { mTitle = title; } public int getWeight() { return mWeight; } public void setWeight(int weight) { mWeight = weight; } }