Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/bundles/org.eclipse.jst.ws/src/org/eclipse/jst/ws/internal/command/StatusMonitor.java')
-rw-r--r--core/bundles/org.eclipse.jst.ws/src/org/eclipse/jst/ws/internal/command/StatusMonitor.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/core/bundles/org.eclipse.jst.ws/src/org/eclipse/jst/ws/internal/command/StatusMonitor.java b/core/bundles/org.eclipse.jst.ws/src/org/eclipse/jst/ws/internal/command/StatusMonitor.java
new file mode 100644
index 000000000..c4ac80219
--- /dev/null
+++ b/core/bundles/org.eclipse.jst.ws/src/org/eclipse/jst/ws/internal/command/StatusMonitor.java
@@ -0,0 +1,37 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2005 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();
+}

Back to the top