Interface LogStore
-
- All Known Implementing Classes:
LogStoreConsole
,LogStoreListener
public interface LogStore
A base interface for a log store class (the class that will store and process information about events occurred during translation).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
append(LogEntry entry)
Appends a record to the log store.
-
-
-
Method Detail
-
append
void append(LogEntry entry)
Appends a record to the log store.- Parameters:
entry
- A log entry object. Stores detailed information bout the event.
-
-