01: package com.rimfaxe.xml.xmlreader;
02:
03: /** This interface should be used by any class which returns a DOM
04: Document created by parsing XML.
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:04:01 $ $Revision: 1.1.1.1 $
17: @author Sergio Marti
18:
19: **/
20:
21: interface DocumentSource extends ParseSource {
22:
23: /** The parsed document. */
24: Document getDocument();
25:
26: }
27:
28: // $Log: DocumentSource.java,v $
29: // Revision 1.1.1.1 2002/08/19 05:04:01 eobrain
30: // import from HP Labs internal CVS
31: //
32: // Revision 1.3 2002/08/19 00:36:58 eob
33: // Tweak javadoc comment.
34: //
35: // Revision 1.2 2002/08/18 04:34:45 eob
36: // Make interface package-private so as not to clutter up the javadoc.
37: //
38: // Revision 1.1 2002/07/25 21:10:15 sermarti
39: // Adding files that mysteriously weren't added from Sparta before.
|