summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/index.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/index.html b/doc/index.html
index 6847b28..a7ab730 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -351,6 +351,15 @@ Usage:
-testclass List of classes
</pre>
+<h2 id="Hiding">Hiding paramters</h2>
+
+If you don't want certain parameters to appear in the usage, you can mark them as "hidden":
+
+<pre class="brush: java">
+@Parameter(names = "-debug", description = "Debug mode", hidden = true)
+public boolean debug = false;
+</pre>
+
<h2 id="Internationalization">Internationalization</h2>
You can internationalize the descriptions of your parameters.