blob: cfe91deea6c3579f9c8b02fbd0b2d575d2ca37ae [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 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.jst.ws.internal.command;
import java.util.Vector;
import org.eclipse.core.runtime.IStatus;
/**
* A StatusMonitor reports IStatus information to a display system.
*/
public interface StatusMonitor
{
// Copyright
public static final String copyright = "(c) Copyright IBM Corporation 2000, 2002.";
/**
* reports the contents of the given status object.
* Subclasses must implement this method to report
* IStatus information to a given display system,
* such as SWT, the command line, or a trace file.
*/
public int reportStatus(IStatus status, Vector options);
public boolean reportStatus(IStatus status);
public void dumpSavedStatus();
public boolean canContinue();
public void reset();
}