x1ptokendef.java
来自「有关编译器的编译器.」· Java 代码 · 共 106 行
JAVA
106 行
/* This file was generated by SableCC (http://www.sablecc.org/). */package org.sablecc.sablecc.node;import org.sablecc.sablecc.analysis.*;public final class X1PTokenDef extends XPTokenDef{ private XPTokenDef _xPTokenDef_; private PTokenDef _pTokenDef_; public X1PTokenDef() {} public X1PTokenDef( XPTokenDef _xPTokenDef_, PTokenDef _pTokenDef_) { setXPTokenDef(_xPTokenDef_); setPTokenDef(_pTokenDef_); } public Object clone() { throw new RuntimeException("Unsupported Operation"); } public void apply(Switch sw) { throw new RuntimeException("Switch not supported."); } public XPTokenDef getXPTokenDef() { return _xPTokenDef_; } public void setXPTokenDef(XPTokenDef node) { if(_xPTokenDef_ != null) { _xPTokenDef_.parent(null); } if(node != null) { if(node.parent() != null) { node.parent().removeChild(node); } node.parent(this); } _xPTokenDef_ = node; } public PTokenDef getPTokenDef() { return _pTokenDef_; } public void setPTokenDef(PTokenDef node) { if(_pTokenDef_ != null) { _pTokenDef_.parent(null); } if(node != null) { if(node.parent() != null) { node.parent().removeChild(node); } node.parent(this); } _pTokenDef_ = node; } void removeChild(Node child) { if(_xPTokenDef_ == child) { _xPTokenDef_ = null; } if(_pTokenDef_ == child) { _pTokenDef_ = null; } } void replaceChild(Node oldChild, Node newChild) {} public String toString() { return "" + toString(_xPTokenDef_) + toString(_pTokenDef_); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?