Package org.apache.uima.alchemy.digester.domain

Examples of org.apache.uima.alchemy.digester.domain.DocumentSentiment


import org.apache.uima.jcas.JCas;

public class SentimentAnalysisProcessor implements AlchemyOutputProcessor {

  public void process(JCas cas, Results results) throws Exception {
    DocumentSentiment docSentiment = ((SentimentAnalysisResults) results).getDocSentiment();
    if (docSentiment != null) {
      SentimentFS sentimentFS = new SentimentFS(cas);
      sentimentFS.setScore(docSentiment.getScore());
      sentimentFS.setSentimentType(docSentiment.getType());
      sentimentFS.addToIndexes();
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.uima.alchemy.digester.domain.DocumentSentiment

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.