edu.rice.cs.drjava.ui
Interface InteractionsController.ConsoleStateListener

All Superinterfaces:
EventListener
Enclosing class:
InteractionsController

public static interface InteractionsController.ConsoleStateListener
extends EventListener

A listener interface that allows for others outside the interactions controller to be notified when the input console is enabled in the interactions pane.


Method Summary
 void consoleInputCompleted(String result, InteractionsController c)
          Called when the console input is complete.
 void consoleInputStarted(InteractionsController c)
          Called when the input console is started in the interactions pane.
 

Method Detail

consoleInputStarted

void consoleInputStarted(InteractionsController c)
Called when the input console is started in the interactions pane.

This method is called from the thread that initiated the console input,


consoleInputCompleted

void consoleInputCompleted(String result,
                           InteractionsController c)
Called when the console input is complete.

This method is called from the thread that initiated the console input.

Parameters:
result - The text that was inputted to the console