~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/dom/work/Main.java

  • Committer: JazzyNico
  • Date: 2011-08-29 20:25:30 UTC
  • Revision ID: nicoduf@yahoo.fr-20110829202530-6deuoz11q90usldv
Code refactoring and merging with trunk (revision 10599).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import java.io.*;
2
 
import antlr.*;
3
 
 
4
 
public class Main {
5
 
  public static void main(String[] args) {
6
 
    try {
7
 
      IDLLexer lexer = new IDLLexer(new DataInputStream(System.in));
8
 
      IDLParser parser = new IDLParser(lexer);
9
 
      parser.specification();
10
 
    } catch(Exception e) {
11
 
      System.err.println("exception: "+e);
12
 
    }
13
 
  }
14
 
}
15