de.topobyte.utilities.apache.commons.cli.commands.GitRemoteRemove.java Source code

Java tutorial

Introduction

Here is the source code for de.topobyte.utilities.apache.commons.cli.commands.GitRemoteRemove.java

Source

// Copyright 2016 Sebastian Kuerten
//
// This file is part of commons-cli-helper.
//
// commons-cli-helper is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// commons-cli-helper is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with commons-cli-helper. If not, see <http://www.gnu.org/licenses/>.

package de.topobyte.utilities.apache.commons.cli.commands;

import java.util.List;

import org.apache.commons.cli.CommandLine;
import org.apache.commons.cli.Options;

import de.topobyte.utilities.apache.commons.cli.commands.args.CommonsCliArguments;
import de.topobyte.utilities.apache.commons.cli.commands.options.CommonsCliExeOptions;
import de.topobyte.utilities.apache.commons.cli.commands.options.ExeOptions;
import de.topobyte.utilities.apache.commons.cli.commands.options.ExeOptionsFactory;

public class GitRemoteRemove {

    public static ExeOptionsFactory OPTIONS_FACTORY = new ExeOptionsFactory() {

        @Override
        public ExeOptions createOptions() {
            Options options = new Options();
            return new CommonsCliExeOptions(options, "<name>");
        }

    };

    public static void main(String name, CommonsCliArguments arguments) {
        System.out.println(String.format("This is '%s'", name));
        CommandLine line = arguments.getLine();
        List<String> extra = line.getArgList();
        if (extra.size() != 1) {
            if (extra.size() == 0) {
                System.out.println("Please specify a name");
            } else {
                System.out.println("Too many arguments");
            }
            arguments.getOptions().usage(name);
            return;
        }

        String remote = extra.get(0);
        System.out.println("remote name: " + remote);
    }

}