⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 commonast.java

📁 linux下建立JAVA虚拟机的源码KAFFE
💻 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: CommonAST.java,v 1.2 2005/12/24 21:50:48 robilad Exp $ */import antlr.collections.AST;/** Common AST node implementation */public class CommonAST extends BaseAST {    int ttype = Token.INVALID_TYPE;    String text;    /** Get the token text for this node */    public String getText() {        return text;    }    /** Get the token type for this node */    public int getType() {        return ttype;    }    public void initialize(int t, String txt) {        setType(t);        setText(txt);    }    public void initialize(AST t) {        setText(t.getText());        setType(t.getType());    }    public CommonAST() {    }    public CommonAST(Token tok) {        initialize(tok);    }    public void initialize(Token tok) {        setText(tok.getText());        setType(tok.getType());    }    /** Set the token text for this node */    public void setText(String text_) {        text = text_;    }    /** Set the token type for this node */    public void setType(int ttype_) {        ttype = ttype_;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -