view dwtx/jface/util/StatusHandler.d @ 70:46a6e0e6ccd4

Merge with d-fied sources of 3.4M7
author Frank Benoit <benoit@tionex.de>
date Thu, 22 May 2008 01:36:46 +0200
parents
children 4878bef4a38e
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2008 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
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 ******************************************************************************/

module dwtx.jface.util.StatusHandler;

import dwtx.core.runtime.IStatus;

/**
 * A mechanism to handle statuses throughout JFace.
 * <p>
 * Clients may provide their own implementation to change how statuses are
 * handled from within JFace.
 * </p>
 * 
 * @see dwtx.jface.util.Policy#getStatusHandler()
 * @see dwtx.jface.util.Policy#setStatusHandler(StatusHandler)
 * 
 * @since 3.4
 */
abstract public class StatusHandler {
    
    /**
     * Show the given status.
     * 
     * @param status
     *            status to handle
     * @param title
     *            title for the status
     */
    abstract public void show(IStatus status, String title);
}