📄 testfornull.java
字号:
package sql4j.parser;
/**
* Insert the type's description here.
* Creation date: (10/31/00 1:04:22 AM)
* @author: Jianguo Lu
*/
import sql4j.schema.*;
public class TestForNull extends AtomicWhereCondition{
String label;
/**
* TestForNull constructor comment.
*/
public TestForNull() {
super();
}
public TestForNull(String s, Column c){
label=s;
column1=c;
}
/**
* Insert the method's description here.
* Creation date: (1/30/01 6:58:06 AM)
* @return java.lang.String
*/
public String toString() {
return column1.toString()+" "+ label +" null";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -