📄 comparednode.java
字号:
package com.icbcsdc.ddlexp.pub.xml.nodeinfo;
import java.util.Hashtable;
/**
* @author zhangyc
*
* To change this generated comment edit the template variable "typecomment":
* Window>Preferences>Java>Templates.
* To enable and disable the creation of type comments go to
* Window>Preferences>Java>Code Generation.
*/
public interface ComparedNode {
public static final byte NO_COMPARED=0; //未曾比较
public static final byte SRC_EXIST_DST_NULL=1; //数据对象在源数据库中存在,在目标数据库中不存在
public static final byte SRC_NULL_DST_EXIST=2; //数据对象在源数据库中不存在,在目标数据库中存在
public static final byte SRC_DST_SAME=3; //数据对象在源数据库中和目标数据库中相同
public static final byte SRC_DST_DIFF=4; //数据对象在源数据库中和目标数据库中不同
public static final byte COMPARED=5; //对象已经比较,但是不知比较结果
public void refreshChangedProperties() throws Exception;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -