blob: 674222bc878d23fe9540e713b628ab405d0bafd8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.progress;
import org.eclipse.jface.viewers.StructuredViewer;
/**
* The AbstractProgressViewer is the abstract superclass of the viewers that
* show progress.
*
*/
public abstract class AbstractProgressViewer extends StructuredViewer {
/**
* Add the elements to the receiver.
*
* @param elements job tree elements to add
*/
public abstract void add(JobTreeElement... elements);
/**
* Remove the elements from the receiver.
*
* @param elements job tree elements to remove
*/
public abstract void remove(JobTreeElement... elements);
}