All Packages  Class Hierarchy  This Package  Previous  Next  Index
  Interface com.cometway.jerminal.JerminalListenerInterface
  -  public interface JerminalListenerInterface
 
This interface is implemented by classes that want to listen for notifications from
 a Jerminal.
  
  -  
	notifyExecutingCommand(String)
   -   This method is called if the jerminal is executing a JerminalCommand.
  
 -  
	notifyFinishedExecutingCommand(String)
   -   This method is called if the jerminal has finished executing a JerminalCommand.
  
 -  
	notifyFinishedRunningBinary()
   -   This method is called when the Jerminal has finished executing a binary.
  
 -  
	notifyInvalidCommand()
   -   This method is called if a command is issued to the Jerminal that was invalid.
  
 -  
	notifyJerminalExiting()
   -   This method is called when the Jerminal is exiting.
  
 -  
	notifyRunningBinary()
   -   This method is called if the Jerminal is executing a binary.
 
  
notifyRunningBinary
 public abstract void notifyRunningBinary()
  -  This method is called if the Jerminal is executing a binary.
 
notifyFinishedRunningBinary
 public abstract void notifyFinishedRunningBinary()
  -  This method is called when the Jerminal has finished executing a binary.
 
notifyInvalidCommand
 public abstract void notifyInvalidCommand()
  -  This method is called if a command is issued to the Jerminal that was invalid.
 
notifyExecutingCommand
 public abstract void notifyExecutingCommand(String command)
  -  This method is called if the jerminal is executing a JerminalCommand.
 
notifyFinishedExecutingCommand
 public abstract void notifyFinishedExecutingCommand(String command)
  -  This method is called if the jerminal has finished executing a JerminalCommand.
 
notifyJerminalExiting
 public abstract void notifyJerminalExiting()
  -  This method is called when the Jerminal is exiting.
 
All Packages  Class Hierarchy  This Package  Previous  Next  Index