dragon.onlinedb
Interface ArticleParser

All Known Implementing Classes:
BasicArticleParser, DUC2004HTArticleParser, DUC2004MTArticleParser, ISIArticleParser, MedArticleParser, SgmArticleParser, SimpleArticleParser

public interface ArticleParser

Interface of Article Parser

Copyright: Copyright (c) 2005

Company: IST, Drexel University

Version:
1.0
Author:
Davis Zhou

Method Summary
 java.lang.String assemble(Article article)
          Assemble an article into a sequence of text which could be saved in files for future use.
 Article parse(java.lang.String content)
          Parse a sequence of text into an article
 

Method Detail

parse

public Article parse(java.lang.String content)
Parse a sequence of text into an article

Parameters:
content - the sequence of text
Returns:
a parsed article

assemble

public java.lang.String assemble(Article article)
Assemble an article into a sequence of text which could be saved in files for future use.

Parameters:
article - the article for assembling
Returns:
a sequence of text