📄 filelineformatter.java
字号:
package antlr;/* ANTLR Translator Generator * Project led by Terence Parr at http://www.cs.usfca.edu * Software rights: http://www.antlr.org/license.html * * $Id: FileLineFormatter.java,v 1.2 2005/12/24 21:50:48 robilad Exp $ */public abstract class FileLineFormatter { private static FileLineFormatter formatter = new DefaultFileLineFormatter(); public static FileLineFormatter getFormatter() { return formatter; } public static void setFormatter(FileLineFormatter f) { formatter = f; } /** @param fileName the file that should appear in the prefix. (or null) * @param line the line (or -1) * @param column the column (or -1) */ public abstract String getFormatString(String fileName, int line, int column);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -