idl.tmt.documentparsing
Interface ParsingListener

All Known Subinterfaces:
CharacterParsingListener, HTMLParsingListener, HypertextParsingListener, WordParsingListener

public interface ParsingListener

Basic listener interface for document parsing. Only provides very high level methods indicating the beginning and ending of the parsing of a document. This interface is not meant to be implemented directly, but rather provides the common functionality that all ParsignListener interfaces must share. Created on Jan 23, 2004

Author:
jelsas

Method Summary
 void documentCollectionComplete()
          Indicates that the parsing of the entire collection of documents is complete.
 void documentComplete()
          Indicates that the parsing of the current document has completed.
 void newDocument(int docID)
          Indicates that a new document parsing has begun.
 

Method Detail

newDocument

public void newDocument(int docID)
Indicates that a new document parsing has begun. The invocation of this method implies that parsing has completed on the current document.
Parameters:
docID - the numeric ID of the new document to be parsed

documentComplete

public void documentComplete()
Indicates that the parsing of the current document has completed.

documentCollectionComplete

public void documentCollectionComplete()
Indicates that the parsing of the entire collection of documents is complete.