functionref.java

来自「一个开源的基于java开发的数据库」· Java 代码 · 共 29 行

JAVA
29
字号
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 + =
减小字号Ctrl + -
显示快捷键?