
com.antiaction.common.cli.Options Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-cli Show documentation
Show all versions of common-cli Show documentation
Multipurpose library for handling commnad line interface arguments.
The newest version!
/*
* Created on 06/02/2012
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.antiaction.common.cli;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
public class Options {
public boolean bSingleCharDashOptions = true;
protected Map longOptions = new TreeMap();
protected Map shortOptions = new TreeMap();
protected Map textOptions = new TreeMap();
protected List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy