Package org.apache.ctakes.dictionary.lookup.algorithms

Examples of org.apache.ctakes.dictionary.lookup.algorithms.DirectPassThroughImpl


  {
    // variant support
    String[] variantArr = { CANONICAL_VARIANT_ATTR };
    PhraseBuilder pb = new VariantPhraseBuilderImpl(variantArr, true);

    return new DirectPassThroughImpl(dictEngine, pb);
  }
View Full Code Here


   @Override
   public LookupAlgorithm getLookupAlgorithm( DictionaryEngine dictEngine ) throws AnnotatorInitializationException {
      // variant support
      final String[] variantArr = {CANONICAL_VARIANT_ATTR};
      final PhraseBuilder pb = new VariantPhraseBuilderImpl( variantArr, true );
      return new DirectPassThroughImpl( dictEngine, pb );
   }
View Full Code Here

TOP

Related Classes of org.apache.ctakes.dictionary.lookup.algorithms.DirectPassThroughImpl

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.