FleetProcess.java: add masterClear() method, use it in Main.java
[fleet.git] / src / edu / berkeley / fleet / api / FleetProcess.java
index c232405..2dd7332 100644 (file)
@@ -50,6 +50,8 @@ public abstract class FleetProcess {
     /** Terminate the process; subclasses may be assured that this will be called exactly once. */
     protected abstract void _terminate();
 
+    public void masterClear() { throw new RuntimeException("not implemented"); }
+
     /** Terminate the process. */
     public final synchronized void terminate() {
         if (terminated) return;