1 package org.hibernate.test.legacy;2 3 /**4 * @author hbm2java5 */6 public class Medication extends org.hibernate.test.legacy.Intervention {7 8 org.hibernate.test.legacy.Drug prescribedDrug;9 10 11 org.hibernate.test.legacy.Drug getPrescribedDrug() {12 return prescribedDrug;13 }14 15 void setPrescribedDrug(org.hibernate.test.legacy.Drug newValue) {16 prescribedDrug = newValue;17 }18 19 20 }21