1 package org.riverock.dbrevision.trash;
2
3 import org.riverock.dbrevision.annotation.schema.db.DbSchema;
4 import org.riverock.dbrevision.utils.Utils;
5
6 import javax.xml.bind.JAXBException;
7 import java.io.FileInputStream;
8 import java.io.FileNotFoundException;
9
10
11
12
13
14
15 public class ExportInitStructureTest {
16 public static void main(String[] args) throws FileNotFoundException, JAXBException {
17 System.out.println("args[0] = " + args[0]);
18 FileInputStream stream = new FileInputStream(args[0]);
19 DbSchema millSchema = Utils.getObjectFromXml(DbSchema.class, stream);
20
21 System.out.println("Done");
22
23 }
24 }