File indexing completed on 2024-12-15 04:19:55

0001 package mso.javaparser;
0002 
0003 import java.io.IOException;
0004 
0005 import org.eclipse.jdt.annotation.NonNullByDefault;
0006 
0007 @NonNullByDefault
0008 public class ParserTester {
0009 
0010     public static void main(String[] args) throws IOException {
0011         // String testfile = "/home/oever/oever/Mir/Claessens-Delft-2007b.ppt";
0012         // String testfile =
0013         // "/home/oever/oever/Desktop/Biophysical Techniques Week1_Mir.ppt";
0014         // String testfile = "tests/data/simpleimageslide.ppt";
0015         // String testfile ="/home/oever/pdfs/vinod/Biblio/2006 SMA Ian.ppt";
0016         String testfile = "tests/data/diagram.ppt";
0017         MSOParser p = new MSOParser();
0018         p.parse(testfile);
0019     }
0020 
0021 }