01: /*******************************************************************************
02: * Copyright (c) 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.internal.progress;
11:
12: import org.eclipse.jface.viewers.StructuredViewer;
13:
14: /**
15: * The AbstractProgressViewer is the abstract superclass of the viewers that
16: * show progress.
17: *
18: */
19: public abstract class AbstractProgressViewer extends StructuredViewer {
20:
21: /**
22: * Add the elements to the receiver.
23: * @param elements
24: */
25: public abstract void add(Object[] elements);
26:
27: /**
28: * Remove the elements from the receiver.
29: * @param elements
30: */
31: public abstract void remove(Object[] elements);
32: }
|