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 2007/07/23 22:34:03 UTC

svn commit: r558856 - in /incubator/uima/uimaj/trunk/uima-docbooks/src/docbook: overview_and_setup/known_issues.xml references/ref.jcas.xml

Author: schor
Date: Mon Jul 23 13:34:02 2007
New Revision: 558856

URL: http://svn.apache.org/viewvc?view=rev&rev=558856
Log:
no Jira - add note / warning about JCasGen merging only 
working with Java 1.4 constructs, not working with Java 5 or
6 constructs.

Modified:
    incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/overview_and_setup/known_issues.xml
    incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/references/ref.jcas.xml

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/overview_and_setup/known_issues.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/overview_and_setup/known_issues.xml?view=diff&rev=558856&r1=558855&r2=558856
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/overview_and_setup/known_issues.xml (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/overview_and_setup/known_issues.xml Mon Jul 23 13:34:02 2007
@@ -36,7 +36,17 @@
         the DocumentAnalyzer, with the highlighting being incorrect if the input document contains 
         CR characters. </para>
         </listitem>
-      </varlistentry>
+      </varlistentry>
+    <varlistentry id="ugr.issues.jcasgen_java_1.4">
+      <term><emphasis role="bold">JCasGen merge facility supports Java levels 1.4 or earlier</emphasis></term>
+      <listitem>
+        <para>JCasGen has a facility to merge in user (hand-coded) changes with the code generated
+          by JCasGen.  This merging supports Java 1.4 constructs only.  JCasGen generates Java 1.4 code, 
+      so as long as any code you change here also onlu uses Java 1.4 constructs, the 
+      merge will work.  If you use Java 5 or later specific syntax or constructs, the merge
+        operation will likely fail to merge properly.</para>
+      </listitem>
+    </varlistentry>
       <!--
       <varlistentry>
       <term><emphasis role="bold"></emphasis></term>

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/references/ref.jcas.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/references/ref.jcas.xml?view=diff&rev=558856&r1=558855&r2=558856
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/references/ref.jcas.xml (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/references/ref.jcas.xml Mon Jul 23 13:34:02 2007
@@ -192,6 +192,10 @@
         <emphasis>not</emphasis> delete classes in the target corresponding to deleted CAS types, which no longer
         are in the source &ndash; you should delete these by hand.</para>
       
+      <warning><para>The merging supports Java 1.4 constructs only.  JCasGen generates Java 1.4 code, 
+      so as long as any code you change here also sticks to only Java 1.4 constructs, the 
+      merge will work.  If you use Java 5 or later specific syntax or constructs, the merge
+        operation will likely fail to merge properly.</para></warning>
     </section>
     
     <section id="ugr.ref.jcas.additional_constructors">