forked from StarOpenSource/Engine
Update Event.java and LogEvent.java javadoc
This commit is contained in:
parent
7147ab3a5a
commit
7c391ecf8d
2 changed files with 5 additions and 2 deletions
|
@ -8,7 +8,7 @@ package de.staropensource.sosengine.base.classes;
|
|||
@SuppressWarnings({ "unused" })
|
||||
public interface Event {
|
||||
/**
|
||||
* Calls the event.
|
||||
* Calls the event and notifies all annotated methods.
|
||||
*/
|
||||
void callEvent();
|
||||
}
|
||||
|
|
|
@ -45,8 +45,11 @@ public final class LogEvent implements Event {
|
|||
public void callEvent() {}
|
||||
|
||||
/**
|
||||
* Calls the event and notifies all annotated methods about it.
|
||||
* Calls the event and notifies all annotated methods.
|
||||
*
|
||||
* @param level the log level
|
||||
* @param logIssuer the log issuer
|
||||
* @param message the log message
|
||||
* @since 1-alpha0
|
||||
*/
|
||||
public void callEvent(@NotNull LogLevel level, @NotNull LogIssuer logIssuer, @NotNull String message) {
|
||||
|
|
Loading…
Reference in a new issue