com.martiansoftware.jsap.xml.TryLoadXML Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsap Show documentation
Show all versions of jsap Show documentation
A porting of JSAP to java 1.7+.
The newest version!
/*
* Copyright (c) 2002-2004, Martian Software, Inc.
* This file is made available under the LGPL as described in the accompanying
* LICENSE.TXT file.
*/
package com.martiansoftware.jsap.xml;
import com.martiansoftware.jsap.JSAP;
/**
* Loads a silly example JSAP from xml and displays its help message
*
* @author Marty Lamb
*/
public class TryLoadXML {
public static void main(String[] args) throws Exception {
JSAP jsap = new JSAP("com/martiansoftware/jsap/xml/silly-example.xml");
System.out.println(jsap.getHelp());
}
}