Return-Path: X-Original-To: apmail-incubator-vxquery-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-vxquery-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 83014D5A3 for ; Wed, 26 Sep 2012 23:04:04 +0000 (UTC) Received: (qmail 40621 invoked by uid 500); 26 Sep 2012 23:04:04 -0000 Delivered-To: apmail-incubator-vxquery-commits-archive@incubator.apache.org Received: (qmail 40605 invoked by uid 500); 26 Sep 2012 23:04:04 -0000 Mailing-List: contact vxquery-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: vxquery-dev@incubator.apache.org Delivered-To: mailing list vxquery-commits@incubator.apache.org Received: (qmail 40595 invoked by uid 99); 26 Sep 2012 23:04:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Sep 2012 23:04:04 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Sep 2012 23:04:03 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 1FFD523888CD; Wed, 26 Sep 2012 23:03:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1390765 - in /incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions: cast/ error/ node/ strings/ Date: Wed, 26 Sep 2012 23:03:19 -0000 To: vxquery-commits@incubator.apache.org From: prestonc@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120926230320.1FFD523888CD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: prestonc Date: Wed Sep 26 23:03:19 2012 New Revision: 1390765 URL: http://svn.apache.org/viewvc?rev=1390765&view=rev Log: Auto formating. Modified: incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/cast/CastScalarEvaluatorFactory.java incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/error/FnErrorScalarEvaluatorFactory.java incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/node/FnDocAvailableScalarEvaluatorFactory.java incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/strings/FnStringToCodepointsEvaluatorFactory.java Modified: incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/cast/CastScalarEvaluatorFactory.java URL: http://svn.apache.org/viewvc/incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/cast/CastScalarEvaluatorFactory.java?rev=1390765&r1=1390764&r2=1390765&view=diff ============================================================================== --- incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/cast/CastScalarEvaluatorFactory.java (original) +++ incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/cast/CastScalarEvaluatorFactory.java Wed Sep 26 23:03:19 2012 @@ -280,49 +280,49 @@ public class CastScalarEvaluatorFactory aOp.convertEntity(tp.utf8sp, dOut); result.set(abvs); return; - + case ValueTag.XS_ID_TAG: tvp.getValue(tp.utf8sp); aOp.convertID(tp.utf8sp, dOut); result.set(abvs); return; - + case ValueTag.XS_IDREF_TAG: tvp.getValue(tp.utf8sp); aOp.convertIDREF(tp.utf8sp, dOut); result.set(abvs); return; - + case ValueTag.XS_LANGUAGE_TAG: tvp.getValue(tp.utf8sp); aOp.convertIDREF(tp.utf8sp, dOut); result.set(abvs); return; - + case ValueTag.XS_NAME_TAG: tvp.getValue(tp.utf8sp); aOp.convertName(tp.utf8sp, dOut); result.set(abvs); return; - + case ValueTag.XS_NCNAME_TAG: tvp.getValue(tp.utf8sp); aOp.convertNCName(tp.utf8sp, dOut); result.set(abvs); return; - + case ValueTag.XS_NMTOKEN_TAG: tvp.getValue(tp.utf8sp); aOp.convertNMToken(tp.utf8sp, dOut); result.set(abvs); return; - + case ValueTag.XS_NORMALIZED_STRING_TAG: tvp.getValue(tp.utf8sp); aOp.convertNormalizedString(tp.utf8sp, dOut); result.set(abvs); return; - + case ValueTag.XS_TOKEN_TAG: tvp.getValue(tp.utf8sp); aOp.convertToken(tp.utf8sp, dOut); Modified: incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/error/FnErrorScalarEvaluatorFactory.java URL: http://svn.apache.org/viewvc/incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/error/FnErrorScalarEvaluatorFactory.java?rev=1390765&r1=1390764&r2=1390765&view=diff ============================================================================== --- incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/error/FnErrorScalarEvaluatorFactory.java (original) +++ incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/error/FnErrorScalarEvaluatorFactory.java Wed Sep 26 23:03:19 2012 @@ -82,7 +82,7 @@ public class FnErrorScalarEvaluatorFacto // TODO Update to dynamic error. throw new SystemException(ErrorCode.FOER0000); } - + // Only QName, description and optional error-object parameters. if (args.length > 1) { TaggedValuePointable tvp1 = args[0]; Modified: incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/node/FnDocAvailableScalarEvaluatorFactory.java URL: http://svn.apache.org/viewvc/incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/node/FnDocAvailableScalarEvaluatorFactory.java?rev=1390765&r1=1390764&r2=1390765&view=diff ============================================================================== --- incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/node/FnDocAvailableScalarEvaluatorFactory.java (original) +++ incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/node/FnDocAvailableScalarEvaluatorFactory.java Wed Sep 26 23:03:19 2012 @@ -71,7 +71,7 @@ public class FnDocAvailableScalarEvaluat if (tvp.getTag() != ValueTag.XS_STRING_TAG) { throw new SystemException(ErrorCode.FORG0006); } - + try { FunctionHelper.readInDocFromPointable(stringp, in, bbis, di, abvs); XDMConstants.setTrue(result); Modified: incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/strings/FnStringToCodepointsEvaluatorFactory.java URL: http://svn.apache.org/viewvc/incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/strings/FnStringToCodepointsEvaluatorFactory.java?rev=1390765&r1=1390764&r2=1390765&view=diff ============================================================================== --- incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/strings/FnStringToCodepointsEvaluatorFactory.java (original) +++ incubator/vxquery/trunk/vxquery/vxquery-core/src/main/java/org/apache/vxquery/runtime/functions/strings/FnStringToCodepointsEvaluatorFactory.java Wed Sep 26 23:03:19 2012 @@ -80,7 +80,7 @@ public class FnStringToCodepointsEvaluat return; } } - + // Return sequence of character values. try { charIterator.reset();