You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vxquery.apache.org by vi...@apache.org on 2012/05/30 05:59:34 UTC

svn commit: r1344091 [4/6] - in /incubator/vxquery/branches/vxquery_algebricks: vxquery-core/src/main/java/org/apache/vxquery/api/ vxquery-core/src/main/java/org/apache/vxquery/control/ vxquery-core/src/main/java/org/apache/vxquery/drivers/ vxquery-cor...

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnFloorIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnFloorIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnFloorIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnFloorIterator.java Wed May 30 03:59:26 2012
@@ -14,14 +14,14 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractUnaryNumericFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.NumericValue;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractUnaryNumericFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnFloorIterator extends AbstractUnaryNumericFunctionIterator {
     public FnFloorIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnHoursFromDateTimeIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnHoursFromDateTimeIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnHoursFromDateTimeIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnHoursFromDateTimeIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,16 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.DateTimeValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnHoursFromDateTimeIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnHoursFromDateTimeIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnHoursFromDurationIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnHoursFromDurationIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnHoursFromDurationIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnHoursFromDurationIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,16 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.DurationValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnHoursFromDurationIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnHoursFromDurationIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnHoursFromTimeIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnHoursFromTimeIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnHoursFromTimeIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnHoursFromTimeIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,16 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.TimeValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnHoursFromTimeIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnHoursFromTimeIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnIndexOfIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnIndexOfIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnIndexOfIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnIndexOfIterator.java Wed May 30 03:59:26 2012
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import java.math.BigInteger;
 
@@ -23,17 +23,17 @@ import org.apache.vxquery.context.Static
 import org.apache.vxquery.exceptions.ErrorCode;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.LocalRegisterAccessor;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.RuntimeControlBlock;
-import org.apache.vxquery.runtime.RuntimeUtils;
-import org.apache.vxquery.runtime.base.AbstractLazilyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMAtomicValue;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.atomic.compare.ComparisonUtils;
 import org.apache.vxquery.v0datamodel.atomic.compare.ValueEqComparator;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.LocalRegisterAccessor;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.RuntimeControlBlock;
+import org.apache.vxquery.v0runtime.RuntimeUtils;
+import org.apache.vxquery.v0runtime.base.AbstractLazilyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnIndexOfIterator extends AbstractLazilyEvaluatedFunctionIterator {
     private final LocalRegisterAccessor<XDMAtomicValue> value;

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnInsertBeforeIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnInsertBeforeIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnInsertBeforeIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnInsertBeforeIterator.java Wed May 30 03:59:26 2012
@@ -14,20 +14,20 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import java.math.BigInteger;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.LocalRegisterAccessor;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractLazilyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMValue;
 import org.apache.vxquery.v0datamodel.atomic.NumericValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.LocalRegisterAccessor;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractLazilyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnInsertBeforeIterator extends AbstractLazilyEvaluatedFunctionIterator {
     private final LocalRegisterAccessor<BigInteger> insertPoint;

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnLocalNameFromQNameIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnLocalNameFromQNameIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnLocalNameFromQNameIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnLocalNameFromQNameIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,16 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.QNameValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnLocalNameFromQNameIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnLocalNameFromQNameIterator(RegisterAllocator allocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnLocalNameIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnLocalNameIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnLocalNameIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnLocalNameIterator.java Wed May 30 03:59:26 2012
@@ -14,18 +14,18 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMNode;
 import org.apache.vxquery.v0datamodel.atomic.QNameValue;
 import org.apache.vxquery.v0datamodel.atomic.StringValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnLocalNameIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnLocalNameIterator(RegisterAllocator allocator, Function fn, RuntimeIterator[] arguments, StaticContext ctx) {

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnLowerCaseIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnLowerCaseIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnLowerCaseIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnLowerCaseIterator.java Wed May 30 03:59:26 2012
@@ -14,18 +14,18 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.RuntimeUtils;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.atomic.StringValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.RuntimeUtils;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnLowerCaseIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnLowerCaseIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMaxIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMaxIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMaxIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMaxIterator.java Wed May 30 03:59:26 2012
@@ -14,14 +14,14 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.compare.ValueComparator;
 import org.apache.vxquery.v0datamodel.atomic.compare.ValueGeComparator;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnMaxIterator extends AbstractMinMaxIterator {
     public FnMaxIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments, StaticContext ctx) {

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinIterator.java Wed May 30 03:59:26 2012
@@ -14,14 +14,14 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.compare.ValueComparator;
 import org.apache.vxquery.v0datamodel.atomic.compare.ValueLeComparator;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnMinIterator extends AbstractMinMaxIterator {
     public FnMinIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments, StaticContext ctx) {

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinutesFromDateTimeIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinutesFromDateTimeIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinutesFromDateTimeIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinutesFromDateTimeIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,16 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.DateTimeValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnMinutesFromDateTimeIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnMinutesFromDateTimeIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinutesFromDurationIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinutesFromDurationIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinutesFromDurationIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinutesFromDurationIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,16 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.DurationValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnMinutesFromDurationIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnMinutesFromDurationIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinutesFromTimeIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinutesFromTimeIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinutesFromTimeIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMinutesFromTimeIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,16 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.TimeValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnMinutesFromTimeIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnMinutesFromTimeIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMonthFromDateIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMonthFromDateIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMonthFromDateIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMonthFromDateIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,16 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.DateValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnMonthFromDateIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnMonthFromDateIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMonthFromDateTimeIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMonthFromDateTimeIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMonthFromDateTimeIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMonthFromDateTimeIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,16 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.DateTimeValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnMonthFromDateTimeIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnMonthFromDateTimeIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMonthsFromDurationIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMonthsFromDurationIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMonthsFromDurationIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnMonthsFromDurationIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,16 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.DurationValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnMonthsFromDurationIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnMonthsFromDurationIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNameIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNameIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNameIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNameIterator.java Wed May 30 03:59:26 2012
@@ -14,19 +14,19 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.NameCache;
 import org.apache.vxquery.v0datamodel.XDMNode;
 import org.apache.vxquery.v0datamodel.atomic.QNameValue;
 import org.apache.vxquery.v0datamodel.atomic.StringValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnNameIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnNameIterator(RegisterAllocator allocator, Function fn, RuntimeIterator[] arguments, StaticContext ctx) {

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNamespaceUriFromQNameIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNamespaceUriFromQNameIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNamespaceUriFromQNameIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNamespaceUriFromQNameIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,16 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.QNameValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnNamespaceUriFromQNameIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnNamespaceUriFromQNameIterator(RegisterAllocator allocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNamespaceUriIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNamespaceUriIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNamespaceUriIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNamespaceUriIterator.java Wed May 30 03:59:26 2012
@@ -14,18 +14,18 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMNode;
 import org.apache.vxquery.v0datamodel.atomic.AnyUriValue;
 import org.apache.vxquery.v0datamodel.atomic.QNameValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnNamespaceUriIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnNamespaceUriIterator(RegisterAllocator allocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNilledIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNilledIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNilledIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNilledIterator.java Wed May 30 03:59:26 2012
@@ -14,18 +14,18 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.DMOKind;
 import org.apache.vxquery.v0datamodel.XDMNode;
 import org.apache.vxquery.v0datamodel.atomic.BooleanValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnNilledIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnNilledIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNodeNameIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNodeNameIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNodeNameIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNodeNameIterator.java Wed May 30 03:59:26 2012
@@ -14,17 +14,17 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMNode;
 import org.apache.vxquery.v0datamodel.atomic.QNameValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnNodeNameIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnNodeNameIterator(RegisterAllocator allocator, Function fn, RuntimeIterator[] arguments, StaticContext ctx) {

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNormalizeSpaceIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNormalizeSpaceIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNormalizeSpaceIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNormalizeSpaceIterator.java Wed May 30 03:59:26 2012
@@ -14,18 +14,18 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.RuntimeUtils;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.atomic.StringValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.RuntimeUtils;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnNormalizeSpaceIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnNormalizeSpaceIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNotIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNotIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNotIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNotIterator.java Wed May 30 03:59:26 2012
@@ -14,21 +14,21 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.ErrorCode;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.DMOKind;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.atomic.BooleanValue;
 import org.apache.vxquery.v0datamodel.atomic.NumericValue;
 import org.apache.vxquery.v0datamodel.atomic.StringValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnNotIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnNotIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments, StaticContext ctx) {

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNumberIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNumberIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNumberIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnNumberIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,16 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMItem;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnNumberIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnNumberIterator(RegisterAllocator allocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnOneOrMoreIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnOneOrMoreIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnOneOrMoreIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnOneOrMoreIterator.java Wed May 30 03:59:26 2012
@@ -14,18 +14,18 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.ErrorCode;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.LocalRegisterAccessor;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractLazilyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMItem;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.LocalRegisterAccessor;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractLazilyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnOneOrMoreIterator extends AbstractLazilyEvaluatedFunctionIterator {
     private final LocalRegisterAccessor<Boolean> first;

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnPrefixFromQNameIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnPrefixFromQNameIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnPrefixFromQNameIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnPrefixFromQNameIterator.java Wed May 30 03:59:26 2012
@@ -14,17 +14,17 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.NameCache;
 import org.apache.vxquery.v0datamodel.atomic.QNameValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnPrefixFromQNameIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnPrefixFromQNameIterator(RegisterAllocator allocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRemoveIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRemoveIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRemoveIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRemoveIterator.java Wed May 30 03:59:26 2012
@@ -14,20 +14,20 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import java.math.BigInteger;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.LocalRegisterAccessor;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractLazilyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMValue;
 import org.apache.vxquery.v0datamodel.atomic.NumericValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.LocalRegisterAccessor;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractLazilyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnRemoveIterator extends AbstractLazilyEvaluatedFunctionIterator {
     private final LocalRegisterAccessor<BigInteger> removePoint;

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnReverseIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnReverseIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnReverseIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnReverseIterator.java Wed May 30 03:59:26 2012
@@ -14,18 +14,18 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import java.util.Stack;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.LocalRegisterAccessor;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractLazilyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.LocalRegisterAccessor;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractLazilyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnReverseIterator extends AbstractLazilyEvaluatedFunctionIterator {
     private final LocalRegisterAccessor<Stack<Object>> stack;

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRoundHalfToEvenIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRoundHalfToEvenIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRoundHalfToEvenIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRoundHalfToEvenIterator.java Wed May 30 03:59:26 2012
@@ -14,15 +14,15 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractUnaryNumericFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.IntegerValue;
 import org.apache.vxquery.v0datamodel.atomic.NumericValue;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractUnaryNumericFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnRoundHalfToEvenIterator extends AbstractUnaryNumericFunctionIterator {
     public FnRoundHalfToEvenIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRoundHalfToEvenIteratorWithPrecision.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRoundHalfToEvenIteratorWithPrecision.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRoundHalfToEvenIteratorWithPrecision.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRoundHalfToEvenIteratorWithPrecision.java Wed May 30 03:59:26 2012
@@ -14,18 +14,18 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.RuntimeUtils;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.IntegerValue;
 import org.apache.vxquery.v0datamodel.atomic.NumericValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.RuntimeUtils;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnRoundHalfToEvenIteratorWithPrecision extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnRoundHalfToEvenIteratorWithPrecision(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRoundIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRoundIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRoundIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnRoundIterator.java Wed May 30 03:59:26 2012
@@ -14,14 +14,14 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractUnaryNumericFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.NumericValue;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractUnaryNumericFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnRoundIterator extends AbstractUnaryNumericFunctionIterator {
     public FnRoundIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSecondsFromDateTimeIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSecondsFromDateTimeIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSecondsFromDateTimeIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSecondsFromDateTimeIterator.java Wed May 30 03:59:26 2012
@@ -14,18 +14,18 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import java.math.BigDecimal;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.DateTimeValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnSecondsFromDateTimeIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnSecondsFromDateTimeIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSecondsFromDurationIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSecondsFromDurationIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSecondsFromDurationIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSecondsFromDurationIterator.java Wed May 30 03:59:26 2012
@@ -14,18 +14,18 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import java.math.BigDecimal;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.DurationValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnSecondsFromDurationIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnSecondsFromDurationIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSecondsFromTimeIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSecondsFromTimeIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSecondsFromTimeIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSecondsFromTimeIterator.java Wed May 30 03:59:26 2012
@@ -14,18 +14,18 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import java.math.BigDecimal;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.TimeValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnSecondsFromTimeIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnSecondsFromTimeIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStartsWithIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStartsWithIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStartsWithIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStartsWithIterator.java Wed May 30 03:59:26 2012
@@ -14,18 +14,18 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.collations.Collation;
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.atomic.BooleanValue;
 import org.apache.vxquery.v0datamodel.atomic.StringValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnStartsWithIterator extends AbstractStringMatchingIterator {
     public FnStartsWithIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStaticBaseUriIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStaticBaseUriIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStaticBaseUriIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStaticBaseUriIterator.java Wed May 30 03:59:26 2012
@@ -14,17 +14,17 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.RuntimeControlBlock;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.AtomicValueFactory;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.RuntimeControlBlock;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnStaticBaseUriIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnStaticBaseUriIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringIterator.java Wed May 30 03:59:26 2012
@@ -14,17 +14,17 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.atomic.StringValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnStringIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnStringIterator(RegisterAllocator allocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringJoinIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringJoinIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringJoinIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringJoinIterator.java Wed May 30 03:59:26 2012
@@ -14,17 +14,17 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.atomic.StringValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnStringJoinIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnStringJoinIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringLengthIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringLengthIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringLengthIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringLengthIterator.java Wed May 30 03:59:26 2012
@@ -14,19 +14,19 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.RuntimeUtils;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.atomic.IntValue;
 import org.apache.vxquery.v0datamodel.atomic.StringValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.RuntimeUtils;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnStringLengthIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnStringLengthIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringToCodepointsIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringToCodepointsIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringToCodepointsIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnStringToCodepointsIterator.java Wed May 30 03:59:26 2012
@@ -14,7 +14,7 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -22,14 +22,14 @@ import java.util.List;
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.RuntimeUtils;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.EagerlyMaterializedXDMSequenceImpl;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.atomic.AtomicValueFactory;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.RuntimeUtils;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnStringToCodepointsIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnStringToCodepointsIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubsequenceIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubsequenceIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubsequenceIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubsequenceIterator.java Wed May 30 03:59:26 2012
@@ -12,17 +12,17 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.LocalRegisterAccessor;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.RuntimeUtils;
-import org.apache.vxquery.runtime.base.AbstractLazilyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.LocalRegisterAccessor;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.RuntimeUtils;
+import org.apache.vxquery.v0runtime.base.AbstractLazilyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnSubsequenceIterator extends AbstractLazilyEvaluatedFunctionIterator {
     private final LocalRegisterAccessor<Integer> remaining;

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubstringAfterIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubstringAfterIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubstringAfterIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubstringAfterIterator.java Wed May 30 03:59:26 2012
@@ -14,17 +14,17 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.collations.Collation;
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.atomic.StringValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnSubstringAfterIterator extends AbstractStringMatchingIterator {
     public FnSubstringAfterIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubstringBeforeIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubstringBeforeIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubstringBeforeIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubstringBeforeIterator.java Wed May 30 03:59:26 2012
@@ -14,17 +14,17 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.collations.Collation;
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.atomic.StringValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnSubstringBeforeIterator extends AbstractStringMatchingIterator {
     public FnSubstringBeforeIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubstringIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubstringIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubstringIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnSubstringIterator.java Wed May 30 03:59:26 2012
@@ -14,18 +14,18 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.RuntimeUtils;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.atomic.StringValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.RuntimeUtils;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnSubstringIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnSubstringIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnTimezoneFromDateIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnTimezoneFromDateIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnTimezoneFromDateIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnTimezoneFromDateIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,16 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.functions;
+package org.apache.vxquery.v0runtime.functions;
 
 import org.apache.vxquery.context.StaticContext;
 import org.apache.vxquery.exceptions.SystemException;
 import org.apache.vxquery.functions.Function;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.DateValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnTimezoneFromDateIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnTimezoneFromDateIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,