Merge branch 'master' of ../controller
[yangtools.git] / yang-validation-tool / src / main / java / org / opendaylight / yangtools / yang / validation / tool / ParamsUtil.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.validation.tool;
9
10 import net.sourceforge.argparse4j.inf.ArgumentParser;
11 import net.sourceforge.argparse4j.inf.ArgumentParserException;
12
13 final class ParamsUtil {
14     private ParamsUtil() {
15
16     }
17
18     public static Params parseArgs(final String[] args, final ArgumentParser parser) {
19         final Params params = new Params();
20         try {
21             parser.parseArgs(args, params);
22             return params;
23         } catch (final ArgumentParserException e) {
24             parser.handleError(e);
25         }
26         System.exit(1);
27         return null;
28     }
29 }