Package org.apache.uima.ruta.textruler.extension

Examples of org.apache.uima.ruta.textruler.extension.TextRulerLearnerController


    IMemento activeAlgs = memento.getChild("activeAlgorithms");
    if (activeAlgs != null) {
      ArrayList<TextRulerLearnerController> activeControllers = new ArrayList<TextRulerLearnerController>();
      for (IMemento c : activeAlgs.getChildren("algorithm")) {
        TextRulerLearnerController ctrl = TextRulerController.getControllerForID(c.getID());
        if (ctrl != null)
          activeControllers.add(ctrl);
      }
      algListViewer.setCheckedElements(activeControllers.toArray());
    }
View Full Code Here

TOP

Related Classes of org.apache.uima.ruta.textruler.extension.TextRulerLearnerController

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.