View Javadoc

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