rulesymbol.java

来自「SRI international 发布的OAA框架软件」· Java 代码 · 共 47 行

JAVA
47
字号
package antlr_oaa;

/* ANTLR Translator Generator
 * Project led by Terence Parr at http://www.jGuru.com
 * Software rights: http://www.antlr.org/RIGHTS.html
 *
 * $Id: RuleSymbol.java,v 1.1 2002/11/08 17:37:45 agno Exp $
 */

import antlr_oaa.collections.impl.Vector;

class RuleSymbol extends GrammarSymbol {
    RuleBlock block;	// list of alternatives
    boolean defined;	// has the rule been defined yet?
    Vector references;	// list of all nodes referencing this rule
			// not strictly needed by generic symbol table
			// but we will almost always analyze/gen code
    String access;	// access specifier for this rule
    String comment;	// A javadoc comment if any.
    
    public RuleSymbol(String r) {
	super(r);
	references = new Vector();
    }
    public void addReference(RuleRefElement e) {
	references.appendElement(e);
    }
    public RuleBlock getBlock() {
	return block;
    }
    public RuleRefElement getReference(int i) {
	return (RuleRefElement)references.elementAt(i);
    }
    public boolean isDefined() {
	return defined;
    }
    public int numReferences() {
	return references.size();
    }
    public void setBlock(RuleBlock rb) {
	block = rb;
    }
    public void setDefined() {
	defined = true;
    }
}

⌨️ 快捷键说明

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