package mug13; import java.util.Vector; import java.util.Random; import java.util.Hashtable; public interface Person extends ThingPerson { /** * Get the name of this thing. Every thing is supposed to have a * unique name. */ public String getName(); /** * Get a description of the object, which can then be presented * to the user. */ public String describe(); /** *finds the verbs that can be performed on said object */ public Hashtable verbs(); /** *finds the stuff needed to run a verb *returns a -1 if the verb doesn't exist for this object *returns a 0 if the verb does exist but does not change anything *returns a 1 if the verb exists and changes things */ public Integer checkVerb(String verb); public String[] things(); public void addToPack(String name); public void removeFromPack(String name); public String barbiePhone(); }