Source code: com/memoire/xml/XmlListener.java
1 /**
2 * @modification 2001-10-25
3 * @statut unstable
4 * @file XmlListener.java
5 * @version 0.04
6 * @author Guillaume Desnoix
7 * @email guillaume@desnoix.com
8 * @license GNU General Public License 2 (GPL2)
9 * @copyright 1998-2001 Guillaume Desnoix
10 */
11
12 package com.memoire.xml;
13 import com.memoire.xml.*;
14
15
16 public interface XmlListener
17 {
18 void location (String _origin, int _lineno, int _charno);
19 void startElement(String _tag);
20 void endElement (String _tag);
21 void attribute (String _name,String _value);
22 void text (String _data);
23 void error (String _message);
24 }