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 [3/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/core/IfThenElseIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/IfThenElseIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/IfThenElseIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/IfThenElseIterator.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.core;
+package org.apache.vxquery.v0runtime.core;
 
 import org.apache.vxquery.exceptions.SystemException;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.LocalRegisterAccessor;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractRuntimeIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.atomic.BooleanValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.LocalRegisterAccessor;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractRuntimeIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class IfThenElseIterator extends AbstractRuntimeIterator {
     private final RuntimeIterator ci;

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/LetTupleIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/LetTupleIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/LetTupleIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/LetTupleIterator.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.core;
+package org.apache.vxquery.v0runtime.core;
 
 import org.apache.vxquery.exceptions.SystemException;
-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.AbstractUnaryTupleIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
-import org.apache.vxquery.runtime.base.TupleIterator;
 import org.apache.vxquery.v0datamodel.EagerlyMaterializedXDMSequenceImpl;
+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.AbstractUnaryTupleIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
+import org.apache.vxquery.v0runtime.base.TupleIterator;
 
 public class LetTupleIterator extends AbstractUnaryTupleIterator {
     private final RuntimeIterator sequence;

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

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/SingletonCloseableIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/SingletonCloseableIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/SingletonCloseableIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/SingletonCloseableIterator.java Wed May 30 03:59:26 2012
@@ -14,10 +14,10 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-package org.apache.vxquery.runtime.core;
+package org.apache.vxquery.v0runtime.core;
 
 import org.apache.vxquery.exceptions.SystemException;
-import org.apache.vxquery.runtime.base.OpenableCloseableIterator;
+import org.apache.vxquery.v0runtime.base.OpenableCloseableIterator;
 
 public class SingletonCloseableIterator implements OpenableCloseableIterator {
     private final Object value;

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/SingletonRuntimeIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/SingletonRuntimeIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/SingletonRuntimeIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/core/SingletonRuntimeIterator.java Wed May 30 03:59:26 2012
@@ -12,12 +12,12 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.vxquery.runtime.core;
+package org.apache.vxquery.v0runtime.core;
 
 import org.apache.vxquery.exceptions.SystemException;
-import org.apache.vxquery.runtime.CallStackFrame;
-import org.apache.vxquery.runtime.RegisterAllocator;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedIterator;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedIterator;
 
 public class SingletonRuntimeIterator extends AbstractEagerlyEvaluatedIterator {
     private final Object value;

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

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractArithmeticOperationIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractArithmeticOperationIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractArithmeticOperationIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractArithmeticOperationIterator.java Wed May 30 03:59:26 2012
@@ -14,16 +14,12 @@
 * 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.types.AtomicType;
 import org.apache.vxquery.types.BuiltinTypeConstants;
 import org.apache.vxquery.types.BuiltinTypeRegistry;
@@ -35,6 +31,10 @@ import org.apache.vxquery.v0datamodel.at
 import org.apache.vxquery.v0datamodel.atomic.NumericValue;
 import org.apache.vxquery.v0datamodel.atomic.TimeValue;
 import org.apache.vxquery.v0datamodel.atomic.arithmetics.ArithmeticOperation;
+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 abstract class AbstractArithmeticOperationIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public AbstractArithmeticOperationIterator(RegisterAllocator allocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractGeneralComparisonIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractGeneralComparisonIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractGeneralComparisonIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractGeneralComparisonIterator.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;
@@ -24,12 +24,6 @@ import org.apache.vxquery.exceptions.Def
 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.RuntimeControlBlock;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.CloseableIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.types.AtomicType;
 import org.apache.vxquery.types.BuiltinTypeConstants;
 import org.apache.vxquery.types.BuiltinTypeRegistry;
@@ -56,6 +50,12 @@ import org.apache.vxquery.v0datamodel.at
 import org.apache.vxquery.v0datamodel.atomic.TimeValue;
 import org.apache.vxquery.v0datamodel.atomic.UntypedAtomicValue;
 import org.apache.vxquery.v0datamodel.atomic.compare.ValueComparator;
+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.CloseableIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public abstract class AbstractGeneralComparisonIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public AbstractGeneralComparisonIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractItemSortingAndDistinctIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractItemSortingAndDistinctIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractItemSortingAndDistinctIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractItemSortingAndDistinctIterator.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.LocalRegisterAccessor;
-import org.apache.vxquery.runtime.RegisterAllocator;
-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.RuntimeIterator;
 
 abstract class AbstractItemSortingAndDistinctIterator extends AbstractItemSortingIterator {
     private final LocalRegisterAccessor<XDMItem> node;

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractItemSortingIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractItemSortingIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractItemSortingIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractItemSortingIterator.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.Collections;
@@ -23,16 +23,16 @@ import java.util.Comparator;
 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.RegisterSet;
-import org.apache.vxquery.runtime.base.AbstractLazilyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.DMOKind;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.XDMSequence;
 import org.apache.vxquery.v0datamodel.XDMValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.LocalRegisterAccessor;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.RegisterSet;
+import org.apache.vxquery.v0runtime.base.AbstractLazilyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 abstract class AbstractItemSortingIterator extends AbstractLazilyEvaluatedFunctionIterator {
     private final LocalRegisterAccessor<Boolean> first;

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractMinMaxIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractMinMaxIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractMinMaxIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractMinMaxIterator.java Wed May 30 03:59:26 2012
@@ -14,23 +14,23 @@
 * 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.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.RuntimeControlBlock;
-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.XDMAtomicValue;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.atomic.compare.ComparisonUtils;
 import org.apache.vxquery.v0datamodel.atomic.compare.ValueComparator;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.RuntimeControlBlock;
+import org.apache.vxquery.v0runtime.RuntimeUtils;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public abstract class AbstractMinMaxIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public AbstractMinMaxIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractNodeComparisonIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractNodeComparisonIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractNodeComparisonIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractNodeComparisonIterator.java Wed May 30 03:59:26 2012
@@ -12,16 +12,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.XDMNode;
+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 abstract class AbstractNodeComparisonIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public AbstractNodeComparisonIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractSortAndDistinctNodesOrAtomicsIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractSortAndDistinctNodesOrAtomicsIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractSortAndDistinctNodesOrAtomicsIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractSortAndDistinctNodesOrAtomicsIterator.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;
 
@@ -22,13 +22,13 @@ 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.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.DMOKind;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.XDMNode;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.LocalRegisterAccessor;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 abstract class AbstractSortAndDistinctNodesOrAtomicsIterator extends AbstractItemSortingAndDistinctIterator {
     private final LocalRegisterAccessor<Boolean> atomics;

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractStringMatchingIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractStringMatchingIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractStringMatchingIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractStringMatchingIterator.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.collations.Collation;
 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.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.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 abstract class AbstractStringMatchingIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public AbstractStringMatchingIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractValueComparisonIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractValueComparisonIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractValueComparisonIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AbstractValueComparisonIterator.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 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.RuntimeControlBlock;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMAtomicValue;
 import org.apache.vxquery.v0datamodel.atomic.compare.ComparisonUtils;
 import org.apache.vxquery.v0datamodel.atomic.compare.ValueComparator;
+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 abstract class AbstractValueComparisonIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public AbstractValueComparisonIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AddArithmeticOperationIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AddArithmeticOperationIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AddArithmeticOperationIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/AddArithmeticOperationIterator.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.arithmetics.AddArithmeticOperation;
 import org.apache.vxquery.v0datamodel.atomic.arithmetics.ArithmeticOperation;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class AddArithmeticOperationIterator extends AbstractArithmeticOperationIterator {
     public AddArithmeticOperationIterator(RegisterAllocator allocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/BooleanAndIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/BooleanAndIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/BooleanAndIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/BooleanAndIterator.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.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 BooleanAndIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public BooleanAndIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/BooleanOrIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/BooleanOrIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/BooleanOrIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/BooleanOrIterator.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.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 BooleanOrIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public BooleanOrIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/ConcatenateIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/ConcatenateIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/ConcatenateIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/ConcatenateIterator.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.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 ConcatenateIterator extends AbstractLazilyEvaluatedFunctionIterator {
     private final LocalRegisterAccessor<Integer> index;

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/DivideArithmeticOperationIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/DivideArithmeticOperationIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/DivideArithmeticOperationIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/DivideArithmeticOperationIterator.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.arithmetics.ArithmeticOperation;
 import org.apache.vxquery.v0datamodel.atomic.arithmetics.DivideArithmeticOperation;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class DivideArithmeticOperationIterator extends AbstractArithmeticOperationIterator {
     public DivideArithmeticOperationIterator(RegisterAllocator allocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnAbsIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnAbsIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnAbsIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnAbsIterator.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 FnAbsIterator extends AbstractUnaryNumericFunctionIterator {
     public FnAbsIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments, StaticContext ctx) {

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnAdjustDateTimeToTimezoneIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnAdjustDateTimeToTimezoneIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnAdjustDateTimeToTimezoneIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnAdjustDateTimeToTimezoneIterator.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.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.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnAdjustDateTimeToTimezoneIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnAdjustDateTimeToTimezoneIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnBaseUriIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnBaseUriIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnBaseUriIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnBaseUriIterator.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.XDMNode;
+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 FnBaseUriIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnBaseUriIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnBooleanIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnBooleanIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnBooleanIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnBooleanIterator.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;
 
 /**
  * Compute the effective boolean value.

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCeilingIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCeilingIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCeilingIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCeilingIterator.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 FnCeilingIterator extends AbstractUnaryNumericFunctionIterator {
     public FnCeilingIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCodepointEqualIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCodepointEqualIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCodepointEqualIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCodepointEqualIterator.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.BooleanValue;
+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 FnCodepointEqualIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnCodepointEqualIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCodepointsToStringIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCodepointsToStringIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCodepointsToStringIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCodepointsToStringIterator.java Wed May 30 03:59:26 2012
@@ -14,17 +14,13 @@
 * 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.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.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.XDMNode;
@@ -32,6 +28,10 @@ import org.apache.vxquery.v0datamodel.XD
 import org.apache.vxquery.v0datamodel.XDMValue;
 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 FnCodepointsToStringIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnCodepointsToStringIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnConcatIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnConcatIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnConcatIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnConcatIterator.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.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.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 FnConcatIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnConcatIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnContainsIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnContainsIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnContainsIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnContainsIterator.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 FnContainsIterator extends AbstractStringMatchingIterator {
     public FnContainsIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCountIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCountIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCountIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCountIterator.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.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.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnCountIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnCountIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCurrentDateTimeIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCurrentDateTimeIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCurrentDateTimeIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCurrentDateTimeIterator.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.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.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnCurrentDateTimeIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnCurrentDateTimeIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCurrentTimeIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCurrentTimeIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCurrentTimeIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnCurrentTimeIterator.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.DateTimeValue;
+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 FnCurrentTimeIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnCurrentTimeIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDataIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDataIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDataIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDataIterator.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.AbstractLazilyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.XDMNode;
 import org.apache.vxquery.v0datamodel.XDMValue;
+import org.apache.vxquery.v0runtime.CallStackFrame;
+import org.apache.vxquery.v0runtime.RegisterAllocator;
+import org.apache.vxquery.v0runtime.base.AbstractLazilyEvaluatedFunctionIterator;
+import org.apache.vxquery.v0runtime.base.RuntimeIterator;
 
 public class FnDataIterator extends AbstractLazilyEvaluatedFunctionIterator {
     public FnDataIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments, StaticContext ctx) {

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDayFromDateIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDayFromDateIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDayFromDateIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDayFromDateIterator.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 FnDayFromDateIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnDayFromDateIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDayFromDateTimeIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDayFromDateTimeIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDayFromDateTimeIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDayFromDateTimeIterator.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 FnDayFromDateTimeIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnDayFromDateTimeIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDaysFromDurationIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDaysFromDurationIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDaysFromDurationIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDaysFromDurationIterator.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 FnDaysFromDurationIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnDaysFromDurationIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDeepEqualIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDeepEqualIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDeepEqualIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDeepEqualIterator.java Wed May 30 03:59:26 2012
@@ -14,23 +14,23 @@
  * 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.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.RuntimeControlBlock;
-import org.apache.vxquery.runtime.base.AbstractEagerlyEvaluatedFunctionIterator;
-import org.apache.vxquery.runtime.base.RuntimeIterator;
 import org.apache.vxquery.v0datamodel.NodeEqComparator;
 import org.apache.vxquery.v0datamodel.XDMAtomicValue;
 import org.apache.vxquery.v0datamodel.XDMItem;
 import org.apache.vxquery.v0datamodel.XDMNode;
 import org.apache.vxquery.v0datamodel.atomic.StringValue;
+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 FnDeepEqualIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnDeepEqualIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments, StaticContext ctx) {

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDefaultCollationIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDefaultCollationIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDefaultCollationIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDefaultCollationIterator.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 FnDefaultCollationIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnDefaultCollationIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDocIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDocIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDocIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDocIterator.java Wed May 30 03:59:26 2012
@@ -12,7 +12,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.io.IOException;
 import java.io.InputStream;
@@ -22,13 +22,13 @@ 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.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.runtime.util.XMLParserUtils;
 import org.apache.vxquery.v0datamodel.XDMAtomicValue;
+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;
+import org.apache.vxquery.v0runtime.util.XMLParserUtils;
 import org.xml.sax.InputSource;
 
 public class FnDocIterator extends AbstractEagerlyEvaluatedFunctionIterator {

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDocumentUriIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDocumentUriIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDocumentUriIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnDocumentUriIterator.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.XDMNode;
+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 FnDocumentUriIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnDocumentUriIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnEmptyIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnEmptyIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnEmptyIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnEmptyIterator.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.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 FnEmptyIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnEmptyIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnEncodeForUriIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnEncodeForUriIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnEncodeForUriIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnEncodeForUriIterator.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.io.UnsupportedEncodingException;
 import java.net.URLEncoder;
@@ -22,13 +22,13 @@ import java.net.URLEncoder;
 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 FnEncodeForUriIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnEncodeForUriIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnEndsWithIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnEndsWithIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnEndsWithIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnEndsWithIterator.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 FnEndsWithIterator extends AbstractStringMatchingIterator {
     public FnEndsWithIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnExactlyOneIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnExactlyOneIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnExactlyOneIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnExactlyOneIterator.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.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.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 FnExactlyOneIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnExactlyOneIterator(RegisterAllocator allocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnExistsIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnExistsIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnExistsIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnExistsIterator.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.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 FnExistsIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnExistsIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,

Modified: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnFalseIterator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnFalseIterator.java?rev=1344091&r1=1344081&r2=1344091&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnFalseIterator.java (original)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/v0runtime/functions/FnFalseIterator.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.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 FnFalseIterator extends AbstractEagerlyEvaluatedFunctionIterator {
     public FnFalseIterator(RegisterAllocator rAllocator, Function fn, RuntimeIterator[] arguments,