All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.becausetesting.args.CommandLineArgs Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
package com.github.becausetesting.args;

import com.beust.jcommander.Parameter;
import com.beust.jcommander.Parameters;

/**
 * ClassName: CommandLineArgs  
 * Function: TODO ADD FUNCTION.  
 * Reason: TODO ADD REASON 
 * date: Apr 23, 2016 6:05:37 PM  
 * @author [email protected]
 * @version 1.0.0
 * @since JDK 1.8
 */
@Parameters(optionPrefixes="-",separators="=")
public class CommandLineArgs {

	@Parameter(names={"-m","--month"},required=true,description="test version",validateWith=MonthValidator.class)
	public int month;
	

	@Parameter(names = {"--help","-h"}, description="helper",help = true)
	public boolean help;
	@Parameter(names={"-v","--version"},required=true,description="tool version")
	public int version;
	
	

	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy