/* * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * Copyright (c) 2001 - 2013 Object Refinery Ltd, Pentaho Corporation and Contributors.. All rights reserved. */ package org.pentaho.reporting.engine.classic.demo.ancient.demo.form; import java.util.ArrayList; public class Patient { private String name; private String address; private String town; private String ssn; private String insurance; private String symptoms; private String allergy; private String level; private ArrayList treatments; public Patient() { treatments = new ArrayList(); } public Patient(final String name, final String address, final String town, final String ssn, final String insurance, final String symptoms) { treatments = new ArrayList(); this.name = name; this.address = address; this.town = town; this.ssn = ssn; this.insurance = insurance; this.symptoms = symptoms; } public String getAddress() { return address; } public void setAddress(final String address) { this.address = address; } public String getInsurance() { return insurance; } public void setInsurance(final String insurance) { this.insurance = insurance; } public String getName() { return name; } public void setName(final String name) { this.name = name; } public String getSsn() { return ssn; } public void setSsn(final String ssn) { this.ssn = ssn; } public String getSymptoms() { return symptoms; } public void setSymptoms(final String symptoms) { this.symptoms = symptoms; } public String getTown() { return town; } public void setTown(final String town) { this.town = town; } public int getTreatmentCount() { return treatments.size(); } public Treatment getTreatment(final int i) { return (Treatment) treatments.get(i); } public void addTreament(final Treatment t) { treatments.add(t); } public void removeTreatment(final Treatment t) { treatments.remove(t); } public String getAllergy() { return allergy; } public void setAllergy(final String allergy) { this.allergy = allergy; } public String getLevel() { return level; } public void setLevel(final String level) { this.level = level; } }