package mug12; import java.util.Vector; import java.util.Random; import java.util.Hashtable; public class AnnoyingObserver extends Person { public AnnoyingObserver(String _name, String _description, String _sex, String _major, Hashtable _verbs, Hashtable _attributes, Vector _inventory) { super(_name,_description,_sex,_major,_verbs,_attributes,_inventory); } public String respondToTransitive(Object Person, String action, String thing) { return "I don't care that " + Person + " " + action + " the/those " + thing; } public String respondToIntransitive(Object Person, String action) { return "I don't care that " + Person + " " + action; } }