Package org.apache.uima.ruta.testing.ui.views

Examples of org.apache.uima.ruta.testing.ui.views.EvaluationViewPage


  @Override
  protected IPageBookViewPage doCreatePage(ICasEditor editor) {
    IPageBookViewPage result = null;
    if (editor.getDocument() != null && editor instanceof AnnotationEditor) {
      EvaluationViewPage page = new EvaluationViewPage(ICasEvaluator.TRUE_POSITIVE,
              (AnnotationEditor) editor);
      result = page;
    }
    return result;
  }
View Full Code Here


  @Override
  protected IPageBookViewPage doCreatePage(ICasEditor editor) {
    IPageBookViewPage result = null;
    if (editor.getDocument() != null && editor instanceof AnnotationEditor) {
      EvaluationViewPage page = new EvaluationViewPage(ICasEvaluator.FALSE_NEGATIVE,
              (AnnotationEditor) editor);
      result = page;
    }
    return result;
  }
View Full Code Here

  @Override
  protected IPageBookViewPage doCreatePage(ICasEditor editor) {
    IPageBookViewPage result = null;
    if (editor.getDocument() != null && editor instanceof AnnotationEditor) {
      EvaluationViewPage page = new EvaluationViewPage(ICasEvaluator.FALSE_POSITIVE,
              (AnnotationEditor) editor);
      result = page;
    }
    return result;
  }
View Full Code Here

TOP

Related Classes of org.apache.uima.ruta.testing.ui.views.EvaluationViewPage

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.