📄 auclientinfo.java
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -