Author: schor
Date: Thu Aug 25 13:40:57 2016
New Revision: 1757686
URL: http://svn.apache.org/viewvc?rev=1757686&view=rev
Log:
no jira, minor xml tag fixups
Modified:
uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.cas.xml
uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.xml.component_descriptor.xml
Modified: uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.cas.xml
URL:
http://svn.apache.org/viewvc/uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.cas.xml?rev=1757686&r1=1757685&r2=1757686&view=diff
==============================================================================
--- uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.cas.xml (original)
+++ uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.cas.xml Thu Aug 25
13:40:57 2016
@@ -1028,7 +1028,7 @@ FSIterator it = cas.createFilteredIterat
<para>The CAS APIs are organized into 3 Java packages: cas, cas.impl, and
cas.text. Most
of the APIs described here are in the cas package. The cas.impl package
contains classes
- used in serializing and deserializing (reading and writing to external
strings) the
+ used in serializing and deserializing (reading and writing external
representations) the
CAS in various formats, for
transporting the CAS among local and remote annotators, or for storing
the CAS in
permanent storage. The cas.text contains the APIs that extend the CAS to
support
Modified:
uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.xml.component_descriptor.xml
URL:
http://svn.apache.org/viewvc/uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.xml.component_descriptor.xml?rev=1757686&r1=1757685&r2=1757686&view=diff
==============================================================================
---
uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.xml.component_descriptor.xml
(original)
+++
uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.xml.component_descriptor.xml
Thu Aug 25 13:40:57 2016
@@ -1510,20 +1510,20 @@ uima.tcas.Annotation.</programlisting>
<para>Configuration Parameters are made available to annotator
implementations and applications by the following interfaces:
<itemizedlist spacing="compact" mark="circle">
- <listitem>
+ <listitem><para>
<literal>AnnotatorContext</literal> <footnote><para>Deprecated; use
UimaContext instead.</para></footnote> (passed as an argument to
the
- initialize() method of a version 1 annotator)
+ initialize() method of a version 1 annotator)</para>
</listitem>
- <listitem>
+ <listitem><para>
<literal>ConfigurableResource</literal> (every Analysis Engine
- implements this interface)
+ implements this interface)</para>
</listitem>
- <listitem>
+ <listitem><para>
<literal>UimaContext</literal> (passed
as an argument to the initialize() method of a version 2
annotator) (you can get
this from any resource, including Analysis Engines, using the
method
- <literal>getUimaContext</literal>()).
+ <literal>getUimaContext</literal>()).</para>
</listitem>
</itemizedlist></para>
@@ -1973,40 +1973,42 @@ uima.tcas.Annotation.</programlisting>
file using the UTF-8 character encoding, and written in a style
similar to that
of Java properties files.
<itemizedlist spacing="compact" mark="circle">
- <listitem>
+ <listitem><para>
Leading whitespace is ignored.
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
Comment lines start with '#' or '!'.
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
The key and value are separated by whitespace, '=' or ':'.
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
Keys must contain at least one character and only letters, digits,
or the characters '. / - ~ _'.
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
If a line ends with '\' it is extended with the following line
(after removing any
leading whitespace.)
- </listitem>
+ </para></listitem>
+ <listitem><para>
Whitespace is trimmed from both keys and values.
- <listitem>
+ </para></listitem>
+ <listitem><para>
Duplicate key values are ignored – once a value is assigned
to a key it cannot be changed.
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
Values may reference other settings using the syntax '${key}'.
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
Array values are represented as a list of strings separated by
commas or line breaks,
and bracketed by the '[ ]' characters. The value must start with
an '[' and is
terminated by the first unescaped ']' which must be at the end of
a line.
The elements of an array (and hence the array size) may be
indirectly specified using
the '${key}' syntax but the brackets '[ ]' must be explicitly
specified.
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
In values the special characters '$ { } [ , ] \' are treated as
regular characters if
preceeded by the escape character '\'.
- </listitem>
+ </para></listitem>
</itemizedlist>
<programlisting><![CDATA[
key1 : value1