source: trunk/gsdl3/src/java/org/greenstone/gsdl3/gs3build/doctypes/RecogniserInterface.java@ 8541

Last change on this file since 8541 was 8541, checked in by kjdon, 19 years ago

added a new method, which currently does nothing, to configure a recogniser with xml from the config file

  • Property svn:keywords set to Author Date Id Revision
File size: 532 bytes
Line 
1package org.greenstone.gsdl3.gs3build.doctypes;
2
3import java.net.URL;
4import org.w3c.dom.Element;
5
6import org.greenstone.gsdl3.gs3build.metadata.*;
7
8/** Interface for Recogniser Objects
9 *
10 * A skeleton class is provided for simple Recognisers (AbstractRecogniser)
11 *
12*/
13public interface RecogniserInterface
14{
15 public boolean configure(Element config_elem);
16 public void setListRepository(DocumentList docList);
17 public boolean parseDocument(METSFile fileReference);
18 public boolean parseDocument(URL fileReference);
19}
Note: See TracBrowser for help on using the repository browser.