1 /*
2 * joey-gen and its relative products are published under the terms
3 * of the Apache Software License.
4 *
5 * Created on 2004/12/12 14:32:16
6 */
7 package org.asyrinx.joey.gen.model.rdb.xml;
8
9 import java.io.IOException;
10
11 import org.asyrinx.joey.gen.model.rdb.Databases;
12 import org.xml.sax.SAXException;
13
14 /***
15 * @author takeshi
16 */
17 public interface XmlToRdb {
18
19 public Databases load(String filename) throws IOException, SAXException;
20
21 }