Revision: 17608
          http://sourceforge.net/p/gate/code/17608
Author:   markagreenwood
Date:     2014-03-09 12:38:50 +0000 (Sun, 09 Mar 2014)
Log Message:
-----------
more serialVersionUID stuff

Modified Paths:
--------------
    gate/trunk/src/main/gate/gui/docview/AnnotationSetsView.java
    gate/trunk/src/main/gate/gui/docview/AnnotationStack.java
    gate/trunk/src/main/gate/gui/docview/AnnotationStackView.java
    gate/trunk/src/main/gate/gui/docview/CorefEditor.java
    gate/trunk/src/main/gate/gui/docview/DocumentEditor.java
    gate/trunk/src/main/gate/gui/docview/OntologyClassView.java
    gate/trunk/src/main/gate/gui/docview/OntologyInstanceView.java
    gate/trunk/src/main/gate/gui/docview/TextualDocumentView.java
    gate/trunk/src/main/gate/gui/ontology/AnnotationPropertyAction.java
    gate/trunk/src/main/gate/gui/ontology/DatatypePropertyAction.java
    gate/trunk/src/main/gate/gui/ontology/InstanceAction.java
    gate/trunk/src/main/gate/gui/ontology/ObjectPropertyAction.java
    gate/trunk/src/main/gate/gui/ontology/OntologyEditor.java
    gate/trunk/src/main/gate/gui/ontology/SubClassAction.java
    gate/trunk/src/main/gate/gui/ontology/SymmetricPropertyAction.java
    gate/trunk/src/main/gate/gui/ontology/TopClassAction.java
    gate/trunk/src/main/gate/gui/ontology/TransitivePropertyAction.java
    gate/trunk/src/main/gate/gui/ontology/ValuesSelectionAction.java
    gate/trunk/src/main/gate/gui/teamware/AnnotationSetNameCellRenderer.java
    gate/trunk/src/main/gate/gui/teamware/InputOutputAnnotationSetsDialog.java
    gate/trunk/src/main/gate/swing/BlockingGlassPane.java
    gate/trunk/src/main/gate/swing/JMenuButton.java
    gate/trunk/src/main/gate/swing/JTreeTable.java
    gate/trunk/src/main/gate/swing/XJEditorPane.java
    gate/trunk/src/main/gate/swing/XJTable.java
    
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportException.java
    
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportExecutionException.java
    
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportFileAccessException.java
    
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportInputFileFormatException.java

Modified: gate/trunk/src/main/gate/gui/docview/AnnotationSetsView.java
===================================================================
--- gate/trunk/src/main/gate/gui/docview/AnnotationSetsView.java        
2014-03-09 12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/docview/AnnotationSetsView.java        
2014-03-09 12:38:50 UTC (rev 17608)
@@ -229,9 +229,9 @@
   @Override
   protected void initGUI(){
     //get a pointer to the textual view used for highlights
-    Iterator centralViewsIter = owner.getCentralViews().iterator();
+    Iterator<DocumentView> centralViewsIter = 
owner.getCentralViews().iterator();
     while(textView == null && centralViewsIter.hasNext()){
-      DocumentView aView = (DocumentView)centralViewsIter.next();
+      DocumentView aView = centralViewsIter.next();
       if(aView instanceof TextualDocumentView) 
         textView = (TextualDocumentView)aView;
     }
@@ -239,16 +239,16 @@
             .getViewport().getView();
     
     //get a pointer to the list view
-    Iterator horizontalViewsIter = owner.getHorizontalViews().iterator();
+    Iterator<DocumentView> horizontalViewsIter = 
owner.getHorizontalViews().iterator();
     while(listView == null && horizontalViewsIter.hasNext()){
-      DocumentView aView = (DocumentView)horizontalViewsIter.next();
+      DocumentView aView = horizontalViewsIter.next();
       if(aView instanceof AnnotationListView) 
         listView = (AnnotationListView)aView;
     }
     //get a pointer to the stack view
     horizontalViewsIter = owner.getHorizontalViews().iterator();
     while(stackView == null && horizontalViewsIter.hasNext()){
-      DocumentView aView = (DocumentView)horizontalViewsIter.next();
+      DocumentView aView = horizontalViewsIter.next();
       if(aView instanceof AnnotationStackView)
         stackView = (AnnotationStackView)aView;
     }

Modified: gate/trunk/src/main/gate/gui/docview/AnnotationStack.java
===================================================================
--- gate/trunk/src/main/gate/gui/docview/AnnotationStack.java   2014-03-09 
12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/docview/AnnotationStack.java   2014-03-09 
12:38:50 UTC (rev 17608)
@@ -40,6 +40,7 @@
  * stackPanel.addAnnotation(...);<br>
  * stackPanel.drawStack();</code>
  */
+@SuppressWarnings("serial")
 public class AnnotationStack extends JPanel {
 
   public AnnotationStack() {

Modified: gate/trunk/src/main/gate/gui/docview/AnnotationStackView.java
===================================================================
--- gate/trunk/src/main/gate/gui/docview/AnnotationStackView.java       
2014-03-09 12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/docview/AnnotationStackView.java       
2014-03-09 12:38:50 UTC (rev 17608)
@@ -46,6 +46,7 @@
  * You can choose to display a feature value by double clicking
  * the first column rectangles.
  */
+@SuppressWarnings("serial")
 public class AnnotationStackView  extends AbstractDocumentView
   implements AnnotationListener {
 
@@ -66,23 +67,23 @@
 
     //get a pointer to the text view used to display
     //the selected annotations
-    Iterator centralViewsIter = owner.getCentralViews().iterator();
+    Iterator<DocumentView> centralViewsIter = 
owner.getCentralViews().iterator();
     while(textView == null && centralViewsIter.hasNext()){
-      DocumentView aView = (DocumentView) centralViewsIter.next();
+      DocumentView aView = centralViewsIter.next();
       if(aView instanceof TextualDocumentView)
         textView = (TextualDocumentView) aView;
     }
     // find the annotation set view associated with the document
-    Iterator verticalViewsIter = owner.getVerticalViews().iterator();
+    Iterator<DocumentView> verticalViewsIter = 
owner.getVerticalViews().iterator();
     while(annotationSetsView == null && verticalViewsIter.hasNext()){
-      DocumentView aView = (DocumentView) verticalViewsIter.next();
+      DocumentView aView = verticalViewsIter.next();
       if(aView instanceof AnnotationSetsView)
         annotationSetsView = (AnnotationSetsView) aView;
     }
     //get a pointer to the list view
-    Iterator horizontalViewsIter = owner.getHorizontalViews().iterator();
+    Iterator<DocumentView> horizontalViewsIter = 
owner.getHorizontalViews().iterator();
     while(annotationListView == null && horizontalViewsIter.hasNext()){
-      DocumentView aView = (DocumentView)horizontalViewsIter.next();
+      DocumentView aView = horizontalViewsIter.next();
       if(aView instanceof AnnotationListView)
         annotationListView = (AnnotationListView)aView;
     }

Modified: gate/trunk/src/main/gate/gui/docview/CorefEditor.java
===================================================================
--- gate/trunk/src/main/gate/gui/docview/CorefEditor.java       2014-03-09 
12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/docview/CorefEditor.java       2014-03-09 
12:38:50 UTC (rev 17608)
@@ -77,6 +77,7 @@
  * highlight co-references in the document, allow creating
  * co-references from existing annotations, editing and deleting co-references.
  */
+@SuppressWarnings("serial")
 public class CorefEditor
     extends AbstractDocumentView
     implements ActionListener, gate.event.FeatureMapListener,

Modified: gate/trunk/src/main/gate/gui/docview/DocumentEditor.java
===================================================================
--- gate/trunk/src/main/gate/gui/docview/DocumentEditor.java    2014-03-09 
12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/docview/DocumentEditor.java    2014-03-09 
12:38:50 UTC (rev 17608)
@@ -91,11 +91,10 @@
  * {@link DocumentView} interface. Contains a search dialog and an option menu
  * button.
  */
+@SuppressWarnings("serial")
 @CreoleResource(name = "Document Editor", guiType = GuiType.LARGE, 
resourceDisplayed = "gate.Document", mainViewer = true)
 public class DocumentEditor extends AbstractVisualResource implements
                                                           ActionsPublisher {
-  private static final long serialVersionUID = 1L;
-
   /**
    * Save the layout of the views and selected annotations.
    */

Modified: gate/trunk/src/main/gate/gui/docview/OntologyClassView.java
===================================================================
--- gate/trunk/src/main/gate/gui/docview/OntologyClassView.java 2014-03-09 
12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/docview/OntologyClassView.java 2014-03-09 
12:38:50 UTC (rev 17608)
@@ -60,6 +60,7 @@
  * load lazily the ontology trees
  * context menu for classes to hide/show them, saved in user configuration
  */
+@SuppressWarnings("serial")
 public class OntologyClassView extends AbstractDocumentView
     implements CreoleListener, OntologyModificationListener {
 

Modified: gate/trunk/src/main/gate/gui/docview/OntologyInstanceView.java
===================================================================
--- gate/trunk/src/main/gate/gui/docview/OntologyInstanceView.java      
2014-03-09 12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/docview/OntologyInstanceView.java      
2014-03-09 12:38:50 UTC (rev 17608)
@@ -55,6 +55,7 @@
  * You can filter the instances table, delete instances and set properties
  * that are defined in the ontology as object properties.
  */
+@SuppressWarnings("serial")
 public class OntologyInstanceView extends AbstractDocumentView {
 
   public OntologyInstanceView() {

Modified: gate/trunk/src/main/gate/gui/docview/TextualDocumentView.java
===================================================================
--- gate/trunk/src/main/gate/gui/docview/TextualDocumentView.java       
2014-03-09 12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/docview/TextualDocumentView.java       
2014-03-09 12:38:50 UTC (rev 17608)
@@ -13,16 +13,6 @@
  */
 package gate.gui.docview;
 
-import java.awt.*;
-import java.awt.event.*;
-import java.util.*;
-import java.util.List;
-
-import javax.swing.*;
-import javax.swing.Timer;
-import javax.swing.text.*;
-
-
 import gate.Annotation;
 import gate.AnnotationSet;
 import gate.Document;
@@ -30,13 +20,45 @@
 import gate.event.DocumentEvent;
 import gate.event.DocumentListener;
 import gate.gui.annedit.AnnotationData;
-import gate.util.*;
+import gate.util.Err;
+import gate.util.GateRuntimeException;
+import gate.util.InvalidOffsetException;
 
+import java.awt.Color;
+import java.awt.Component;
+import java.awt.ComponentOrientation;
+import java.awt.Point;
+import java.awt.Rectangle;
+import java.awt.event.ActionEvent;
+import java.awt.event.FocusEvent;
+import java.awt.event.KeyAdapter;
+import java.awt.event.KeyEvent;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.Iterator;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
 
+import javax.swing.AbstractAction;
+import javax.swing.JScrollPane;
+import javax.swing.JTextArea;
+import javax.swing.SwingUtilities;
+import javax.swing.Timer;
+import javax.swing.text.BadLocationException;
+import javax.swing.text.DefaultCaret;
+import javax.swing.text.DefaultHighlighter;
+import javax.swing.text.Highlighter;
+
+
 /**
  * This class provides a central view for a textual document.
  */
 
+@SuppressWarnings("serial")
 public class TextualDocumentView extends AbstractDocumentView {
 
   public TextualDocumentView(){

Modified: gate/trunk/src/main/gate/gui/ontology/AnnotationPropertyAction.java
===================================================================
--- gate/trunk/src/main/gate/gui/ontology/AnnotationPropertyAction.java 
2014-03-09 12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/ontology/AnnotationPropertyAction.java 
2014-03-09 12:38:50 UTC (rev 17608)
@@ -57,6 +57,7 @@
     mainPanel.add(propertyName = new JTextField(30), gbc);
   }
 
+  @SuppressWarnings("serial")
   @Override
   public void actionPerformed(ActionEvent actionevent) {
     nameSpace.setText(ontology.getDefaultNameSpace() == null

Modified: gate/trunk/src/main/gate/gui/ontology/DatatypePropertyAction.java
===================================================================
--- gate/trunk/src/main/gate/gui/ontology/DatatypePropertyAction.java   
2014-03-09 12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/ontology/DatatypePropertyAction.java   
2014-03-09 12:38:50 UTC (rev 17608)
@@ -118,6 +118,7 @@
   public void actionPerformed(ActionEvent actionevent) {
     nameSpace.setText(ontology.getDefaultNameSpace() == null ?
       "http://gate.ac.uk/example#"; : ontology.getDefaultNameSpace());
+    @SuppressWarnings("serial")
     JOptionPane pane = new JOptionPane(mainPanel, JOptionPane.QUESTION_MESSAGE,
       JOptionPane.OK_CANCEL_OPTION,
       MainFrame.getIcon("ontology-datatype-property")) {

Modified: gate/trunk/src/main/gate/gui/ontology/InstanceAction.java
===================================================================
--- gate/trunk/src/main/gate/gui/ontology/InstanceAction.java   2014-03-09 
12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/ontology/InstanceAction.java   2014-03-09 
12:38:50 UTC (rev 17608)
@@ -58,6 +58,7 @@
 
     nameSpace.setText(ontology.getDefaultNameSpace() == null ?
       "http://gate.ac.uk/example#"; : ontology.getDefaultNameSpace());
+    @SuppressWarnings("serial")
     JOptionPane pane = new JOptionPane(mainPanel, JOptionPane.QUESTION_MESSAGE,
       JOptionPane.OK_CANCEL_OPTION, MainFrame.getIcon("ontology-instance")) {
       @Override

Modified: gate/trunk/src/main/gate/gui/ontology/ObjectPropertyAction.java
===================================================================
--- gate/trunk/src/main/gate/gui/ontology/ObjectPropertyAction.java     
2014-03-09 12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/ontology/ObjectPropertyAction.java     
2014-03-09 12:38:50 UTC (rev 17608)
@@ -86,6 +86,7 @@
   public void actionPerformed(ActionEvent actionevent) {
     nameSpace.setText(ontology.getDefaultNameSpace() == null ?
       "http://gate.ac.uk/example#"; : ontology.getDefaultNameSpace());
+    @SuppressWarnings("serial")
     JOptionPane pane = new JOptionPane(mainPanel, JOptionPane.QUESTION_MESSAGE,
       JOptionPane.OK_CANCEL_OPTION,
       MainFrame.getIcon("ontology-object-property")) {

Modified: gate/trunk/src/main/gate/gui/ontology/OntologyEditor.java
===================================================================
--- gate/trunk/src/main/gate/gui/ontology/OntologyEditor.java   2014-03-09 
12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/ontology/OntologyEditor.java   2014-03-09 
12:38:50 UTC (rev 17608)
@@ -1063,6 +1063,7 @@
     });
   }
 
+  @SuppressWarnings("serial")
   protected class AnnotationPropertyValueAction extends AbstractAction {
     public AnnotationPropertyValueAction(String name, OResource oResource,
                                          AnnotationProperty property) {
@@ -1091,6 +1092,7 @@
     private AnnotationProperty property;
   }
 
+  @SuppressWarnings("serial")
   protected class DatatypePropertyValueAction extends AbstractAction {
     public DatatypePropertyValueAction(String name, OResource oResource,
                                        DatatypeProperty property) {

Modified: gate/trunk/src/main/gate/gui/ontology/SubClassAction.java
===================================================================
--- gate/trunk/src/main/gate/gui/ontology/SubClassAction.java   2014-03-09 
12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/ontology/SubClassAction.java   2014-03-09 
12:38:50 UTC (rev 17608)
@@ -63,6 +63,7 @@
 
     nameSpace.setText(ontology.getDefaultNameSpace() == null ?
       "http://gate.ac.uk/example#"; : ontology.getDefaultNameSpace());
+    @SuppressWarnings("serial")
     JOptionPane pane = new JOptionPane(mainPanel, JOptionPane.QUESTION_MESSAGE,
       JOptionPane.OK_CANCEL_OPTION, MainFrame.getIcon("ontology-subclass")) {
       @Override

Modified: gate/trunk/src/main/gate/gui/ontology/SymmetricPropertyAction.java
===================================================================
--- gate/trunk/src/main/gate/gui/ontology/SymmetricPropertyAction.java  
2014-03-09 12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/ontology/SymmetricPropertyAction.java  
2014-03-09 12:38:50 UTC (rev 17608)
@@ -74,6 +74,7 @@
   public void actionPerformed(ActionEvent actionevent) {
     nameSpace.setText(ontology.getDefaultNameSpace() == null ?
       "http://gate.ac.uk/example#"; : ontology.getDefaultNameSpace());
+    @SuppressWarnings("serial")
     JOptionPane pane = new JOptionPane(mainPanel, JOptionPane.QUESTION_MESSAGE,
       JOptionPane.OK_CANCEL_OPTION,
       MainFrame.getIcon("ontology-symmetric-property")) {

Modified: gate/trunk/src/main/gate/gui/ontology/TopClassAction.java
===================================================================
--- gate/trunk/src/main/gate/gui/ontology/TopClassAction.java   2014-03-09 
12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/ontology/TopClassAction.java   2014-03-09 
12:38:50 UTC (rev 17608)
@@ -45,6 +45,7 @@
   public void actionPerformed(ActionEvent actionevent) {
     nameSpace.setText(ontology.getDefaultNameSpace() == null ?
       "http://gate.ac.uk/example#"; : ontology.getDefaultNameSpace());
+    @SuppressWarnings("serial")
     JOptionPane pane = new JOptionPane(mainPanel, JOptionPane.QUESTION_MESSAGE,
       JOptionPane.OK_CANCEL_OPTION, MainFrame.getIcon("ontology-topclass")) {
       @Override

Modified: gate/trunk/src/main/gate/gui/ontology/TransitivePropertyAction.java
===================================================================
--- gate/trunk/src/main/gate/gui/ontology/TransitivePropertyAction.java 
2014-03-09 12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/ontology/TransitivePropertyAction.java 
2014-03-09 12:38:50 UTC (rev 17608)
@@ -86,6 +86,7 @@
   public void actionPerformed(ActionEvent actionevent) {
     nameSpace.setText(ontology.getDefaultNameSpace() == null ?
       "http://gate.ac.uk/example#"; : ontology.getDefaultNameSpace());
+    @SuppressWarnings("serial")
     JOptionPane pane = new JOptionPane(mainPanel, JOptionPane.QUESTION_MESSAGE,
       JOptionPane.OK_CANCEL_OPTION,
       MainFrame.getIcon("ontology-transitive-property")) {

Modified: gate/trunk/src/main/gate/gui/ontology/ValuesSelectionAction.java
===================================================================
--- gate/trunk/src/main/gate/gui/ontology/ValuesSelectionAction.java    
2014-03-09 12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/ontology/ValuesSelectionAction.java    
2014-03-09 12:38:50 UTC (rev 17608)
@@ -122,6 +122,7 @@
     this.allowValueOutsideDropDownList = allowValueOutsideDropDownList;
     domainBox.setModel(new DefaultComboBoxModel(inDropDownList));
     list.setModel(new DefaultComboBoxModel(alreadySelected));
+    @SuppressWarnings("serial")
     JOptionPane pane = new JOptionPane(panel, JOptionPane.QUESTION_MESSAGE,
      JOptionPane.OK_CANCEL_OPTION, icon) {
       @Override

Modified: 
gate/trunk/src/main/gate/gui/teamware/AnnotationSetNameCellRenderer.java
===================================================================
--- gate/trunk/src/main/gate/gui/teamware/AnnotationSetNameCellRenderer.java    
2014-03-09 12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/teamware/AnnotationSetNameCellRenderer.java    
2014-03-09 12:38:50 UTC (rev 17608)
@@ -6,6 +6,7 @@
 import javax.swing.DefaultListCellRenderer;
 import javax.swing.JList;
 
+@SuppressWarnings("serial")
 class AnnotationSetNameCellRenderer extends DefaultListCellRenderer {
 
   public static final String DEFAULT_SET_TEXT = "<Default annotation set>";

Modified: 
gate/trunk/src/main/gate/gui/teamware/InputOutputAnnotationSetsDialog.java
===================================================================
--- gate/trunk/src/main/gate/gui/teamware/InputOutputAnnotationSetsDialog.java  
2014-03-09 12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/gui/teamware/InputOutputAnnotationSetsDialog.java  
2014-03-09 12:38:50 UTC (rev 17608)
@@ -134,6 +134,7 @@
    * Panel representing the list of annotation set names for either
    * input or output.
    */
+  @SuppressWarnings("serial")
   class AnnotationSetsList extends JPanel {
     private JList annotationSetsList;
 

Modified: gate/trunk/src/main/gate/swing/BlockingGlassPane.java
===================================================================
--- gate/trunk/src/main/gate/swing/BlockingGlassPane.java       2014-03-09 
12:30:33 UTC (rev 17607)
+++ gate/trunk/src/main/gate/swing/BlockingGlassPane.java       2014-03-09 
12:38:50 UTC (rev 17608)
@@ -28,6 +28,7 @@
  * Just set an instance of this class as the glassPane
  * of your JFrame and call <code>block()</code> as needed.
  */
+@SuppressWarnings("serial")
 public class BlockingGlassPane extends JPanel {
 
   private int        blockCount = 0;

Modified: gate/trunk/src/main/gate/swing/JMenuButton.java
===================================================================
--- gate/trunk/src/main/gate/swing/JMenuButton.java     2014-03-09 12:30:33 UTC 
(rev 17607)
+++ gate/trunk/src/main/gate/swing/JMenuButton.java     2014-03-09 12:38:50 UTC 
(rev 17608)
@@ -27,6 +27,7 @@
 /**
  * A toggle button that shows a pop-up menu.
  */
+@SuppressWarnings("serial")
 public class JMenuButton extends JToggleButton {
   public JMenuButton(JMenu menu) {
     this(menu.getPopupMenu());

Modified: gate/trunk/src/main/gate/swing/JTreeTable.java
===================================================================
--- gate/trunk/src/main/gate/swing/JTreeTable.java      2014-03-09 12:30:33 UTC 
(rev 17607)
+++ gate/trunk/src/main/gate/swing/JTreeTable.java      2014-03-09 12:38:50 UTC 
(rev 17608)
@@ -30,6 +30,7 @@
  * A TreeTable component. That is a component that looks like a table apart
  * from the first column that contains a tree.
  */
+@SuppressWarnings("serial")
 public class JTreeTable extends XJTable {
 
   /**The tree used to render the first column*/

Modified: gate/trunk/src/main/gate/swing/XJEditorPane.java
===================================================================
--- gate/trunk/src/main/gate/swing/XJEditorPane.java    2014-03-09 12:30:33 UTC 
(rev 17607)
+++ gate/trunk/src/main/gate/swing/XJEditorPane.java    2014-03-09 12:38:50 UTC 
(rev 17608)
@@ -20,6 +20,7 @@
  * An enhanced version of {@link javax.swing.JEditorPane} that is able of
  * handling hyperlinks from the HTML document displayed.
  */
+@SuppressWarnings("serial")
 public class XJEditorPane extends JEditorPane {
 
   public XJEditorPane(){

Modified: gate/trunk/src/main/gate/swing/XJTable.java
===================================================================
--- gate/trunk/src/main/gate/swing/XJTable.java 2014-03-09 12:30:33 UTC (rev 
17607)
+++ gate/trunk/src/main/gate/swing/XJTable.java 2014-03-09 12:38:50 UTC (rev 
17608)
@@ -49,6 +49,7 @@
  * user and the GUI component. This middle model is responsible for sorting the
  * rows.
  */
+@SuppressWarnings("serial")
 public class XJTable extends JTable{
 
   public XJTable(){

Modified: 
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportException.java
===================================================================
--- 
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportException.java
    2014-03-09 12:30:33 UTC (rev 17607)
+++ 
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportException.java
    2014-03-09 12:38:50 UTC (rev 17608)
@@ -20,6 +20,9 @@
  * that the calling application might want to catch.
  */
 public class BenchmarkReportException extends Exception {
+
+  private static final long serialVersionUID = 7985671419407663629L;
+
   public BenchmarkReportException(String message) {
     super(message);
   }

Modified: 
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportExecutionException.java
===================================================================
--- 
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportExecutionException.java
   2014-03-09 12:30:33 UTC (rev 17607)
+++ 
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportExecutionException.java
   2014-03-09 12:38:50 UTC (rev 17608)
@@ -21,6 +21,9 @@
  * 
  */
 public class BenchmarkReportExecutionException extends RuntimeException {
+
+  private static final long serialVersionUID = -8652052369571503815L;
+
   public BenchmarkReportExecutionException(String message) {
     super(message);
   }

Modified: 
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportFileAccessException.java
===================================================================
--- 
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportFileAccessException.java
  2014-03-09 12:30:33 UTC (rev 17607)
+++ 
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportFileAccessException.java
  2014-03-09 12:38:50 UTC (rev 17608)
@@ -31,6 +31,9 @@
  */
 public class BenchmarkReportFileAccessException extends
     BenchmarkReportException {
+
+  private static final long serialVersionUID = -1095399127391838299L;
+
   public BenchmarkReportFileAccessException(String message) {
     super(message);
   }

Modified: 
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportInputFileFormatException.java
===================================================================
--- 
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportInputFileFormatException.java
     2014-03-09 12:30:33 UTC (rev 17607)
+++ 
gate/trunk/src/main/gate/util/reporting/exceptions/BenchmarkReportInputFileFormatException.java
     2014-03-09 12:38:50 UTC (rev 17608)
@@ -25,6 +25,9 @@
  */
 public class BenchmarkReportInputFileFormatException extends
     BenchmarkReportException {
+
+  private static final long serialVersionUID = 7410148749197145786L;
+
   public BenchmarkReportInputFileFormatException(String message) {
     super(message);
   }

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Subversion Kills Productivity. Get off Subversion & Make the Move to Perforce.
With Perforce, you get hassle-free workflows. Merge that actually works. 
Faster operations. Version large binaries.  Built-in WAN optimization and the
freedom to use Git, Perforce or both. Make the move to Perforce.
http://pubads.g.doubleclick.net/gampad/clk?id=122218951&iu=/4140/ostg.clktrk
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to