misim.util
Interface LogListener
- All Known Implementing Classes:
- MiSimDE
- public interface LogListener
The LogListener interface provides methods to respond to events
that the user should be informed of - either by logging them or
displaying them on screen in some way. This is implemented by
the main MiSimDE class to co-ordinate information generated by
other miSim components.
Method Summary |
void |
announce(java.lang.String message)
Logging method displays the given message both on the
bottom panel of the application and at the tail of the
log window |
void |
report(java.lang.String message)
Logging method that only displays the given message on
the bottom panel of the application |
announce
public void announce(java.lang.String message)
- Logging method displays the given message both on the
bottom panel of the application and at the tail of the
log window
- Parameters:
message
- The message to display
report
public void report(java.lang.String message)
- Logging method that only displays the given message on
the bottom panel of the application
- Parameters:
message
- The message to display