You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2009/07/27 06:38:37 UTC

svn commit: r798023 - /incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/references/ref.cas.xml

Author: schor
Date: Mon Jul 27 04:38:36 2009
New Revision: 798023

URL: http://svn.apache.org/viewvc?rev=798023&view=rev
Log:
no Jira - spell getAllIndexedFS correctly (correct means how the method is actually in the code)

Modified:
    incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/references/ref.cas.xml

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/references/ref.cas.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/references/ref.cas.xml?rev=798023&r1=798022&r2=798023&view=diff
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/references/ref.cas.xml (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/references/ref.cas.xml Mon Jul 27 04:38:36 2009
@@ -213,7 +213,7 @@
         another feature structure, which is indexed, or through a chain of these).</para>
       
       <para>The framework defines an unnamed bag index which indexes all types.  The
-      only access provided for this index is the getAllIndexedFs(type) method on the
+      only access provided for this index is the getAllIndexedFS(type) method on the
         index repository, which returns an iterator over all indexed instances of the
         specified type (including its subtypes) for that CAS View.
       </para>
@@ -719,7 +719,7 @@
       items belonging to that subtype (or subtypes of that subtype).</para>
     
     <para>The returned FSIndex objects are used, in turn, to create iterators. 
-      There is also a method on the Index Repository, <literal>getAllIndexeFs</literal>, 
+      There is also a method on the Index Repository, <literal>getAllIndexedFS</literal>, 
       which will return an iterator over all indexed Feature Structures (for that CAS View),
       in no particular order.  The iterators
       created can be used like common Java iterators, to sequentially retrieve items
@@ -740,7 +740,7 @@
       <title>Built-in Indexes</title>
       
       <para>An unnamed built-in bag index exists which holds all feature structures which are indexed.
-      The only access to this index is the method getAllIndexedFs(Type) which returns an iterator
+      The only access to this index is the method getAllIndexedFS(Type) which returns an iterator
       over all indexed Feature Structures.</para>
       
       <para>The CAS also contains a built-in index for the type <literal>uima.tcas.Annotation</literal>, which sorts
@@ -950,7 +950,7 @@
       
       <para>The FSIndexRepository gives you access to methods to get instances of indexes, and
         also provides access to the iterator over all indexed feature structures: 
-        <literal>getAllIndexedFs(aType)</literal>.
+        <literal>getAllIndexedFS(aType)</literal>.
         The FSIndex and AnnotationIndex objects give you methods to create instances of
         iterators.</para>