Return-Path: Delivered-To: apmail-ws-commons-dev-archive@locus.apache.org Received: (qmail 56033 invoked from network); 5 Mar 2008 12:01:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Mar 2008 12:01:47 -0000 Received: (qmail 48458 invoked by uid 500); 5 Mar 2008 12:01:43 -0000 Delivered-To: apmail-ws-commons-dev-archive@ws.apache.org Received: (qmail 48441 invoked by uid 500); 5 Mar 2008 12:01:43 -0000 Mailing-List: contact commons-dev-help@ws.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: commons-dev@ws.apache.org Delivered-To: mailing list commons-dev@ws.apache.org Delivered-To: moderator for commons-dev@ws.apache.org Received: (qmail 40519 invoked by uid 99); 5 Mar 2008 11:49:27 -0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r633828 - /webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/TextImpl.java Date: Wed, 05 Mar 2008 11:49:08 -0000 To: commons-dev@ws.apache.org From: nandana@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080305114909.E1ED61A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: nandana Date: Wed Mar 5 03:49:04 2008 New Revision: 633828 URL: http://svn.apache.org/viewvc?rev=633828&view=rev Log: override the getData() method Modified: webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/TextImpl.java Modified: webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/TextImpl.java URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/TextImpl.java?rev=633828&r1=633827&r2=633828&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/TextImpl.java (original) +++ webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/TextImpl.java Wed Mar 5 03:49:04 2008 @@ -369,6 +369,10 @@ } } + public String getData() throws DOMException { + return this.getText(); + } + public char[] getTextCharacters() { return charArray != null ? charArray : this.textValue.toString() .toCharArray(); --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@ws.apache.org For additional commands, e-mail: commons-dev-help@ws.apache.org