Package edu.neu.ccs.task.dialogue

Examples of edu.neu.ccs.task.dialogue.Output


      currentOutput = currentTurn.getOutputText();
    return currentOutput;
  }
 
  public String getCurrentPlainOutput() {
    Output o = getCurrentOutput();
    return o==null ? null : o.getPlain(getFocusTask());
  }
View Full Code Here


    Output o = getCurrentOutput();
    return o==null ? null : o.getPlain(getFocusTask());
  }
 
  public String getCurrentAnnotatedOutput() {
    Output o = getCurrentOutput();
    return o==null ? null : o.getAnnotated(getFocusTask());
  }
View Full Code Here

      currentAltOutput = currentTurn.getAltOutputText();
    return currentAltOutput;
  }
 
  public String getCurrentPlainAltOutput() {
    Output o = getCurrentAltOutput();
    return o==null ? null : o.getPlain(getFocusTask());
  }
View Full Code Here

    Output o = getCurrentAltOutput();
    return o==null ? null : o.getPlain(getFocusTask());
  }
 
  public String getCurrentAnnotatedAltOutput() {
    Output o = getCurrentAltOutput();
    return o==null ? null : o.getAnnotated(getFocusTask());
  }
View Full Code Here

        depth++;
   
      next.writeAsEncodedUnicode(annotated);
    }
   
    return new Output(
        plain.toString().trim().replaceAll("\\s+", " "),
        annotated.toString().trim().replaceAll("\\s+", " "));
  }
View Full Code Here

TOP

Related Classes of edu.neu.ccs.task.dialogue.Output

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.