*
* @param options the parameter set
* @return the built command
*/
static CheckoutWebOp buildCheckout(ParameterSet options) {
CheckoutWebOp command = new CheckoutWebOp();
command.setName(options.getFirstValue("branch", null));
command.setOurs(Boolean.valueOf(options.getFirstValue("ours", "false")));
command.setTheirs(Boolean.valueOf(options.getFirstValue("theirs", "false")));
command.setPath(options.getFirstValue("path", null));
return command;
}