Return-Path: X-Original-To: apmail-uima-user-archive@www.apache.org Delivered-To: apmail-uima-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B3B8A9BBF for ; Tue, 14 Feb 2012 02:55:47 +0000 (UTC) Received: (qmail 75523 invoked by uid 500); 14 Feb 2012 02:55:47 -0000 Delivered-To: apmail-uima-user-archive@uima.apache.org Received: (qmail 75256 invoked by uid 500); 14 Feb 2012 02:55:38 -0000 Mailing-List: contact user-help@uima.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@uima.apache.org Delivered-To: mailing list user@uima.apache.org Received: (qmail 75236 invoked by uid 99); 14 Feb 2012 02:55:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Feb 2012 02:55:36 +0000 X-ASF-Spam-Status: No, hits=1.0 required=5.0 tests=FORGED_YAHOO_RCVD,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of gcaug-uima-user@m.gmane.org designates 80.91.229.3 as permitted sender) Received: from [80.91.229.3] (HELO plane.gmane.org) (80.91.229.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Feb 2012 02:55:27 +0000 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Rx8Xn-0005fc-6y for user@uima.apache.org; Tue, 14 Feb 2012 03:55:03 +0100 Received: from cn-sfo1-natout.cnet.com ([216.239.124.44]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 14 Feb 2012 03:55:03 +0100 Received: from ashirey_sf by cn-sfo1-natout.cnet.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 14 Feb 2012 03:55:03 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: user@uima.apache.org From: Andy Shirey Subject: ConceptMapper classes relying on deprecated AnnotatorContext Date: Tue, 14 Feb 2012 02:53:25 +0000 (UTC) Lines: 26 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 216.239.124.44 (Mozilla/5.0 (Windows NT 5.1; rv:10.0) Gecko/20100101 Firefox/10.0) X-Virus-Checked: Checked by ClamAV on apache.org Hello! I'm ramping up on UIMA, particularly ConceptMapper 2.3.1. Several ConceptMapper 2.3.1 classes require a deprecated class: org.apache.uima.analysis_engine.annotator.AnnotatorContext Instead of its replacement: org.apache.uima.UimaContext Is ConceptMapper still being actively maintained? classes: TokenNormalizer, TokenFilter, DictionaryResource e.g. TokenNormalizer Constructor Summary TokenNormalizer(org.apache.uima.analysis_engine.annotator.AnnotatorContext annotatorContext, org.apache.uima.conceptMapper.Logger logger) UIMA Deprecated API: http://uima.apache.org/downloads/releaseDocs/2.3.0-incubating/docs/api/deprecated-list.html org.apache.uima.analysis_engine.annotator.AnnotatorContext As of release 2.3.0, use UimaContext instead For now I'm copying these classes into my source, and Overloading methods to accept org.apache.uima.UimaContext where needed. I'd love to keep all UIMA source code external if it's still being maintained. Thanks for reading and appreciate any feedback!