Package org.apache.ctakes.chunker.ae

Source Code of org.apache.ctakes.chunker.ae.PhraseTypeChunkCreator

/**
* 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.chunker.ae;

import org.apache.uima.UimaContext;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.tcas.Annotation;
import org.apache.uima.resource.ResourceInitializationException;

import org.apache.ctakes.typesystem.type.syntax.ADJP;
import org.apache.ctakes.typesystem.type.syntax.ADVP;
import org.apache.ctakes.typesystem.type.syntax.CONJP;
import org.apache.ctakes.typesystem.type.syntax.INTJ;
import org.apache.ctakes.typesystem.type.syntax.LST;
import org.apache.ctakes.typesystem.type.syntax.NP;
import org.apache.ctakes.typesystem.type.syntax.O;
import org.apache.ctakes.typesystem.type.syntax.PP;
import org.apache.ctakes.typesystem.type.syntax.PRT;
import org.apache.ctakes.typesystem.type.syntax.SBAR;
import org.apache.ctakes.typesystem.type.syntax.UCP;
import org.apache.ctakes.typesystem.type.syntax.VP;
import org.apache.ctakes.typesystem.type.syntax.Chunk;


/**
* This chunker creator creates annotations of type org.apache.ctakes.typesystem.type.* and
* sets the chunkType feature of the annotation to the passed in parameter chunkType.
* @author Philip
* @see org.apache.ctakes.chunker.ae.type
*/

public class PhraseTypeChunkCreator implements ChunkCreator {

 
  public void initialize(UimaContext uimaContext) throws ResourceInitializationException {
   
  }

  public Annotation createChunk(JCas jCas, int start, int end, String chunkType) {
    Chunk chunk;
    if(chunkType.equals("ADJP")) {
      chunk = new ADJP(jCas, start, end);
    } else if(chunkType.equals("ADVP")) {
      chunk = new ADVP(jCas, start, end);
    } else if(chunkType.equals("CONJP")) {
      chunk = new CONJP(jCas, start, end);
    } else if(chunkType.equals("INTJ")) {
      chunk = new INTJ(jCas, start, end);
    } else if(chunkType.equals("LST")) {
      chunk = new LST(jCas, start, end);
    } else if(chunkType.equals("NP")) {
      chunk = new NP(jCas, start, end);
    } else if(chunkType.equals("PP")) {
      chunk = new PP(jCas, start, end);
    } else if(chunkType.equals("PRT")) {
      chunk = new PRT(jCas, start, end);
    } else if(chunkType.equals("SBAR")) {
      chunk = new SBAR(jCas, start, end);
    } else if(chunkType.equals("UCP")) {
      chunk = new UCP(jCas, start, end);
    } else if(chunkType.equals("VP")) {
      chunk = new VP(jCas, start, end);
    } else if(chunkType.equals("O")) {
      chunk = new O(jCas, start, end);
    } else {
      chunk = new Chunk(jCas, start, end);
    }
       
    chunk.setChunkType(chunkType);
    chunk.addToIndexes();
    return chunk;
  }


}
TOP

Related Classes of org.apache.ctakes.chunker.ae.PhraseTypeChunkCreator

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.