1 17 18 19 20 package org.apache.lenya.lucene.parser; 21 22 import java.io.File ; 23 import java.io.IOException ; 24 import java.io.Reader ; 25 import java.net.URI ; 26 27 public interface HTMLParser { 28 void parse(File file) throws ParseException; 29 30 void parse(URI uri) throws ParseException; 31 32 35 String getTitle() throws IOException ; 36 37 40 String getKeywords() throws IOException ; 41 42 45 Reader getReader() throws IOException ; 46 } 47 | Popular Tags |