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/16 16:04:21 UTC

svn commit: r556632 - /incubator/uima/uimaj/trunk/uimaj-ep-configurator/src/main/java/org/apache/uima/taeconfigurator/editors/MultiPageEditor.java

Author: schor
Date: Mon Jul 16 07:04:19 2007
New Revision: 556632

URL: http://svn.apache.org/viewvc?view=rev&rev=556632
Log:
no Jira - improve one warning message to indicate it isn't an
error, and that editing can proceed, with some caveats.

Modified:
    incubator/uima/uimaj/trunk/uimaj-ep-configurator/src/main/java/org/apache/uima/taeconfigurator/editors/MultiPageEditor.java

Modified: incubator/uima/uimaj/trunk/uimaj-ep-configurator/src/main/java/org/apache/uima/taeconfigurator/editors/MultiPageEditor.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-ep-configurator/src/main/java/org/apache/uima/taeconfigurator/editors/MultiPageEditor.java?view=diff&rev=556632&r1=556631&r2=556632
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-ep-configurator/src/main/java/org/apache/uima/taeconfigurator/editors/MultiPageEditor.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-ep-configurator/src/main/java/org/apache/uima/taeconfigurator/editors/MultiPageEditor.java Mon Jul 16 07:04:19 2007
@@ -2722,7 +2722,16 @@
         .append("\n");
     }
     
-    Utility.popMessage("Remotes Unavailable", "Note: This message only shown once.\n\nThe following Remote components could not be accessed.\n" +
-          "Types, Type Priorities, and Index merging may be incomplete.\n" + sb, MessageDialog.WARNING);
+    Utility.popMessage("Remotes Unavailable", "Note: This message is only shown once.\n\n" +
+    		"Some Remote components (see error message below) could not be accessed.\n" +
+        "This is not an error; perhaps the remote components are not currently running.\n\n" +
+        "WARNING: The Types, Type Priorities, and Indexes created by \"merging\"\n" +
+        "information from the imported remote types may be incomplete\n" +
+        "(because the editor can't read this information at the moment).\n" +
+        "However, this doesn't affect the editing operations; you can continue\n" +
+        "(but with perhaps less complete error checking in the editor,\n" +
+        "and JCasGen, if used, may be missing some type information that\n" +
+        "would have come from the remote components, had they been available.\n\n" +
+        sb, MessageDialog.WARNING);
   }
 }