abortbysendredirect.java

来自「非常接近C/S操作方式的Java Ajax框架-ZK 用ZK框架使你的B/S应」· Java 代码 · 共 55 行

JAVA
55
字号
/* AbortBySendRedirect.java{{IS_NOTE	Purpose:			Description:			History:		Sun Apr 30 18:15:25     2006, Created by tomyeh}}IS_NOTECopyright (C) 2006 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.ui.impl;import org.zkoss.zk.au.AuResponse;import org.zkoss.zk.au.AuSendRedirect;import org.zkoss.zk.ui.sys.AbortingReason;/** * The aborting reason for send-redirect. * In other words, the client will redirect the specified URL. * * @author tomyeh */public class AbortBySendRedirect implements AbortingReason {	private final String _url;	private final String _target;	/** Constructs an aborting reason for send-redirect.	 *	 * @param url the target URL, never null.	 * @param target the target browser window, or null to use the current one.	 */	public AbortBySendRedirect(String url, String target) {		if (url == null) throw new IllegalArgumentException("null");		_url = url;		_target = target;	}	//-- AbortingReason --//	public boolean isAborting() {		return !_url.startsWith("mailto:") && !_url.startsWith("javascript:")			&& (_target == null || "_self".equals(_target));	}	public AuResponse getResponse() {		return new AuSendRedirect(_url, _target);	}}

⌨️ 快捷键说明

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