Readtable.java :  » Web-Server » Jigsaw » org » w3c » tools » sexpr » Java Open Source

Java Open Source » Web Server » Jigsaw 
Jigsaw » org » w3c » tools » sexpr » Readtable.java
/*
 *  Readtable.java
 *
 *  Copyright 1997 Massachusetts Institute of Technology.
 *  All Rights Reserved.
 *
 *  Author: Ora Lassila
 *
 *  $Id: Readtable.java,v 1.2 1998/01/22 13:08:55 bmahe Exp $
 */

package org.w3c.tools.sexpr;

/**
 * An interface for read tables.
 */
public interface Readtable {

  /**
   * Find the parser associated with the <i>key</i> dispatch character.
   */
  public SExprParser getParser(char key);

  /**
   * Associate a parser with the <i>key</i> dispatch character.
   */
  public SExprParser addParser(char key, SExprParser parser);

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.