source: trunk/greenstone3-extensions/gs3build/src/org/greenstone/gsdl3/gs3build/extractor/ExtractorInterface.java@ 12188

Last change on this file since 12188 was 12188, checked in by kjdon, 18 years ago

Initial revision

  • Property svn:keywords set to Author Date Id Revision
File size: 557 bytes
Line 
1package org.greenstone.gsdl3.gs3build.extractor;
2
3import org.greenstone.gsdl3.gs3build.doctypes.DocumentID;
4import org.greenstone.gsdl3.gs3build.doctypes.DocumentInterface;
5import org.greenstone.gsdl3.gs3build.doctypes.DocumentList;
6
7public interface ExtractorInterface
8{
9 public void configure(String outputDir);
10 public void configure(DocumentList list);
11 public void startPass(int passNumber);
12 public void extractDocument(DocumentID documentID, DocumentInterface document);
13 public void endPass(int passNumber);
14 public int getNumberOfPasses();
15}
Note: See TracBrowser for help on using the repository browser.