Peter Klügl created UIMA-4484:
---------------------------------
Summary: Ruta: improve usage as helper lib in java code similar to
the uimaFIT helper classes
Key: UIMA-4484
URL: https://issues.apache.org/jira/browse/UIMA-4484
Project: UIMA
Issue Type: New Feature
Components: ruta
Affects Versions: 2.3.0ruta
Reporter: Peter Klügl
Some extensions to the Ruta class could be helpful. Here are some inital
thoughts:
// returns the spans where the rules of the script have been applied
List<AnnotationFS> result = Ruta.select(CAS cas, String script);
// returns the spans where the "amount" last rules of the script have been
applied
List<AnnotationFS> result = Ruta.selectLast(CAS cas, String script, int amount);
// returns annotations that have been created by the rules of the script
List<clazz> result = Ruta.select(JCas cas, String script, Class clazz);
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)