亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? execution.java

?? 非常接近C/S操作方式的Java Ajax框架-ZK 用ZK框架使你的B/S應用程序更漂亮更易操作。 官網:www.zkoss.org
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
	 * @param uri the URI of the page file.	 *	 * @see #getPageDefinitionDirectly(String, String)	 * @see #getPageDefinitionDirectly(Document, String)	 * @see #getPageDefinitionDirectly(Reader, String)	 */	public PageDefinition getPageDefinition(String uri);	/** Converts the specified page content to a page definition.	 *	 * <p>Implemetation Notes: this method must invoke	 * {@link org.zkoss.zk.ui.sys.UiFactory#getPageDefinitionDirectly(org.zkoss.zk.ui.sys.RequestInfo, String, String)}	 *	 * @param content the raw content of the page. It must be in ZUML.	 * @param extension the default extension if the content doesn't specify	 * an language. In other words, if	 * the content doesn't specify an language, {@link LanguageDefinition#getByExtension}	 * is called.	 * If extension is null and the content doesn't specify a language,	 * the language called "xul/html" is assumed.	 * @see #getPageDefinitionDirectly(Document, String)	 * @see #getPageDefinitionDirectly(Reader, String)	 * @see #getPageDefinition	 */	public PageDefinition getPageDefinitionDirectly(String content, String extension);	/** Converts the specified page content, in DOM, to a page definition.	 *	 * @param content the raw content of the page in DOM.	 * @param extension the default extension if the content doesn't specify	 * an language. In other words, if	 * the content doesn't specify an language, {@link LanguageDefinition#getByExtension}	 * is called.	 * If extension is null and the content doesn't specify a language,	 * the language called "xul/html" is assumed.	 * @see #getPageDefinitionDirectly(String, String)	 * @see #getPageDefinitionDirectly(Reader, String)	 * @see #getPageDefinition	 */	public PageDefinition getPageDefinitionDirectly(Document content, String extension);	/** Reads the raw content from a reader and converts it into	 * a page definition.	 *	 * @param reader used to input the raw content of the page. It must be in ZUML.	 * @param extension the default extension if the content doesn't specify	 * an language. In other words, if	 * the content doesn't specify an language, {@link LanguageDefinition#getByExtension}	 * is called.	 * If extension is null and the content doesn't specify a language,	 * the language called "xul/html" is assumed.	 * @see #getPageDefinitionDirectly(String, String)	 * @see #getPageDefinitionDirectly(Document, String)	 * @see #getPageDefinition	 */	public PageDefinition getPageDefinitionDirectly(Reader reader, String extension)	throws IOException;	/** Creates components from the specified page definition.	 *	 * @param pagedef the page definition to use. It cannot be null.	 * @param parent the parent component, or null if you want it to be	 * a root component. If parent is null, the page is assumed to be	 * the current page, which is determined by the execution context.	 * @param arg a map of parameters that is accessible by the arg variable	 * in EL, or by {@link Execution#getArg}.	 * Ignored if null.	 * @return the first component being created.	 * @see #createComponents(String, Component, Map)	 */	public Component createComponents(PageDefinition pagedef,	Component parent, Map arg);	/** Creates components from a page file specified by an URI.	 *	 * <p>It loads the page definition from the specified URI (by	 * use {@link #getPageDefinition} ), and then	 * invokes {@link #createComponents(PageDefinition,Component,Map)}	 * to create components.	 *	 * @param parent the parent component, or null if you want it to be	 * a root component. If parent is null, the page is assumed to be	 * the current page, which is determined by the execution context.	 * @param arg a map of parameters that is accessible by the arg variable	 * in EL, or by {@link Execution#getArg}.	 * Ignored if null.	 * @see #createComponents(PageDefinition, Component, Map)	 * @see #createComponentsDirectly(String, String, Component, Map)	 * @see #createComponentsDirectly(Document, String, Component, Map)	 * @see #createComponentsDirectly(Reader, String, Component, Map)	 */	public Component createComponents(String uri, Component parent,	Map arg);	/** Creates components from the raw content specified by a string.	 *	 * <p>The raw content is parsed to a page defintion by use of	 * {@link #getPageDefinitionDirectly(String, String)}, and then	 * invokes {@link #createComponents(PageDefinition,Component,Map)}	 * to create components.	 *	 * @param content the raw content of the page. It must be in ZUML.	 * @param extension the default extension if the content doesn't specify	 * an language. In other words, if	 * the content doesn't specify an language, {@link LanguageDefinition#getByExtension}	 * is called.	 * If extension is null and the content doesn't specify a language,	 * the language called "xul/html" is assumed.	 * @param parent the parent component, or null if you want it to be	 * a root component. If parent is null, the page is assumed to be	 * the current page, which is determined by the execution context.	 * @param arg a map of parameters that is accessible by the arg variable	 * in EL, or by {@link Execution#getArg}.	 * Ignored if null.	 * @see #createComponents(PageDefinition, Component, Map)	 * @see #createComponents(String, Component, Map)	 * @see #createComponentsDirectly(Document, String, Component, Map)	 * @see #createComponentsDirectly(Reader, String, Component, Map)	 */	public Component createComponentsDirectly(String content, String extension,	Component parent, Map arg);	/** Creates components from the raw content specified by a DOM tree.	 *	 * <p>The raw content is parsed to a page defintion by use of	 * {@link #getPageDefinitionDirectly(Document, String)}, and then	 * invokes {@link #createComponents(PageDefinition,Component,Map)}	 * to create components.	 *	 * @param content the raw content in DOM.	 * @param extension the default extension if the content doesn't specify	 * an language. In other words, if	 * the content doesn't specify an language, {@link LanguageDefinition#getByExtension}	 * is called.	 * If extension is null and the content doesn't specify a language,	 * the language called "xul/html" is assumed.	 * @param parent the parent component, or null if you want it to be	 * a root component. If parent is null, the page is assumed to be	 * the current page, which is determined by the execution context.	 * @param arg a map of parameters that is accessible by the arg variable	 * in EL, or by {@link Execution#getArg}.	 * Ignored if null.	 * @see #createComponents(PageDefinition, Component, Map)	 * @see #createComponents(String, Component, Map)	 * @see #createComponentsDirectly(Document, String, Component, Map)	 * @see #createComponentsDirectly(Reader, String, Component, Map)	 */	public Component createComponentsDirectly(Document content, String extension,	Component parent, Map arg);	/** Creates components from the raw content read from the specified reader.	 *	 * <p>The raw content is loaded and parsed to a page defintion by use of	 * {@link #getPageDefinitionDirectly(Reader,String)}, and then	 * invokes {@link #createComponents(PageDefinition,Component,Map)}	 * to create components.	 *	 * @param reader the reader to retrieve the raw content in ZUML.	 * @param extension the default extension if the content doesn't specify	 * an language. In other words, if	 * the content doesn't specify an language, {@link LanguageDefinition#getByExtension}	 * is called.	 * If extension is null and the content doesn't specify a language,	 * the language called "xul/html" is assumed.	 * @param parent the parent component, or null if you want it to be	 * a root component. If parent is null, the page is assumed to be	 * the current page, which is determined by the execution context.	 * @param arg a map of parameters that is accessible by the arg variable	 * in EL, or by {@link Execution#getArg}.	 * Ignored if null.	 * @see #createComponents(PageDefinition, Component, Map)	 * @see #createComponents(String, Component, Map)	 * @see #createComponentsDirectly(Document, String, Component, Map)	 * @see #createComponentsDirectly(String, String, Component, Map)	 */	public Component createComponentsDirectly(Reader reader, String extension,	Component parent, Map arg) throws IOException;	/** Sends a temporary redirect response to the client using the specified	 * redirect location URL.	 *	 * <p>It is the same as sendRedirect(url, null).	 *	 * <p>After calling this method, the caller shall end the processing	 * immediately (by returning). All pending requests and events will	 * be dropped.	 *	 * @param uri the URI to redirect to, or null to reload the same page	 */	public void sendRedirect(String uri);	/** Sends a temporary redirect response to the client using the specified	 * redirect location URL and redirect to the specified browser window.	 *	 * <p>After calling this method, the caller shall end the processing	 * immediately (by returning). All pending requests and events will	 * be dropped.	 *	 * <p>Note: if you specify target other than null and "_self", it'll	 * fail if the browser prevent the server to popup a window.	 *	 * @param uri the URI to redirect to, or null to reload the same page	 * @param target the name of the browser window that send-redirect will	 * load the sepcified URI, or null if the current browser window	 * is used.	 */	public void sendRedirect(String uri, String target);	/** Returns the parameters (aka., arg) if {@link #pushArg} is called recently,	 * or an empty map if not available.	 *	 * <p>The use of parameters is application dependent.	 * ZK only provides the way to store ({@link #pushArg} and to	 * restore {@link #popArg}. And, let the parameters being accessible in	 * EL by referring it as the arg variable.	 *	 * <p>Currently, {@link #createComponents(String,Component,Map)}	 * and similar methods use this mechanism to let caller customize a page	 * definition.	 *	 * <p>Notice that {@link #createComponents(String,Component,Map)}	 * pops arg after creating components, and before processing any event.	 * In other words, it is not aviable for event listener, including onCreate.	 * However, {@link org.zkoss.zk.ui.event.CreateEvent#getArg} preserves	 * the map for its event listeners.	 */	public Map getArg();	/** Pushes the parameters (aka., arg) that EL could refer it by the arg variable.	 * Remember to call {@link #popArg} in the finally clause.	 * @see #getArg	 */	public void pushArg(Map arg);	/** Pops the parameters (aka., arg) that is pushed by {@link #pushArg}.	 * <p>It never throws an exception.	 * @see #getArg	 */	public void popArg();	/** Adds an asynchronous response ({@link AuResponse}) which will be	 * sent to client at the end of the execution.	 *	 * <p>If {@link AuResponse#getDepends} is not null, the response	 * depends on the returned componet. In other words, the response	 * is removed if the component is removed.	 * If it is null, the response is component-independent.	 *	 * @param key could be anything. The second invocation of this method	 * in the same execution with the same key will override the previous one.	 */	public void addAuResponse(String key, AuResponse resposne);	/** Returns whether the client is a browser.	 */	public boolean isBrowser();	/** Returns whether the client is a robot (such as Web crawlers).	 *	 * <p>Because there are too many robots, it returns true if the user-agent	 * is not recognized.	 */	public boolean isRobot();	/** Returns whether the client is Internet Explorer.	 * If true, it also implies {@link #isExplorer7} is true.	 */	public boolean isExplorer();	/** Returns whether the client is Internet Explorer 7 or later.	 */	public boolean isExplorer7();	/** Returns whether the client is Gecko based, such as Mozilla, Firefox and Camino.	 */	public boolean isGecko();	/** Returns whether the client is Safari.	 */	public boolean isSafari();	/** Returns the native request, or null if not available.	 *	 * <p>The returned object depends on the Web container.	 * If it is based Java servlet container, an instance of	 * javax.servlet.ServletRequest is returned.	 */	public Object getNativeRequest();	/** Returns the native response, or null if not available.	 *	 * <p>The returned object depends on the Web container.	 * If it is based Java servlet container, an instance of	 * javax.servlet.ServletResponse is returned.	 */	public Object getNativeResponse();	/** Returns the value of the specified request attribute.	 */	public Object getAttribute(String name);	/** Sets the value of the specified request attribute.	 */	public void setAttribute(String name, Object value);	/** Removes the specified request attribute.	 */	public void removeAttribute(String name);	/** Returns a map of request attributes associated with this session.	 */	public Map getAttributes();}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品无码三级在线观看视频 | 欧美一区二区三区四区视频| 日韩一区二区在线观看视频| 中文字幕欧美国产| 午夜精品久久久久久久久| 精品一区二区三区欧美| 欧美日韩另类一区| 国产精品久久久久7777按摩| 蜜臀av亚洲一区中文字幕| 91官网在线免费观看| 国产精品午夜在线观看| 久久国产精品99精品国产| 欧美午夜视频网站| 亚洲色图.com| 成人午夜在线免费| 久久久综合精品| 美女mm1313爽爽久久久蜜臀| 欧美日韩免费在线视频| 免费看日韩a级影片| 99精品视频在线免费观看| 久久综合成人精品亚洲另类欧美 | 热久久久久久久| 在线观看一区二区精品视频| 国产精品国产三级国产有无不卡 | 91免费看视频| 国产精品网曝门| 国产一区在线精品| 亚洲精品在线免费播放| 麻豆传媒一区二区三区| 欧美一区二区三区在线观看视频| 亚洲黄色尤物视频| 在线影视一区二区三区| 亚洲欧美成人一区二区三区| 成a人片国产精品| 国产精品人成在线观看免费| 国产成人在线电影| 久久久精品一品道一区| 狠狠色狠狠色综合| 精品国产sm最大网站免费看| 蜜桃久久精品一区二区| 日韩你懂的在线观看| 麻豆精品在线播放| 欧美一级二级在线观看| 精品影院一区二区久久久| 精品国产一区a| 成人综合日日夜夜| 亚洲视频在线一区| 欧美性猛交一区二区三区精品| 亚洲国产日产av| 日韩小视频在线观看专区| 久久丁香综合五月国产三级网站| 久久综合九色综合97婷婷 | 久久日韩精品一区二区五区| 国产乱国产乱300精品| 中文字幕不卡三区| 91官网在线免费观看| 日韩国产欧美一区二区三区| 欧美成人在线直播| www.亚洲免费av| 一区二区三区高清不卡| 日韩欧美久久久| jizz一区二区| 五月婷婷综合在线| 久久欧美中文字幕| 在线观看av一区二区| 久久99精品一区二区三区三区| 欧美激情一区三区| 欧美性猛片aaaaaaa做受| 一区二区三区鲁丝不卡| 国产精品久久久久久久久快鸭| 亚洲一二三区视频在线观看| 日韩写真欧美这视频| 成人午夜视频网站| 亚洲一二三四久久| 精品第一国产综合精品aⅴ| 成人av动漫在线| 日韩极品在线观看| 国产精品麻豆视频| 欧美色手机在线观看| 国内精品嫩模私拍在线| 亚洲男人天堂av网| 久久久精品天堂| 欧美人妖巨大在线| av不卡在线播放| 日韩成人一区二区三区在线观看| 欧美韩国日本一区| 欧美一二区视频| 91国偷自产一区二区三区观看| 国产中文字幕一区| 五月激情综合网| 亚洲色图丝袜美腿| 国产喂奶挤奶一区二区三区| 欧美麻豆精品久久久久久| 91视频在线观看| 成人免费高清视频在线观看| 美女网站在线免费欧美精品| 一区二区国产盗摄色噜噜| 日本一区免费视频| 2023国产一二三区日本精品2022| 色播五月激情综合网| 丁香婷婷综合网| 三级欧美在线一区| 久久精品一区二区| 91精品国产一区二区三区蜜臀| 成人av网址在线观看| 国产激情偷乱视频一区二区三区| 喷白浆一区二区| 日韩精品欧美成人高清一区二区| 亚洲综合无码一区二区| 亚洲欧美另类在线| 亚洲免费av在线| 亚洲免费在线视频| 亚洲激情五月婷婷| 亚洲另类一区二区| 亚洲品质自拍视频| 一区二区三区国产精华| 一区二区日韩av| 亚洲一本大道在线| 午夜欧美电影在线观看| 亚洲伦理在线精品| 一区二区三区四区国产精品| 亚洲乱码国产乱码精品精98午夜 | 国产suv精品一区二区883| 国产精品99久久久久久久vr| 国产精品中文有码| 成人综合日日夜夜| 99久久免费视频.com| 91免费在线视频观看| 欧美性一区二区| 日韩一区二区视频| 久久―日本道色综合久久| 国产精品五月天| 亚洲精选在线视频| 亚洲成人av电影在线| 男男成人高潮片免费网站| 久久精品噜噜噜成人av农村| 国产精品中文字幕欧美| 91在线国产福利| 欧美挠脚心视频网站| 精品国产一区二区三区四区四| 久久婷婷色综合| 综合av第一页| 视频一区在线视频| 国产精品综合视频| 99国产精品国产精品毛片| 欧美视频中文字幕| 精品久久一区二区三区| 国产精品青草久久| 天天综合网天天综合色| 国模少妇一区二区三区| 99精品一区二区| 日韩一区二区三区电影在线观看 | 亚洲午夜在线电影| 精品午夜久久福利影院| 色综合天天视频在线观看| 91麻豆精品91久久久久久清纯| 26uuu国产在线精品一区二区| 亚洲欧美在线另类| 日韩av在线免费观看不卡| 处破女av一区二区| 制服丝袜成人动漫| 中文字幕亚洲视频| 九色综合狠狠综合久久| 欧洲一区二区三区免费视频| 久久久电影一区二区三区| 亚洲私人黄色宅男| 精品一区二区三区香蕉蜜桃| 91成人看片片| 国产精品丝袜一区| 日本欧美肥老太交大片| 99精品国产视频| 久久婷婷综合激情| 麻豆视频一区二区| 欧美日韩不卡一区| 亚洲精品少妇30p| 国产99久久久精品| 精品对白一区国产伦| 日韩专区中文字幕一区二区| 91丨porny丨蝌蚪视频| 久久精品一区二区三区av| 免费成人在线观看视频| 欧美日韩一区二区三区四区五区| 中文字幕乱码日本亚洲一区二区 | 精品久久久久久久久久久久久久久久久 | 91精彩视频在线观看| 国产精品网曝门| 国产激情一区二区三区四区 | 色综合久久久久综合体| 欧美激情中文不卡| 国产精品夜夜爽| 欧美精品一区二区三区久久久| 免费不卡在线视频| 91麻豆精品国产91久久久久久 | 欧美日韩国产综合久久| 一区二区三区在线视频观看| 成av人片一区二区| 国产精品久久久久一区二区三区共| 国产精品99久久久久| 久久久精品免费网站| 国产成人午夜片在线观看高清观看|