Package org.apache.uima.simpleserver.config.xml.TypeElementType

Examples of org.apache.uima.simpleserver.config.xml.TypeElementType.Outputs


        coveredText, typeBean.getOutputAll(), typeBean.getShortDescription(), typeBean
            .getLongDescription());

    // check if for the current type output features are mapped
    if (typeBean.getOutputs() != null) {
      Outputs outputBean = typeBean.getOutputs();
      // get mapped output features
      OutputType[] outputTypes = outputBean.getOutputArray();
      for (int i = 0; i < outputTypes.length; i++) {
        // parse output feature featurePath
        List<String> featurePath = parseFeaturePath(outputTypes[i].getFeaturePath());
        Output output = ConfigFactory.newOutput(featurePath, outputTypes[i].getOutputAttribute(),
            outputTypes[i].getShortDescription(), outputTypes[i].getLongDescription());
View Full Code Here

TOP

Related Classes of org.apache.uima.simpleserver.config.xml.TypeElementType.Outputs

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.