Examples of process()


Examples of edu.drexel.cs544.mcmuc.actions.Action.process()

            e.printStackTrace();
        }

        if (actionString.equalsIgnoreCase(Message.action)) {
            action = new Message(jo);
            action.process(this);
        } else if (actionString.equalsIgnoreCase(Presence.action)) {
            try {
                action = new Presence(jo);
                action.process(this);
            } catch (Exception e) {
View Full Code Here

Examples of edu.jhu.mb.ernst.engine.DiscreteEvent.process()

      if ( discreteEvent == null )
      {
        return;
      }
     
      final boolean  reinsert = discreteEvent.process ( );
     
      if ( reinsert )
      {
        discreteEventQueue.offer ( discreteEvent );
      }
View Full Code Here

Examples of edu.pitt.dbmi.nlp.noble.coder.NobleCoder.process()

      terminology.addTerminology(t.getTerminology());
    }
   
    // do first level processing with NobleCoder
    NobleCoder coder = new NobleCoder(terminology);
    coder.process(doc);
   
    // now lets do information extraction
    for(Template template: doc.getTemplates()){
      if(template.isAppropriate(doc)){
        try {
View Full Code Here

Examples of edu.pitt.dbmi.nlp.noble.tools.NegEx.process()

   
   
    // now lets do negation detection
    if(handleNegation){
      NegEx negex = new NegEx();
      negex.process(sentence);
   
    }
    sentence.getProcessTime().put(getClass().getSimpleName(),(System.currentTimeMillis()-time));
    return sentence;
  }
View Full Code Here

Examples of edu.pitt.text.tools.NegEx.process()

   * @param foundConcepts
   * @return
   */
  public List<Concept> processNegation(String phrase, Concept [] foundConcepts){
    NegEx negex = new NegEx();
    negex.process(phrase,Arrays.asList(foundConcepts));
    return negex.getNegatedConcepts();
  }
 
 
  /**
 
View Full Code Here

Examples of edu.stanford.nlp.pipeline.StanfordCoreNLP.process()

    StanfordCoreNLP pipeline = new StanfordCoreNLP(props);

    // for example
    // "edu/stanford/nlp/dcoref/STILLALONEWOLF_20050102.1100.eng.LDC2005E83.sgm"
    String doc = IOUtils.slurpFile(input);
    Annotation annotation = pipeline.process(doc);
    Map<Integer, CorefChain> chains = annotation.get(CorefCoreAnnotations.CorefChainAnnotation.class);
    saveResults(output, chains);
  }
}
View Full Code Here

Examples of edu.ucla.sspace.text.DocumentPreprocessor.process()

                            startedContent = true;
                    }

                    // Clean and write the posting's content to the output file.
                    sb.append("\n");
                    String cleanedContent = processor.process(sb.toString());
                    System.out.println(awardFile.getAbsolutePath());
                    pw.printf("%s\n", cleanedContent);
                    br.close();
                }
            }
View Full Code Here

Examples of ehistory.server.api.EventsService.process()

    public List<HObject> getObjects() {
        EventsService eventsService = SpringUtils.lookupBean("eventsService");
        GetObjectsRequest request = new GetObjectsRequest();
        try {
            return eventsService.process(request).getObjects();
        } catch (ServiceException e) {
            throw new RuntimeException(e);
        }
    }
View Full Code Here

Examples of entagged.tageditor.tools.TrackEnumerator.process()

        TrackEnumerator te = new TrackEnumerator();
        te.getSettings().setSaveRun(true);
        te.getSettings().setFiles(new File[] {parent.copyDir});
        File cantwork = new File(parent.copyDir, "CantWork.ogg");
        assertTrue(cantwork.createNewFile());
        int processed = te.process(false);
        assertTrue(processed < 0);
        for (int i = 0; i < files.length; i++) {
            AudioFile file = AudioFileIO.read(files[i]);
            assertTrue("Tag written despite errornous file.", file.getTag()
                    .getFirstTrack().equals("do not modify"));
View Full Code Here

Examples of er.selenium.io.SeleniumTestExporter.process()

          assert(exporter != null);
        }
       
        try {
          SeleniumTest test = new SeleniumTestFileProcessor(testFile, context().request().formValueForKey("noFilters") == null ? testFilter() : null).process();
          return exporter.process(test);
        } catch (Exception e) {
          log.debug(ERXUtilities.stackTrace(e));
          throw new RuntimeException("Test export failed", e);
        }
      } else {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.