01: package com.rimfaxe.xml.xmlreader;
02:
03: /**
04: * The parser uses this to report errors.
05:
06: <blockquote><small> Copyright (C) 2002 Hewlett-Packard Company.
07: This file is part of Sparta, an XML Parser, DOM, and XPath library.
08: This library is free software; you can redistribute it and/or
09: modify it under the terms of the GNU Lesser General Public License
10: as published by the Free Software Foundation; either version 2.1 of
11: the License, or (at your option) any later version. This library
12: is distributed in the hope that it will be useful, but WITHOUT ANY
13: WARRANTY; without even the implied warranty of MERCHANTABILITY or
14: FITNESS FOR A PARTICULAR PURPOSE. </small></blockquote>
15: @see <a "href="doc-files/LGPL.txt">GNU Lesser General Public License</a>
16: @version $Date: 2002/08/19 05:03:57 $ $Revision: 1.1.1.1 $
17: @author Eamonn O'Brien-Strain
18: @author Sergio Marti
19: */
20:
21: public interface ParseLog {
22: void error(String msg, String systemId, int lineNum);
23:
24: void warning(String msg, String systemId, int lineNum);
25:
26: void note(String msg, String systemId, int lineNum);
27: }
28:
29: // $Log: ParseLog.java,v $
30: // Revision 1.1.1.1 2002/08/19 05:03:57 eobrain
31: // import from HP Labs internal CVS
32: //
33: // Revision 1.6 2002/08/18 04:40:17 eob
34: // Add copyright and other formatting and commenting in preparation for
35: // release to SourceForge.
36: //
37: // Revision 1.5 2002/08/17 00:54:14 sermarti
38: //
39: // Revision 1.4 2002/08/05 20:04:32 sermarti
40: //
41: // Revision 1.3 2002/01/09 00:53:21 eob
42: // Add warning.
43: //
44: // Revision 1.2 2002/01/08 19:51:31 eob
45: // Distinguish error from note.
46: //
47: // Revision 1.1 2002/01/04 00:40:06 eob
48: // initial
|