Author: schor
Date: Mon Nov  2 18:07:34 2015
New Revision: 1712101

URL: http://svn.apache.org/viewvc?rev=1712101&view=rev
Log:
[UIMA-4664] name change for 1 class, remove unused class

Added:
    
uima/uimaj/branches/experiment-v3-jcas/uimaj-core/src/main/java/org/apache/uima/internal/util/ComparableFSIterator.java
Removed:
    
uima/uimaj/branches/experiment-v3-jcas/uimaj-core/src/main/java/org/apache/uima/internal/util/ComparableIntPointerIterator.java
    
uima/uimaj/branches/experiment-v3-jcas/uimaj-core/src/main/java/org/apache/uima/internal/util/Int2IntHashMap.java

Added: 
uima/uimaj/branches/experiment-v3-jcas/uimaj-core/src/main/java/org/apache/uima/internal/util/ComparableFSIterator.java
URL: 
http://svn.apache.org/viewvc/uima/uimaj/branches/experiment-v3-jcas/uimaj-core/src/main/java/org/apache/uima/internal/util/ComparableFSIterator.java?rev=1712101&view=auto
==============================================================================
--- 
uima/uimaj/branches/experiment-v3-jcas/uimaj-core/src/main/java/org/apache/uima/internal/util/ComparableFSIterator.java
 (added)
+++ 
uima/uimaj/branches/experiment-v3-jcas/uimaj-core/src/main/java/org/apache/uima/internal/util/ComparableFSIterator.java
 Mon Nov  2 18:07:34 2015
@@ -0,0 +1,40 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.uima.internal.util;
+
+import org.apache.uima.cas.FSIterator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.jcas.cas.TOP;
+
+/**
+ * Interface for a comparable FSIterator. 
+ * 
+ * This allows two iterators to be compared with each other.  Two IntIterators 
are compared according to the
+ * element that would be returned by the next call to next().
+ * 
+ * The purpose of this is for keeping multiple iterators, one for each subtype 
of a type, in a sorted order,
+ * when desiring to iterate over a type and its subtypes, in a combined merged 
order.
+ * 
+ * The comparable part is only needed for iterators over Sorted indexes. 
Iterators over Bags and Sets have no ordering requirement.
+ * 
+ */
+public interface ComparableFSIterator<F extends FeatureStructure> extends 
FSIterator<F>, Comparable<FSIterator<F>> {
+
+}


Reply via email to