]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/java/org/open_ils/test/TestIDL.java
adding mostly done IDL parser with test and sample makefile
[working/Evergreen.git] / Open-ILS / src / java / org / open_ils / test / TestIDL.java
1 package org.open_ils.test;
2 import org.open_ils.idl.*;
3
4 public class TestIDL {
5     public static void main(String args[]) throws Exception {
6         String idlFile = args[0];
7         IDLParser parser = new IDLParser(idlFile);
8         parser.parse();
9         System.out.print(parser.toXML());
10     }
11 }