- // public List<File> getArgumentsAsFiles() {
- // final ArrayList<File> result = new ArrayList<File>();
- //
- // for (final String argument : arguments) {
- // final File file = new File(argument);
- // result.add(file);
- // }
- //
- // return result;
- // }
- //
- // public List<Integer> getArgumentsAsIntegers() {
- // final ArrayList<Integer> result = new ArrayList<Integer>();
- //
- // for (final String argument : arguments)
- // result.add(Integer.valueOf(argument));
- //
- // return result;
- // }
- //
- // public List<String> getArgumentsAsStrings() {
- // final ArrayList<String> result = new ArrayList<String>(arguments);
- // return result;
- // }
-