package Current.manage; /* * McbSubword.java * * Created on May 31, 2006, 10:46 AM */ /** * * @author pat */ public class McbSubword { /** token class to request a new McbSubword to be sent through * the manager */ public class McbSubwordRequest { public McbSubwordRequest() { } } public String subword; /** Creates a new instance of McbSubword */ public McbSubword(String subword) { this.subword=subword; } public String toString() { return subword; } }