View Javadoc

1   package net.sf.tomp.xtcl.filter;
2   
3   import javax.xml.transform.Templates;
4   import javax.xml.transform.TransformerConfigurationException;
5   
6   /***
7    * DOCUMENT ME!
8    * 
9    * @author tomp
10   */
11  public interface TemplatesCache {
12      /***
13       * DOCUMENT ME!
14       * 
15       * @param systemId DOCUMENT ME!
16       * @return DOCUMENT ME!
17       * @throws TransformerConfigurationException DOCUMENT ME!
18       */
19      Templates getTemplates(String systemId)
20              throws TransformerConfigurationException;
21  }
22  
23  /*
24   * The contents of this file are subject to the Mozilla Public License Version
25   * 1.1 (the "License"); you may not use this file except in compliance with the
26   * License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
27   * Software distributed under the License is distributed on an "AS IS" basis,
28   * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
29   * the specific language governing rights and limitations under the License. The
30   * Original Code is: all this file. The Initial Developer of the Original Code
31   * is: Tomas Pitner, Masaryk University in Brno, Czech Republic. Contributor(s):
32   */