blob: 9501f144d0f23400bfe0587b454e9b1cfff18bd1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.uima.ruta.engine;
import org.apache.uima.analysis_engine.AnalysisEngineProcessException;
import org.apache.uima.cas.CAS;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.text.AnnotationFS;
import org.apache.uima.fit.component.JCasAnnotator_ImplBase;
import org.apache.uima.fit.descriptor.ConfigurationParameter;
import org.apache.uima.jcas.JCas;
public class UimaFitAnalysisEngineWithManditoryParameter extends JCasAnnotator_ImplBase {
public static final String PARAM_TYPE = "type";
@ConfigurationParameter(name = PARAM_TYPE, mandatory = true)
private String type;
@Override
public void process(JCas jcas) throws AnalysisEngineProcessException {
CAS cas = jcas.getCas();
AnnotationFS da = cas.getDocumentAnnotation();
Type t = cas.getTypeSystem().getType(type);
AnnotationFS a = cas.createAnnotation(t, da.getBegin(), da.getEnd());
cas.addFsToIndexes(a);
}
}