/**
 * Simple keywords for a tokenizer.
 *
 * @author Samuel A. Rebelsky
 * @version 0.2 of October 2002
 */
public class Keyword
  extends NamedToken
{
  // +--------------+-------------------------------------------------------
  // | Constructors |
  // +--------------+

  public Keyword(String idval) {
    super(idval);
  } // Keyword(String)

} // class Keyword

