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

📄 deviceconfig.java

📁 ZK 基础介绍 功能操作 模块 结合数据库操作
💻 JAVA
字号:
/* DeviceConfig.java{{IS_NOTE	Purpose:			Description:			History:		Wed Oct 24 18:43:51     2007, Created by tomyeh}}IS_NOTECopyright (C) 2007 Potix Corporation. All Rights Reserved.{{IS_RIGHT	This program is distributed under GPL Version 2.0 in the hope that	it will be useful, but WITHOUT ANY WARRANTY.}}IS_RIGHT*/package org.zkoss.zk.device;/** * Used to initialize a device ({@link Device}). * * @author tomyeh * @since 3.0.0 */public interface DeviceConfig {	/** Returns the unavailable message that is shown to the client	 * if the client doesn't support this device.	 *	 * @return the unavailable message, or null if no such message	 */	public String getUnavailableMessage();	/** Returns the timeout URI for this device.	 * It is used to show the error message if the desktop being requested	 * is not found. It is usually caused by session timeout.	 * @since 3.0.0	 */	public String getTimeoutURI();	/** Returns the class that implements the server-push feature	 * ({@link org.zkoss.zk.ui.sys.ServerPush}) for this device, or null if the default is used.	 * @since 3.0.0	 */	public Class getServerPushClass();}

⌨️ 快捷键说明

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