Package org.apache.ctakes.ytex.uima.lookup.ae

Source Code of org.apache.ctakes.ytex.uima.lookup.ae.StemmedLookupAnnotationToJCasAdapter

/**
* 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.ctakes.ytex.uima.lookup.ae;

import java.util.HashMap;
import java.util.Map;

import org.apache.ctakes.dictionary.lookup.vo.LookupAnnotation;
import org.apache.ctakes.dictionary.lookup.vo.LookupToken;
import org.apache.ctakes.typesystem.type.syntax.WordToken;
import org.apache.ctakes.ytex.tools.SetupAuiFirstWord;
import org.apache.uima.jcas.tcas.Annotation;

/**
* allow dictionary lookup with stemmed words
*
* @author vijay
*
*/
public class StemmedLookupAnnotationToJCasAdapter implements LookupAnnotation,
    LookupToken {
  private Map<String, String> iv_attrMap = new HashMap<String, String>();

  private Annotation iv_jcasAnnotObj;

  public StemmedLookupAnnotationToJCasAdapter(Annotation jcasAnnotObj) {
    iv_jcasAnnotObj = jcasAnnotObj;
  }

  public void addStringAttribute(String attrKey, String attrVal) {
    iv_attrMap.put(attrKey, attrVal);
  }

  public int getEndOffset() {
    return iv_jcasAnnotObj.getEnd();
  }

  public int getLength() {
    return getStartOffset() - getEndOffset();
  }

  public int getStartOffset() {
    return iv_jcasAnnotObj.getBegin();
  }

  public String getStringAttribute(String attrKey) {
    return (String) iv_attrMap.get(attrKey);
  }

  /**
   * if this is a word, return the stemmed word, if available - i.e. canonicalForm not null and not empty.
   * else return the covered text.
   * @see SetupAuiFirstWord
   */
  public String getText() {
    if (iv_jcasAnnotObj instanceof WordToken) {
      WordToken wt = (WordToken) iv_jcasAnnotObj;
      if (wt.getCanonicalForm() != null && wt.getCanonicalForm().length() > 0)
        return wt.getCanonicalForm();
    }
    return iv_jcasAnnotObj.getCoveredText();
  }

}
TOP

Related Classes of org.apache.ctakes.ytex.uima.lookup.ae.StemmedLookupAnnotationToJCasAdapter

TOP
Copyright © 2018 www.massapi.com. 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.