Example usage for org.apache.commons.cli Parser Parser

List of usage examples for org.apache.commons.cli Parser Parser

Introduction

In this page you can find the example usage for org.apache.commons.cli Parser Parser.

Prototype

Parser

Source Link

Usage

From source file:edu.bsu.cybersec.java.SimGameJava.java

public static void main(String[] args) {
    gameConfig = new JavaGameConfig();
    new Parser().process(args);
    LWJGLPlatform plat = new LWJGLPlatform(makeLWJGLConfig());
    registerFont(plat);/*w  ww. j a v a  2  s .  c om*/
    SimGame game = new SimGame(plat, gameConfig);
    game.event.connect(new EchoTracker());
    plat.start();
}