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 . ja va 2s . c om*/ import java.io.Serializable; public class Relationship implements Serializable { private static final long serialVersionUID = -761650887262715820L; private String individualA; private String individualB; private String startDate; public String getIndividualA() { return individualA; } public void setIndividualA(String individualA) { this.individualA = individualA; } public String getIndividualB() { return individualB; } public void setIndividualB(String individualB) { this.individualB = individualB; } // dates come in from the web service in dd-MM-yyyy format public String getStartDate() { return startDate; } public void setStartDate(String startDate) { this.startDate = startDate; } }