auclientinfo.java
来自「ZK 基础介绍 功能操作 模块 结合数据库操作」· Java 代码 · 共 47 行
JAVA
47 行
/* AuClientInfo.java{{IS_NOTE Purpose: Description: History: Fri Jul 28 11:39:43 2006, Created by tomyeh}}IS_NOTECopyright (C) 2006 Potix Corporation. All Rights Reserved.{{IS_RIGHT}}IS_RIGHT*/package org.zkoss.zk.au.out;import org.zkoss.zk.ui.Desktop;import org.zkoss.zk.au.AuResponse;/** * A response to ask the browser to send back its information. * * @author tomyeh * @see org.zkoss.zk.ui.event.ClientInfoEvent * @since 3.0.0 */public class AuClientInfo extends AuResponse { /** Contructs a client-info response with the specified desktop. * * @param desktop the desktop to get the client info back. * If null, the client info is sent back for each desktop in the * same browser window. * @since 3.0.0 */ public AuClientInfo(Desktop desktop) { super("clientInfo", desktop != null ? desktop.getId(): null); } /** Constructs a client-info response for all desktops of the same * browser window. */ public AuClientInfo() { this(null); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?