Package com.pixelmed.utils
Interface MessageLogger
-
- All Known Implementing Classes:
DialogMessageLogger
,PrintStreamMessageLogger
public interface MessageLogger
An interface to communicate log and status messages.
Both methods must be implemented.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
send(java.lang.String message)
Append the supplied text to the log.void
sendLn(java.lang.String message)
Append the supplied text to the log, followed by a new line.
-
-
-
Method Detail
-
send
void send(java.lang.String message)
Append the supplied text to the log.
- Parameters:
message
- the (possibly multi-line) text to append to the log
-
sendLn
void sendLn(java.lang.String message)
Append the supplied text to the log, followed by a new line.
- Parameters:
message
- the (possibly multi-line) text to append to the log
-
-