?? condition.java
字號:
package DataCenterPackage;
public class Condition {
public Condition(String property, String operation, String value) {
_property = property;
_operation = operation;
_value = value;
}
protected String _property;
protected String _operation;
protected String _value;
public final static String CO_BIGGERTHAN = ">";
public final static String CO_SMALLERTHAN = "<";
public final static String CO_EQUAL = "=";
public final static String CO_BIGGEROREQUAL = ">=";
public final static String CO_SMALLEROREQUAL = "<=";
public String toString(){
StringBuffer sb = new StringBuffer(_property);
sb.append(" ");
sb.append(_operation);
sb.append(" \'");
sb.append(_value);
sb.append("\'");
return sb.toString();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -