Changed license to LGPLv3 or later.
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / commandline / parameterparser / parameter / DirectoryParameter.java
old mode 100644 (file)
new mode 100755 (executable)
index 8607234..35ab439
@@ -1,18 +1,25 @@
+/*
+ * 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.
+ */
+
 package eu.svjatoslav.commons.commandline.parameterparser.parameter;
 
 import java.io.File;
 
-import eu.svjatoslav.commons.commandline.parameterparser.Argument;
 import eu.svjatoslav.commons.commandline.parameterparser.ArgumentCount;
 import eu.svjatoslav.commons.commandline.parameterparser.Parameter;
-import eu.svjatoslav.commons.commandline.parameterparser.type.StringArgument;
 
-public class DirectoryParameter extends Parameter implements Argument {
+public class DirectoryParameter extends Parameter {
 
        private ExistanceType existanceType = ExistanceType.DOES_NOT_MATTER;
 
        public DirectoryParameter(final String description) {
-               super(new StringArgument(), description, ArgumentCount.SINGLE);
+               super(description, ArgumentCount.SINGLE);
        }
 
        @Override