View Javadoc

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