⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 idialogblockedhandler.java

📁 jfa2ce 源码帮助开发人员更好的理解运用
💻 JAVA
字号:
/******************************************************************************* * Copyright (c) 2000, 2005 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: *     IBM Corporation - initial API and implementation *******************************************************************************/package org.eclipse.jface.dialogs;import org.eclipse.core.runtime.IProgressMonitor;import org.eclipse.core.runtime.IStatus;import org.eclipse.jface.wizard.WizardDialog;import org.eclipse.swt.widgets.Shell;/** * The IDialogBlockedHandler is the handler used by * JFace to provide extra information when a * blocking has occured. There is one static instance * of this class used by WizardDialog and ModalContext. * @see org.eclipse.core.runtime.IProgressMonitorWithBlocking#clearBlocked() * @see  org.eclipse.core.runtime.IProgressMonitorWithBlocking#setBlocked(IStatus) * @see WizardDialog * @since 3.0 */public interface IDialogBlockedHandler {    /**     * The blockage has been cleared. Clear the     * extra information and resume.     */    public void clearBlocked();    /**     * A blockage has occured. Show the blockage and      * forward any actions to blockingMonitor.      * <b>NOTE:</b> This will open any blocked notification immediately     * even if there is a modal shell open.     *      * @param parentShell The shell this is being sent from. If the parent     * shell is <code>null</code> the behavior will be the same as     * IDialogBlockedHandler#showBlocked(IProgressMonitor, IStatus, String)     *      * @param blocking The monitor to forward to. This is most     * important for calls to <code>cancel()</code>.     * @param blockingStatus The status that describes the blockage     * @param blockedName The name of the locked operation.     * @see IDialogBlockedHandler#showBlocked(IProgressMonitor, IStatus, String)     */    public void showBlocked(Shell parentShell, IProgressMonitor blocking,            IStatus blockingStatus, String blockedName);    /**     * A blockage has occured. Show the blockage when there is      * no longer any modal shells in the UI and forward any actions      * to blockingMonitor.      *      * <b>NOTE:</b> As no shell has been specified this method will     * not open any blocked notification until all other modal shells     * have been closed.     *      * @param blocking The monitor to forward to. This is most     * important for calls to <code>cancel()</code>.     * @param blockingStatus The status that describes the blockage     * @param blockedName The name of the locked operation.     */    public void showBlocked(IProgressMonitor blocking, IStatus blockingStatus,            String blockedName);}

⌨️ 快捷键说明

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