import java.awt.*; import java.util.*; /** * Clase Paciente que representa al paciente y sus atributos * @author Johannes Rothkegel Sielfeld, Tomas Gomez Molina * @version: 09/06/2016 * */ public class Treatment { private final String title; private int cost; public Treatment(String t, int c) { title = t; cost = c; } public String getTitle() { return title; } public int getCost() { return cost; } }