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:58:46 6 */ 7 package org.asyrinx.joey.gen.ant; 8 9 import java.io.IOException; 10 import java.util.List; 11 12 import org.apache.tools.ant.Project; 13 import org.asyrinx.joey.gen.model.rdb.Databases; 14 import org.xml.sax.SAXException; 15 16 /*** 17 * @author takeshi 18 */ 19 public interface DatabasesLoader { 20 21 public Databases load(List filesets, Project project) throws IOException, SAXException; 22 23 }