summaryrefslogtreecommitdiff
path: root/dicore3/command/src/main/java/io/dico/dicore/command/annotation/Desc.java
diff options
context:
space:
mode:
Diffstat (limited to 'dicore3/command/src/main/java/io/dico/dicore/command/annotation/Desc.java')
-rw-r--r--dicore3/command/src/main/java/io/dico/dicore/command/annotation/Desc.java54
1 files changed, 27 insertions, 27 deletions
diff --git a/dicore3/command/src/main/java/io/dico/dicore/command/annotation/Desc.java b/dicore3/command/src/main/java/io/dico/dicore/command/annotation/Desc.java
index 0011fb8..ab3e555 100644
--- a/dicore3/command/src/main/java/io/dico/dicore/command/annotation/Desc.java
+++ b/dicore3/command/src/main/java/io/dico/dicore/command/annotation/Desc.java
@@ -1,27 +1,27 @@
-package io.dico.dicore.command.annotation;
-
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-
-@Retention(RetentionPolicy.RUNTIME)
-public @interface Desc {
-
- /**
- * Multiline description if {@link #shortVersion} is set.
- * Otherwise, this should be an array with one element (aka, you don't have to add array brackets).
- *
- * @return the multiline description.
- * @see CommandAnnotationUtils#getShortDescription(Desc)
- */
- String[] value();
-
- /**
- * Short description, use if {@link #value} is multi-line.
- * To get a short description from a {@link Desc}, you should use {@link CommandAnnotationUtils#getShortDescription(Desc)}
- *
- * @return short description
- * @see CommandAnnotationUtils#getShortDescription(Desc)
- */
- String shortVersion() default "";
-
-}
+package io.dico.dicore.command.annotation;
+
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+
+@Retention(RetentionPolicy.RUNTIME)
+public @interface Desc {
+
+ /**
+ * Multiline description if {@link #shortVersion} is set.
+ * Otherwise, this should be an array with one element (aka, you don't have to add array brackets).
+ *
+ * @return the multiline description.
+ * @see CommandAnnotationUtils#getShortDescription(Desc)
+ */
+ String[] value();
+
+ /**
+ * Short description, use if {@link #value} is multi-line.
+ * To get a short description from a {@link Desc}, you should use {@link CommandAnnotationUtils#getShortDescription(Desc)}
+ *
+ * @return short description
+ * @see CommandAnnotationUtils#getShortDescription(Desc)
+ */
+ String shortVersion() default "";
+
+}