apps.threedbuttonsexperiment.logger
Interface LogListener

All Known Implementing Classes:
TrialLog

public interface LogListener

The listener interface for receiving log events. The class that is interested in processing a log event implements this interface, and the object created with that class is registered with a component using the component's addLogListener method. When the log event occurs, that object's appropriate method is invoked.

See Also:
LogEvent

Method Summary
 void deleteKeyPressed()
          Delete key pressed.
 void keyPressed(java.lang.String key)
          Key pressed.
 void submitKeyPressed()
          Submit key pressed.
 

Method Detail

deleteKeyPressed

void deleteKeyPressed()
Delete key pressed.


keyPressed

void keyPressed(java.lang.String key)
Key pressed.

Parameters:
key - the key

submitKeyPressed

void submitKeyPressed()
Submit key pressed.