kirk.gui.dialog
Interface InputAcceptor

All Known Implementing Classes:
InputRetriever

public interface InputAcceptor

This interface allows classes to retrieve the value(s) from an InputDialog. It prescribes one method: setInputValue(Object value), which will be called when the InputDialog is closed.

Version:
1
Author:
Berend "Kirk" Wouda
See Also:
InputDialog

Method Summary
 void setInputValue(java.lang.Object value)
          The method that sets the value(s) in this InputAcceptor.
 

Method Detail

setInputValue

public void setInputValue(java.lang.Object value)
The method that sets the value(s) in this InputAcceptor. Remember, Array is also an object. If you want to pass multiple values back, just use an Array, a List or a custom object.