From 8650e9bb2ada320ecdcc674ed5928c260134c322 Mon Sep 17 00:00:00 2001 From: Auxilor Date: Fri, 16 Jul 2021 14:34:24 +0200 Subject: [PATCH] Added javadoc to Eco#getHandler --- eco-api/src/main/java/com/willfp/eco/core/Eco.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/eco-api/src/main/java/com/willfp/eco/core/Eco.java b/eco-api/src/main/java/com/willfp/eco/core/Eco.java index 3365826f..fb71876e 100644 --- a/eco-api/src/main/java/com/willfp/eco/core/Eco.java +++ b/eco-api/src/main/java/com/willfp/eco/core/Eco.java @@ -10,6 +10,13 @@ import org.jetbrains.annotations.NotNull; public class Eco { /** * Instance of eco handler. + *

+ * The handler is, in essence, a way to interface between the eco-api + * frontend module, and the eco-backend implementations. + *

+ * There shouldn't really be any reason to ever use the handler + * in your own plugins, but if you want to then you can - it's + * just a part of the API like any other. */ @Getter private Handler handler;