1 package net.sf.tomp.xtcl.source;
2
3 import org.xml.sax.InputSource;
4
5 import javax.xml.transform.sax.SAXSource;
6
7 /***
8 * DOCUMENT ME!
9 *
10 * @author tomp
11 */
12 public interface XTSourceFactory {
13 /***
14 * DOCUMENT ME!
15 *
16 * @param className DOCUMENT ME!
17 * @param is DOCUMENT ME!
18 * @return DOCUMENT ME!
19 * @throws ClassNotFoundException DOCUMENT ME!
20 * @throws InstantiationException DOCUMENT ME!
21 * @throws IllegalAccessException DOCUMENT ME!
22 */
23 SAXSource newSAXSource(String className, InputSource is)
24 throws ClassNotFoundException, InstantiationException,
25 IllegalAccessException;
26 }
27
28
29
30
31
32
33
34
35
36
37