source: main/trunk/greenstone3/src/java/org/greenstone/gsdl3/selfContained/DocumentStream.java@ 32475

Last change on this file since 32475 was 3615, checked in by say1, 22 years ago

java updates new collections now appear on web server

  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1/*
2 * DocumentStream.java
3 * Copyright (C) 2002 New Zealand Digital Library, http://www.nzdl.org
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19package org.greenstone.gsdl3.selfContained;
20
21// XML classes
22import org.w3c.dom.Document;
23
24// other java classes
25import java.io.Serializable;
26
27
28/**
29 * Document Stream represents a stream of XML documents
30 *
31 * Based on algorithms in ...
32 *
33 * @author <a href="http://www.cs.waikato.ac.nz/~say1/">stuart yeates</a> (<a href="mailto:[email protected]">s
34[email protected]</a>) at the <a href="http://www.nzdl.org">New Zealand Digital Library</a>
35 * @version $Revision: 3615 $
36 *
37 */
38public interface DocumentStream extends Cloneable, Serializable {
39
40 /**
41 * Get the next document
42 *
43 * @exception java.io.Exception when something goes wrong
44 * @return the next document
45 */
46 public Document nextDocument() throws Exception ;
47 /**
48 * Is there a next document?
49 *
50 * @exception java.io.Exception when something goes wrong
51 * @return true if there is a next document
52 */
53 public boolean hasNextDocument() throws Exception ;
54
55}
Note: See TracBrowser for help on using the repository browser.