package org.ufcspa.simdecs.diagram.elements; import java.util.Locale; public class Patient extends SwimLane { public Patient(String messageBundle, Locale locale) { super(messageBundle, locale); } @Override public String getImage() { if (getSex().equals("M")) return "img/swimLanes/patientMale.png"; else return "img/swimLanes/patientFemale.png"; } @Override public String getType() { return "patient"; } }