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

📄 astarray.java

📁 mysql集群
💻 JAVA
字号:
/* Generated By:JJTree: Do not edit this line. ASTArray.java */

package com.meidusa.amoeba.sqljep;


/**
 * 	This class is used only for IN (exp,exp,...) predicate. 
 *  All children of node with type ASTArray are items of an array.
 * @see com.meidusa.amoeba.sqljep.function.In
 */
public class ASTArray extends SimpleNode {
  public ASTArray(int id) {
    super(id);
  }

  public ASTArray(Parser p, int id) {
    super(p, id);
  }

  /** Accept the visitor. **/
  public Object jjtAccept(ParserVisitor visitor, Object data) throws ParseException {
    return visitor.visit(this, data);
  }
}

⌨️ 快捷键说明

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