📄 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);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -