blob: 0c5ce0712d0b2347f314a9bd6f798f7a17c8f300 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 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.ui.statushandlers;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.jface.dialogs.ErrorSupportProvider;
import org.eclipse.jface.util.Policy;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
/**
* <p>
* A status area provider creates an area that displays detailed information
* about {@link StatusAdapter} or {@link IStatus}.
* </p>
*
* <p>
* The area provider can be set in {@link WorkbenchStatusDialogManager} as well as in
* JFace {@link Policy} since its extends {@link ErrorSupportProvider}.
* </p>
*
* @see Policy#setErrorSupportProvider(ErrorSupportProvider)
* @see WorkbenchStatusDialogManager#setSupportAreaProvider(AbstractStatusAreaProvider)
* @see WorkbenchStatusDialogManager#setDetailsAreaProvider(AbstractStatusAreaProvider)
* @since 1.1
*/
public abstract class AbstractStatusAreaProvider extends ErrorSupportProvider {
/**
* Create an area for detailed support area as a child of the given parent.
*
* @param parent
* A {@link Composite} that will host support area.
* @param statusAdapter
* The {@link StatusAdapter} to be supported.
* @return a control, that hold all support elements.
*/
public abstract Control createSupportArea(Composite parent,
StatusAdapter statusAdapter);
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.dialogs.ErrorSupportProvider#createSupportArea(org.eclipse.swt.widgets.Composite,
* org.eclipse.core.runtime.IStatus)
*/
public final Control createSupportArea(Composite parent, IStatus status) {
return createSupportArea(parent, new StatusAdapter(status));
}
/**
* This method is called before
* {@link #createSupportArea(Composite, StatusAdapter)} to check if it will
* display any significant implementation.
* <p>
* <b>Important</b>: This API is a part of work in progress and therefore is
* suitable only for support area providers (which are presented in the
* status dialog tray).
* </p>
*
* @param statusAdapter
* - {@link StatusAdapter} for which status are will be
* requested.
* @return true if provider is able to process particular
* {@link StatusAdapter}
* @since 1.4
*/
public boolean validFor(StatusAdapter statusAdapter) {
return true;
}
}