1 33 34 package edu.rice.cs.drjava.model.repl; 35 36 import java.io.File ; 37 38 41 public interface InteractionsListener { 42 43 44 public void interactionStarted(); 45 46 47 public void interactionEnded(); 48 49 53 public void interactionErrorOccurred(int offset, int length); 54 55 56 public void interpreterResetting(); 57 58 59 public void interpreterReady(File wd); 60 61 64 public void interpreterResetFailed(Throwable t); 65 66 69 public void interpreterExited(int status); 70 71 75 public void interpreterChanged(boolean inProgress); 76 77 78 public void interactionIncomplete(); 79 80 81 public void slaveJVMUsed(); 82 } 83 | Popular Tags |