You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by al...@apache.org on 2007/01/29 21:05:58 UTC

svn commit: r501168 - in /incubator/uima/uimaj/trunk/uimaj-tools/src/main: java/org/apache/uima/tools/ java/org/apache/uima/tools/annot_view/ java/org/apache/uima/tools/cpm/ java/org/apache/uima/tools/docanalyzer/ java/org/apache/uima/tools/images/ jav...

Author: alally
Date: Mon Jan 29 12:05:54 2007
New Revision: 501168

URL: http://svn.apache.org/viewvc?view=rev&rev=501168
Log:
Removed IBM splashscreen graphic, redid About Dialogs with
new graphics (artwork still not finalized).
UIMA-22: https://issues.apache.org/jira/browse/UIMA-22

Added:
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/util/gui/AboutDialog.java
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/images/UIMA_logo_big.png
      - copied, changed from r501093, incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/images/UIMA-logo-big.png
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/util/gui/
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/util/gui/about.txt
Removed:
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/annot_view/SplashScreen.java
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/util/gui/SplashScreenDialog.java
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/images/Splash_screen.gif
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/images/UIMA-logo-big.png
Modified:
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/XCasAnnotationViewerMain.java
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/annot_view/Gladis.java
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/annot_view/MainFrame.java
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/cpm/CpmFrame.java
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/docanalyzer/DocumentAnalyzer.java
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/images/Images.java
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/jcasgen/GUI.java
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/pear/install/InstallPear.java
    incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/viewer/CasTreeViewer.java

Modified: incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/XCasAnnotationViewerMain.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/XCasAnnotationViewerMain.java?view=diff&rev=501168&r1=501167&r2=501168
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/XCasAnnotationViewerMain.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/XCasAnnotationViewerMain.java Mon Jan 29 12:05:54 2007
@@ -61,7 +61,7 @@
 import org.apache.uima.tools.images.Images;
 import org.apache.uima.tools.util.gui.Caption;
 import org.apache.uima.tools.util.gui.FileSelector;
-import org.apache.uima.tools.util.gui.SplashScreenDialog;
+import org.apache.uima.tools.util.gui.AboutDialog;
 import org.apache.uima.tools.util.gui.SpringUtilities;
 import org.apache.uima.tools.util.htmlview.AnnotationViewGenerator;
 import org.apache.uima.util.CasCreationUtils;
@@ -125,7 +125,7 @@
 
     // Set frame icon image
     try {
-      this.setIconImage(Images.getImage(Images.UIMA_ICON_SMALL));
+      this.setIconImage(Images.getImage(Images.UIMA_LOGO_SMALL));
       // new ImageIcon(getClass().getResource(FRAME_ICON_IMAGE)).getImage());
     } catch (IOException e) {
       System.err.println("Image could not be loaded: " + e.getMessage());
@@ -134,7 +134,7 @@
     this.getContentPane().setBackground(Color.WHITE);
 
     // create about dialog
-    aboutDialog = new SplashScreenDialog(this, "About XCAS Annotation Viewer");
+    aboutDialog = new AboutDialog(this, "About XCAS Annotation Viewer");
 
     // Create Menu Bar
     JMenuBar menuBar = new JMenuBar();

Modified: incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/annot_view/Gladis.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/annot_view/Gladis.java?view=diff&rev=501168&r1=501167&r2=501168
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/annot_view/Gladis.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/annot_view/Gladis.java Mon Jan 29 12:05:54 2007
@@ -22,7 +22,6 @@
 import java.io.File;
 
 import javax.swing.ImageIcon;
-import javax.swing.JWindow;
 import javax.swing.UIManager;
 import javax.swing.UnsupportedLookAndFeelException;
 
@@ -54,7 +53,7 @@
   public static MainFrame createMainFrame() {
     final MainFrame frame = new MainFrame();
     // Set icon.
-    ImageIcon icon = Images.getImageIcon(Images.UIMA_ICON_SMALL);
+    ImageIcon icon = Images.getImageIcon(Images.UIMA_LOGO_SMALL);
     if (icon != null) {
       frame.setIconImage(icon.getImage());
     }
@@ -111,8 +110,6 @@
         printUsage();
         System.exit(2);
       }
-      SplashScreen splashScreen = new SplashScreen(new JWindow());
-      splashScreen.start();
       String lookAndFeel = null;
       if (clp.isInArgsList(LOOK_AND_FEEL_PARAM)) {
 	lookAndFeel = clp.getParamArgument(LOOK_AND_FEEL_PARAM);
@@ -123,9 +120,6 @@
 	}
       }
       MainFrame frame = createMainFrame();
-      splashScreen.close();
-      splashScreen.join();
-      splashScreen = null;
       if (clp.isInArgsList(TEXT_FILE_PARAM)) {
         frame.loadTextFile(new File(clp.getParamArgument(TEXT_FILE_PARAM)));
       }

Modified: incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/annot_view/MainFrame.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/annot_view/MainFrame.java?view=diff&rev=501168&r1=501167&r2=501168
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/annot_view/MainFrame.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/annot_view/MainFrame.java Mon Jan 29 12:05:54 2007
@@ -141,6 +141,8 @@
 import org.apache.uima.resource.metadata.FsIndexDescription;
 import org.apache.uima.resource.metadata.TypeSystemDescription;
 import org.apache.uima.tools.images.Images;
+import org.apache.uima.tools.pear.install.InstallPear;
+import org.apache.uima.tools.util.gui.AboutDialog;
 import org.apache.uima.util.CasCreationUtils;
 import org.apache.uima.util.Level;
 import org.apache.uima.util.Logger;
@@ -1283,7 +1285,7 @@
       String msg = "CVD (CAS Visual Debugger)\n" + "Apache UIMA Version "
               + UIMAFramework.getVersionString() + "\n"
               + "Copyright 2006 The Apache Software Foundation\n" + versionInfo + "\n";
-      Icon icon = Images.getImageIcon(Images.UIMA_ICON_SMALL);
+      Icon icon = Images.getImageIcon(Images.UIMA_LOGO_SMALL);
       if (icon == null) {
         JOptionPane.showMessageDialog(MainFrame.this, msg, "About CVD",
                 JOptionPane.INFORMATION_MESSAGE);
@@ -1328,21 +1330,9 @@
   private class AboutUimaHandler implements ActionListener {
 
     public void actionPerformed(ActionEvent e) {
-      JWindow window = new JWindow();
-      window.addMouseListener(new WindowClosingMouseListener(window));
-      JLabel splashLabel = new JLabel(Images.getImageIcon(Images.SPLASH));
-      splashLabel.setBorder(null);
-      // JPanel panel = new JPanel(new BorderLayout());
-      JPanel panel = new JPanel();
-      panel.setBackground(Color.WHITE);
-      panel.add(splashLabel, BorderLayout.NORTH);
-      panel.setBorder(null);
-      window.setContentPane(panel);
-      window.pack();
-      window.setLocationRelativeTo(MainFrame.this);
-      window.setVisible(true);
+      AboutDialog dialog = new AboutDialog(MainFrame.this, "About UIMA");
+      dialog.setVisible(true);
     }
-
   }
 
   private class ManualHandler implements ActionListener {

Modified: incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/cpm/CpmFrame.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/cpm/CpmFrame.java?view=diff&rev=501168&r1=501167&r2=501168
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/cpm/CpmFrame.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/cpm/CpmFrame.java Mon Jan 29 12:05:54 2007
@@ -44,7 +44,7 @@
 
 import org.apache.uima.tools.images.Images;
 import org.apache.uima.tools.util.gui.FileChooserBugWorkarounds;
-import org.apache.uima.tools.util.gui.SplashScreenDialog;
+import org.apache.uima.tools.util.gui.AboutDialog;
 
 public class CpmFrame extends JFrame implements ActionListener {
   private static final long serialVersionUID = 756368351780483658L;
@@ -79,7 +79,7 @@
 
     // Set frame icon image
     try {
-      this.setIconImage(Images.getImage(Images.UIMA_ICON_SMALL));
+      this.setIconImage(Images.getImage(Images.UIMA_LOGO_SMALL));
       // new ImageIcon(getClass().getResource(FRAME_ICON_IMAGE)).getImage());
     } catch (IOException e) {
       System.err.println("Image could not be loaded: " + e.getMessage());
@@ -96,7 +96,7 @@
 
     setJMenuBar(createMenuBar());
 
-    aboutDialog = new SplashScreenDialog(this, "About Collection Processing Engine Configurator");
+    aboutDialog = new AboutDialog(this, "About Collection Processing Engine Configurator");
 
     this.setSize(800, 600);
     this.pack();

Modified: incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/docanalyzer/DocumentAnalyzer.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/docanalyzer/DocumentAnalyzer.java?view=diff&rev=501168&r1=501167&r2=501168
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/docanalyzer/DocumentAnalyzer.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/docanalyzer/DocumentAnalyzer.java Mon Jan 29 12:05:54 2007
@@ -92,7 +92,7 @@
 import org.apache.uima.tools.stylemap.StyleMapEditor;
 import org.apache.uima.tools.stylemap.StyleMapEntry;
 import org.apache.uima.tools.util.gui.Caption;
-import org.apache.uima.tools.util.gui.SplashScreenDialog;
+import org.apache.uima.tools.util.gui.AboutDialog;
 import org.apache.uima.tools.util.gui.SpringUtilities;
 import org.apache.uima.util.AnalysisEnginePerformanceReports;
 import org.apache.uima.util.CasCreationUtils;
@@ -233,7 +233,7 @@
 
     // Set frame icon image
     try {
-      this.setIconImage(Images.getImage(Images.UIMA_ICON_SMALL));
+      this.setIconImage(Images.getImage(Images.UIMA_LOGO_SMALL));
       // new
       // ImageIcon(getClass().getResource(FRAME_ICON_IMAGE)).getImage());
     } catch (IOException e) {
@@ -241,7 +241,7 @@
     }
 
     // create about dialog
-    aboutDialog = new SplashScreenDialog(this, "About Document Analyzer");
+    aboutDialog = new AboutDialog(this, "About Document Analyzer");
     this.outputFileSelected = outputFileSelected;
     this.interactive = interactiveDA;
     this.javaViewerUCRBisSelected = jvucrbis;

Modified: incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/images/Images.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/images/Images.java?view=diff&rev=501168&r1=501167&r2=501168
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/images/Images.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/images/Images.java Mon Jan 29 12:05:54 2007
@@ -29,11 +29,11 @@
  * Names of images and utility methods to get images.
  */
 public class Images {
-  public static final String SPLASH = "/org/apache/uima/tools/images/Splash_screen.gif";
-
   public static final String BANNER = "/org/apache/uima/tools/images/UIMA_banner.png";
 
-  public static final String UIMA_ICON_SMALL = "/org/apache/uima/tools/images/UIMA_logo_50.png";
+  public static final String UIMA_LOGO_SMALL = "/org/apache/uima/tools/images/UIMA_logo_50.png";
+
+  public static final String UIMA_LOGO_BIG = "/org/apache/uima/tools/images/UIMA_logo_big.png";
 
   public static final String ROW_DELETE = "/org/apache/uima/tools/images/RowDelete_24.gif";
 

Modified: incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/jcasgen/GUI.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/jcasgen/GUI.java?view=diff&rev=501168&r1=501167&r2=501168
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/jcasgen/GUI.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/jcasgen/GUI.java Mon Jan 29 12:05:54 2007
@@ -43,12 +43,12 @@
 import javax.swing.UnsupportedLookAndFeelException;
 
 import org.apache.uima.tools.images.Images;
-import org.apache.uima.tools.util.gui.SplashScreenDialog;
+import org.apache.uima.tools.util.gui.AboutDialog;
 
 public class GUI extends JFrame {
   private static final long serialVersionUID = 1L;
 
-  private SplashScreenDialog aboutDialog;
+  private AboutDialog aboutDialog;
 
   final static String NL = System.getProperties().getProperty("line.separator");
 
@@ -324,7 +324,7 @@
 
     // Set frame icon image
     try {
-      this.setIconImage(Images.getImage(Images.UIMA_ICON_SMALL));
+      this.setIconImage(Images.getImage(Images.UIMA_LOGO_SMALL));
     } catch (IOException e) {
       System.err.println("Image could not be loaded: " + e.getMessage());
     }
@@ -337,7 +337,7 @@
 
     this.getContentPane().add(pnG, BorderLayout.CENTER);
 
-    aboutDialog = new SplashScreenDialog(this, "About JCasGen");
+    aboutDialog = new AboutDialog(this, "About JCasGen");
 
     setJMenuBar(createMenuBar());
 

Modified: incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/pear/install/InstallPear.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/pear/install/InstallPear.java?view=diff&rev=501168&r1=501167&r2=501168
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/pear/install/InstallPear.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/pear/install/InstallPear.java Mon Jan 29 12:05:54 2007
@@ -67,6 +67,7 @@
 import org.apache.uima.pear.util.ProcessUtil;
 import org.apache.uima.pear.util.UIMAUtil;
 import org.apache.uima.tools.images.Images;
+import org.apache.uima.tools.util.gui.AboutDialog;
 
 /**
  * This GUI is used to install a pear file locally in a directory chosen by the user and then run
@@ -1030,7 +1031,7 @@
       System.err.println("Could not set look and feel: " + exception.getMessage());
     }
     try {
-      setIconImage(ImageIO.read(getClass().getResource(Images.UIMA_ICON_SMALL)));
+      setIconImage(ImageIO.read(getClass().getResource(Images.UIMA_LOGO_SMALL)));
     } catch (IOException ioexception) {
       System.err.println("Image could not be loaded: " + ioexception.getMessage());
     }
@@ -1087,11 +1088,8 @@
     aboutMenuItem.addActionListener(new ActionListener() {
       public void actionPerformed(ActionEvent e) {
         if (e.getActionCommand() == "About") {
-          JFrame messageFrame = new JFrame("About PEARInstaller");
-          aboutMenuItemPanel = new JPanel();
-          JLabel frameLabel = new JLabel(new ImageIcon(getClass().getResource(Images.SPLASH)));
-          JOptionPane.showMessageDialog(messageFrame, aboutMenuItemPanel.add(frameLabel),
-                  "About PEAR Installer Version 1.0", JOptionPane.PLAIN_MESSAGE);
+          AboutDialog dialog = new AboutDialog(InstallPear.this, "About PEAR Installer");
+          dialog.setVisible(true);
         }
       }
     });

Added: incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/util/gui/AboutDialog.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/util/gui/AboutDialog.java?view=auto&rev=501168
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/util/gui/AboutDialog.java (added)
+++ incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/util/gui/AboutDialog.java Mon Jan 29 12:05:54 2007
@@ -0,0 +1,92 @@
+/*
+ * 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.tools.util.gui;
+
+import java.awt.BorderLayout;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import java.io.BufferedReader;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+
+import javax.swing.JButton;
+import javax.swing.JDialog;
+import javax.swing.JFrame;
+import javax.swing.JLabel;
+import javax.swing.JPanel;
+import javax.swing.JTextArea;
+
+import org.apache.uima.UIMAFramework;
+import org.apache.uima.tools.images.Images;
+import org.apache.uima.util.Level;
+
+/**
+ * Dialog showing standard UIMA splash screen and OK button. To be used for "About" menu item in
+ * GUIs.
+ * 
+ */
+public class AboutDialog extends JDialog {
+  private static final long serialVersionUID = -3901327861122722078L;
+
+  private static final String ABOUT_TEXT;
+  
+  public AboutDialog(JFrame aParentFrame, String aDialogTitle) {
+    super(aParentFrame, aDialogTitle);
+
+    getContentPane().setLayout(new BorderLayout());
+    JButton closeButton = new JButton("OK");
+
+    getContentPane().add(new JLabel(Images.getImageIcon(Images.UIMA_LOGO_BIG)), BorderLayout.WEST);
+    
+    String aboutText = ABOUT_TEXT.replaceAll("\\$\\{version\\}", UIMAFramework.getVersionString());
+       
+    JTextArea textArea = new JTextArea(aboutText);
+    getContentPane().add(textArea, BorderLayout.CENTER);
+    
+    JPanel buttonPanel = new JPanel();
+    buttonPanel.add(closeButton);
+    getContentPane().add(buttonPanel, BorderLayout.SOUTH);
+    this.pack();
+    this.setResizable(false);
+    this.setModal(true);
+    // event for the closeButton button
+    closeButton.addActionListener(new ActionListener() {
+      public void actionPerformed(ActionEvent ae) {
+        AboutDialog.this.setVisible(false);
+      }
+    });
+  }
+
+  //Read the dialog text from a resource file
+  static {
+    StringBuffer buf = new StringBuffer();
+    try {
+      InputStream textStream = AboutDialog.class.getResourceAsStream("about.txt"); 
+      BufferedReader reader = new BufferedReader(new InputStreamReader(textStream));
+      String line;
+      while ((line = reader.readLine()) != null) {
+        buf.append(line).append('\n');      
+      }
+    } catch (Exception e) {
+      UIMAFramework.getLogger().log(Level.WARNING, "About text could not be loaded", e);
+    }    
+    ABOUT_TEXT = buf.toString();    
+  }
+}

Modified: incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/viewer/CasTreeViewer.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/viewer/CasTreeViewer.java?view=diff&rev=501168&r1=501167&r2=501168
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/viewer/CasTreeViewer.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-tools/src/main/java/org/apache/uima/tools/viewer/CasTreeViewer.java Mon Jan 29 12:05:54 2007
@@ -337,7 +337,7 @@
 
         // Set frame icon image
         try {
-          frame.setIconImage(Images.getImage(Images.UIMA_ICON_SMALL));
+          frame.setIconImage(Images.getImage(Images.UIMA_LOGO_SMALL));
         } catch (IOException e) {
           System.err.println("Image could not be loaded: " + e.getMessage());
         }

Copied: incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/images/UIMA_logo_big.png (from r501093, incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/images/UIMA-logo-big.png)
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/images/UIMA_logo_big.png?view=diff&rev=501168&p1=incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/images/UIMA-logo-big.png&r1=501093&p2=incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/images/UIMA_logo_big.png&r2=501168
==============================================================================
Binary files - no diff available.

Added: incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/util/gui/about.txt
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/util/gui/about.txt?view=auto&rev=501168
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/util/gui/about.txt (added)
+++ incubator/uima/uimaj/trunk/uimaj-tools/src/main/resources/org/apache/uima/tools/util/gui/about.txt Mon Jan 29 12:05:54 2007
@@ -0,0 +1,9 @@
+
+Apache UIMA (Unstructured Information Management Architecture) SDK
+Version ${version}-incubating
+http://incubator.apache.org/uima
+
+Copyright 2006, 2007 The Apache Software Foundation
+
+This product includes software developed at 
+The Apache Software Foundation (http://www.apache.org/).