📄 sexpr.java
字号:
/*
* SExpr.java
*
* Copyright 1997 Massachusetts Institute of Technology.
* All Rights Reserved.
*
* Author: Ora Lassila
*
* $Id: SExpr.java,v 1.2 1998/01/22 13:09:00 bmahe Exp $
*/
package org.w3c.tools.sexpr;
import java.io.PrintStream;
/**
* Interface for all new s-expression subtypes.
*/
public interface SExpr {
/**
* Print a representation of the s-expression into the output stream.
*/
public void printExpr(PrintStream out);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -