GenericMultiDocSummarizer.java :  » Natural-Language-Processing » Dragon-Toolkit » dragon » ir » summarize » Java Open Source

Java Open Source » Natural Language Processing » Dragon Toolkit 
Dragon Toolkit » dragon » ir » summarize » GenericMultiDocSummarizer.java
package dragon.ir.summarize;

import dragon.onlinedb.CollectionReader;

/**
 * <p>Interface of Generic Multi-Document Summarizer </p>
 * <p></p>
 * <p>Copyright: Copyright (c) 2005</p>
 * <p>Company: IST, Drexel University</p>
 * @author Davis Zhou
 * @version 1.0
 */

public interface GenericMultiDocSummarizer {
    /**
     * @param collectionReader the collection reader
     * @param maxLength the length of the summary
     * @return the summary in natural language.
     */
    public String summarize(CollectionReader collectionReader, int maxLength);
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.