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