view dwtx/jface/util/ISafeRunnableRunner.d @ 4:c87617952847

some JFace modules
author Frank Benoit <benoit@tionex.de>
date Fri, 28 Mar 2008 17:08:33 +0100
parents
children
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2005, 2006 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:
 *     Chris Gross (schtoo@schtoo.com) - initial API and implementation
 *       (bug 49497 [RCP] JFace dependency on dwtx.core.runtime enlarges standalone JFace applications)
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/

module dwtx.jface.util.ISafeRunnableRunner;

import dwtx.core.runtime.ISafeRunnable;

/**
 * Runs a safe runnables.
 * <p>
 * Clients may provide their own implementation to change
 * how safe runnables are run from within JFace.
 * </p>
 *
 * @see SafeRunnable#getRunner()
 * @see SafeRunnable#setRunner(ISafeRunnableRunner)
 * @see SafeRunnable#run(ISafeRunnable)
 * @since 3.1
 */
public interface ISafeRunnableRunner {

    /**
     * Runs the runnable.  All <code>ISafeRunnableRunners</code> must catch any exception
     * thrown by the <code>ISafeRunnable</code> and pass the exception to
     * <code>ISafeRunnable.handleException()</code>.
     * @param code the code executed as a save runnable
     *
     * @see SafeRunnable#run(ISafeRunnable)
     */
    public abstract void run(ISafeRunnable code);

}