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

📄 functionref.java

📁 一个开源的基于java开发的数据库
💻 JAVA
字号:
package sql4j.parser;

/**
 * Insert the type's description here.
 * Creation date: (11/1/00 9:47:11 PM)
 * @author Jianguo Lu
 */
public class FunctionRef {
	private  ScalarExp scalar;
	
/**
 * FunctionRef constructor comment.
 */
public FunctionRef() {
	super();
}
public FunctionRef(	ScalarExp se) {
	scalar=se;
}
public String toString(){
		return scalar.toString();
	}
	private String op;/** FunctionRef constructor comment.

 */
 public FunctionRef(String o){
	 op=o;
 }    public FunctionRef(String op, ScalarExp se){
 }   }

⌨️ 快捷键说明

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