KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > nutch > ontology > Parser


1 /* Copyright (c) 2004 michael j pan. All rights reserved. */
2 /* Use subject to the same conditions as Nutch. */
3 /* see http://www.nutch.org/LICENSE.txt. */
4
5 package net.nutch.ontology;
6
7 import com.hp.hpl.jena.ontology.OntModel;
8
9 import java.util.Iterator JavaDoc;
10
11 /**
12  * interface for the parser
13  *
14  * @author michael j pan
15  */

16 public interface Parser {
17   public void parse(OntModel m);
18   public Iterator JavaDoc rootClasses(OntModel m);
19 }
20
Popular Tags