| java.lang.Object org.zkoss.zkmob.ui.ZkDesktop
ZkDesktop | public class ZkDesktop implements ZkComponent(Code) | | A virtual component that holds information regarding ZK server's Desktop, Page, Device, and other things.
author: henrichen |
addCommand | public void addCommand(Command cmd)(Code) | | |
addDisplayable | public void addDisplayable(Displayable disp)(Code) | | |
encodeURI | final public static String encodeURI(String s)(Code) | | Does the HTTP encoding for the URI location.
For example, '%' is translated to '%25'.
Parameters: s - the string to encode; null is OK the encoded string or null if s is null See Also: ZkDesktop.encodeURIComponent |
encodeURIComponent | final public static String encodeURIComponent(String s)(Code) | | Does the HTTP encoding for a URI query parameter.
For example, '/' is translated to '%2F'.
Both name and value must be encoded seperately. Example,
encodeURIComponent(name) + '=' + encodeURIComponent(value) .
Parameters: s - the string to encode; null is OK the encoded string or null if s is null See Also: ZkDesktop.addToQueryString(StringBuffer,String,Object) See Also: ZkDesktop.encodeURI |
executeResponse | public void executeResponse(RTag rtag)(Code) | | |
getCommandListener | public CommandListener getCommandListener()(Code) | | |
getCurrent | public Displayable getCurrent()(Code) | | |
getItemCommandListener | public ItemCommandListener getItemCommandListener()(Code) | | |
getItemStateListener | public ItemStateListener getItemStateListener()(Code) | | |
lookupUi | public ZkComponent lookupUi(String id)(Code) | | lookup a registered component by id.
Parameters: id - the component id |
registerUi | public void registerUi(String id, ZkComponent comp)(Code) | | register an Ui Object to an id.
Parameters: id - the component id Parameters: comp - the component |
removeCommand | public void removeCommand(Command cmd)(Code) | | |
removeDesktop | public void removeDesktop()(Code) | | |
setCurrent | public void setCurrent(Displayable current)(Code) | | |
unregisterUi | public void unregisterUi(String id)(Code) | | unregister an Ui Object.
Parameters: id - the component id |
|
|