Package com.luciad.util
Interface ILcdLogListener
- All Known Implementing Classes:
TLcdOutputFrame
,TLcdSystemLog
public interface ILcdLogListener
Deprecated.
- new code should use the standard Java logging.
This interface is intended for internal use inside LuciadLightspeed.
An ILcdLogListener
can write out log messages to inform the user.
The caller can send five types of messages: out ,fail, warn, debug, and event.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Deprecated.Writes the given message to the log, along with some information about the callingObject
.void
Deprecated.Writes the given message to the log.void
Deprecated.Writes the given message to the log, along with some information about the callingObject
.void
Deprecated.Writes the given message to the log.void
Deprecated.Writes the given message to the log, along with some information about the callingObject
.void
Deprecated.Writes the given message to the log.void
Deprecated.Writes the given message to the log, along with some information about the callingObject
.void
Deprecated.Writes the given message to the log.void
Deprecated.Writes the given message to the log, along with some information about the callingObject
.void
Deprecated.Writes the given message to the log.
-
Method Details
-
out
Deprecated.Writes the given message to the log.- Parameters:
aMessage
- a general informative message.
-
fail
Deprecated.Writes the given message to the log.- Parameters:
aMessage
- a warning message about a program failure.
-
warn
Deprecated.Writes the given message to the log.- Parameters:
aMessage
- a warning message.
-
debug
Deprecated.Writes the given message to the log.- Parameters:
aMessage
- a debugging message.
-
event
Deprecated.Writes the given message to the log.- Parameters:
aMessage
- a message about an event that has occurred.
-
out
Deprecated.Writes the given message to the log, along with some information about the callingObject
.- Parameters:
aObject
- the calling object (`this
').aMessage
- a general informative message.
-
fail
Deprecated.Writes the given message to the log, along with some information about the callingObject
.- Parameters:
aObject
- the calling object (`this
').aMessage
- a warning message about a program failure.
-
warn
Deprecated.Writes the given message to the log, along with some information about the callingObject
.- Parameters:
aObject
- the calling object (`this
').aMessage
- a warning message.
-
debug
Deprecated.Writes the given message to the log, along with some information about the callingObject
.- Parameters:
aObject
- the calling object (`this
').aMessage
- a debugging message.
-
event
Deprecated.Writes the given message to the log, along with some information about the callingObject
.- Parameters:
aObject
- the calling object (`this
').aMessage
- a message about an event that has occurred.
-