Refactored exception dialog.
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / commandline / parameterparser / ArgumentCount.java
old mode 100644 (file)
new mode 100755 (executable)
index c87c829..0f30b72
@@ -1,7 +1,13 @@
+/*
+ * Svjatoslav Commons - shared library of common functionality. Author: Svjatoslav Agejenko.
+ * This project is released under Creative Commons Zero (CC0) license.
+ */
 package eu.svjatoslav.commons.commandline.parameterparser;
 
 public enum ArgumentCount {
 
-       NONE, SINGLE, MULTI
+    NONE, // parameter has no arguments
+    SINGLE, // parameter has one argument
+    MULTI // parameter can have multiple arguments
 
 }