source: trunk/greenstone3-extensions/gs3build/src/org/greenstone/gsdl3/gs3build/doctypes/RecogniserInterface.java@ 12191

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

committed some changes that I had made ages ago. Not sure if it still compiles - I need to write an ant build file for this, and check compilation. Will do it once I need to - its unclear whether anyone will ever use this again

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