⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 comparednode.java

📁 导出ORACLE数据库对象DDL语句的程序
💻 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 + -