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

📄 callbackdestination.java

📁 CRMS客户关系管理系统(JAVA版),这是一个客户关系管理系统。
💻 JAVA
字号:
package crms.ui;/** CRMS Callback Destination. * Example code to call:<br> * <code>if (parent != null) parent.callback(this, mode, data);</code> */public interface CallbackDestination {	/** Receive a callback event from a component that has set us as the destination.	 * An example is an item or option has been selected from a component.	 * This is intended to decide what to do, return to the parent window with the results or	 * update this window.	 *  	 * @param source	The source CallbackInterface object     * @param mode		Custom value specific to the child window so that it may differentiate different modes at the parent	 * @param data		An object storing some values.  For a selected item, it may be the object that was selected.	 */	public void callback(Object source, int mode, Object data);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -