Fix javadoc

This commit is contained in:
LordMZTE 2020-06-02 16:56:27 +02:00
parent ce5ee87317
commit b3e327d9e9

View file

@ -182,6 +182,9 @@ public class AddonscriptJSON extends JSON {
} }
/**
*
*/
public static class File { public static class File {
/** /**
* The ID of this file. * The ID of this file.
@ -193,8 +196,8 @@ public class AddonscriptJSON extends JSON {
public String id; public String id;
/** /**
* The installer for this file * The installer for this file
* Format: <installerid>:<param 1>:<param 2>... * Format: &lt;installerid&gt;:&lt;param 1&gt;:&lt;param 2&gt;...
* Installer ID can be internal.<some internal installer> * Installer ID can be internal.&lt;some internal installer&gt;
*/ */
public String installer = "internal.override"; public String installer = "internal.override";
/** /**
@ -204,7 +207,7 @@ public class AddonscriptJSON extends JSON {
public String file; public String file;
/** /**
* A list of parameters for this file. * A list of parameters for this file.
* Currently supportet parameters: * Currently supported parameters:
* "required" - This file is required for the addon * "required" - This file is required for the addon
* "optional" - This file is optional for the addon * "optional" - This file is optional for the addon
* "client" - This file works on the client side * "client" - This file works on the client side
@ -217,13 +220,13 @@ public class AddonscriptJSON extends JSON {
public static class Relation { public static class Relation {
/** /**
* The installer for this file * The installer for this file
* Format: <installerid>:<param 1>:<param 2>... * Format: &lt;installerid&gt;:&lt;param 1&gt;:&lt;param 2&gt;...
* Installer ID can be internal.<some internal installer> * Installer ID can be internal.&lt;some internal installer&gt;
*/ */
public String installer = "internal.dir:mods"; public String installer = "internal.dir:mods";
/** /**
* A link to the file, a link to another Addonscript JSON file or an artifact String * A link to the file, a link to another Addonscript JSON file or an artifact String
* Artifact String format: <repository id>><repository specific string> * Artifact String format: &lt;repository id&gt;&gt;&lt;repository specific string&gt;
*/ */
public String file; public String file;
/** /**