minor updates
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / commandline / parameterparser / ArgumentCount.java
index e97c8cf..0d9e23d 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * Svjatoslav Commons - shared library of common functionality.
  * Copyright ©2012-2014, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 3 of the GNU Lesser General Public License
  * or later as published by the Free Software Foundation.
@@ -11,6 +11,8 @@ 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
 
 }