📄 functionref.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 + -