From 7c391ecf8d9856ae813e56b0d952212def850719 Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Sun, 9 Jun 2024 22:18:37 +0200 Subject: [PATCH] Update Event.java and LogEvent.java javadoc --- .../java/de/staropensource/sosengine/base/classes/Event.java | 2 +- .../de/staropensource/sosengine/base/events/LogEvent.java | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/base/src/main/java/de/staropensource/sosengine/base/classes/Event.java b/base/src/main/java/de/staropensource/sosengine/base/classes/Event.java index 178f0a77..ebe8498e 100644 --- a/base/src/main/java/de/staropensource/sosengine/base/classes/Event.java +++ b/base/src/main/java/de/staropensource/sosengine/base/classes/Event.java @@ -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(); } diff --git a/base/src/main/java/de/staropensource/sosengine/base/events/LogEvent.java b/base/src/main/java/de/staropensource/sosengine/base/events/LogEvent.java index 18b6f4b0..10907c54 100644 --- a/base/src/main/java/de/staropensource/sosengine/base/events/LogEvent.java +++ b/base/src/main/java/de/staropensource/sosengine/base/events/LogEvent.java @@ -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) {