com.objexcel.chataddin
Interface IAddInInputListener


public abstract interface IAddInInputListener

AddInInput provides a means for addins to receive their own commands from the user. To use it, subclass it and add it to an IAppWin


Method Summary
 void onUserInput(java.lang.String input)
          This method is called with user input from a windows command prompt Window.
 void onWindowClosed()
          sent when the window using this input object is closed.
 

Method Detail

onUserInput

public void onUserInput(java.lang.String input)
This method is called with user input from a windows command prompt Window.
See Also:
See Alias for some useful parsing methods (e.g. to tokenise the input)

onWindowClosed

public void onWindowClosed()
sent when the window using this input object is closed. Override it to do something if you wish. BTW: listeners should remove themselves at this point.