1 /* Copyright (c) 2004 The Nutch Organization. All rights reserved. */ 2 /* Use subject to the conditions in http://www.nutch.org/LICENSE.txt. */ 3 4 package net.nutch.parse; 5 6 /** The result of parsing a page's raw content. 7 * @see Parser#getParse(FetcherOutput,Content) 8 */ 9 public interface Parse { 10 /** The textual content of the page. This is indexed, searched, and used when 11 * generating snippets.*/ 12 String getText(); 13 14 /** Other data extracted from the page. */ 15 ParseData getData(); 16 } 17