Back to project page openhds-tablet.
The source code is released under:
OPENHDS PLATFORM OPENSOURCE LICENSE AGREEMENT Copyright (c) 2013 University of Southern Maine. All rights reserved. Redistribution and use in source and binary forms, with or without mo...
If you think the Android project openhds-tablet 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 org.openhds.mobile.model; //from w w w . j ava 2s . c om import java.io.Serializable; public class Visit implements Serializable { private static final long serialVersionUID = -1429712555458116315L; private String extId; private String location; private String date; private String round; private String intervieweeId; public String getIntervieweeId() { return intervieweeId; } public void setIntervieweeId(String intervieweeId) { this.intervieweeId = intervieweeId; } public String getExtId() { return extId; } public void setExtId(String extId) { this.extId = extId; } public String getLocation() { return location; } public void setLocation(String location) { this.location = location; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } public String getRound() { return round; } public void setRound(String round) { this.round = round; } }