/**
 * A very simple class for keeping track of keywords in the system.
 *
 * @author Andrew Guenther
 */
package question;

public abstract class Keyword {
   public String name;
}