PostProcessor.java :  » Natural-Language-Processing » BANNER » BANNER » processing » Java Open Source

Java Open Source » Natural Language Processing » BANNER 
BANNER » BANNER » processing » PostProcessor.java
package banner.processing;

import banner.Sentence;
import banner.tagging.Mention;

/**
 * Instances of {@link PostProcessor} take {@link Sentence}s which have been tagged and modify the set of {@link Mention}s according to some
 * criteria.
 * 
 * @author Bob
 */
public interface PostProcessor
{
    /**
     * @param sentence
     *        The {@link Sentence} to perform post-processing on
     */
    public void postProcess(Sentence sentence);

}
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.