Revision: 19297
          http://sourceforge.net/p/gate/code/19297
Author:   markagreenwood
Date:     2016-05-11 09:02:37 +0000 (Wed, 11 May 2016)
Log Message:
-----------
making sure everything is checked in before I start seriously breaking 
things..... again :D

Modified Paths:
--------------
    gate/branches/sawdust2/notes.txt
    gate/branches/sawdust2/src/main/gate/Main.java
    gate/branches/sawdust2/src/main/gate/Plugin.java
    gate/branches/sawdust2/src/main/gate/util/GateClassLoader.java

Modified: gate/branches/sawdust2/notes.txt
===================================================================
--- gate/branches/sawdust2/notes.txt    2016-05-11 08:54:49 UTC (rev 19296)
+++ gate/branches/sawdust2/notes.txt    2016-05-11 09:02:37 UTC (rev 19297)
@@ -7,3 +7,45 @@
 svn merge https://svn.code.sf.net/p/gate/code/gate/trunk
 
 
+
+pinch point between core and gui
+================================
+if we moved
+       gate.gui.*
+       gate.swing.*
+into a separate project then the only problem appears to be gate.gui.Handle
+
+
+
+things to remove
+================
+gate.hui.HelpFrame
+can't display the user guide properly but need to unwire from options dialog
+
+gate.swing.XJEditorPane
+only used by the HelpFrame so can go
+
+gate.swing.VerticalTextIcon
+gate.swing.WaitDialog
+
+gate.util.Coordinates
+gate.util.CorpusSaver
+gate.util.DocumentProcessor
+gate.util.LanguageAnalyserDocumentProcessor
+gate.util.HtmlLinksExtractor
+gate.util.JarFiles
+gate.util.LaxErrorHandler
+gate.util.TemplateLaxErrorHandler
+gate.util.LuckyException -- replace with RuntimeException
+gate.util.ObjectPool
+gate.util.ObjectWriter
+gate.util.OrderByRestriction
+gate.util.Pair
+gate.util.ProgressPrinter
+gate.util.RawEditorKit
+gate.util.Restriction
+
+to move into plugins
+====================
+gate.gui.annedit.Schema*
+gate.gui.Teamware (do we even need any of this)

Modified: gate/branches/sawdust2/src/main/gate/Main.java
===================================================================
--- gate/branches/sawdust2/src/main/gate/Main.java      2016-05-11 08:54:49 UTC 
(rev 19296)
+++ gate/branches/sawdust2/src/main/gate/Main.java      2016-05-11 09:02:37 UTC 
(rev 19297)
@@ -130,7 +130,7 @@
     while(iter.hasNext()) {
       URL u = iter.next();
       try {
-        reg.registerDirectories(u);
+        reg.registerPlugin(new Plugin.Directory(u));
       } catch(GateException e) {
         Err.prln("Couldn't register CREOLE directory: " + u);
         Err.prln(e);

Modified: gate/branches/sawdust2/src/main/gate/Plugin.java
===================================================================
--- gate/branches/sawdust2/src/main/gate/Plugin.java    2016-05-11 08:54:49 UTC 
(rev 19296)
+++ gate/branches/sawdust2/src/main/gate/Plugin.java    2016-05-11 09:02:37 UTC 
(rev 19297)
@@ -361,9 +361,9 @@
   }
 
   public static class Maven extends Plugin implements Serializable {
-    // TODO needs a better name that isn't tied to using Maven but talks
-    // more about dependency resolution
 
+    private static final long serialVersionUID = -6944695755723023537L;
+
     private String group, artifact, version;
 
     public Maven(String group, String artifact, String version) {

Modified: gate/branches/sawdust2/src/main/gate/util/GateClassLoader.java
===================================================================
--- gate/branches/sawdust2/src/main/gate/util/GateClassLoader.java      
2016-05-11 08:54:49 UTC (rev 19296)
+++ gate/branches/sawdust2/src/main/gate/util/GateClassLoader.java      
2016-05-11 09:02:37 UTC (rev 19297)
@@ -21,18 +21,11 @@
 
 package gate.util;
 
-import gate.Gate;
-import gate.Gate.ResourceInfo;
-import gate.Plugin;
-import gate.Resource;
-import gate.creole.AbstractResource;
-
 import java.beans.Introspector;
 import java.io.IOException;
 import java.net.URL;
 import java.net.URLClassLoader;
 import java.util.ArrayList;
-import java.util.Arrays;
 import java.util.Collections;
 import java.util.Enumeration;
 import java.util.HashSet;
@@ -44,6 +37,12 @@
 
 import org.apache.log4j.Logger;
 
+import gate.Gate;
+import gate.Gate.ResourceInfo;
+import gate.Plugin;
+import gate.Resource;
+import gate.creole.AbstractResource;
+
 /**
  * GATE's class loader, which allows loading of classes over the net. A
  * list of URLs is searched, which should point at .jar files or to

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


------------------------------------------------------------------------------
Mobile security can be enabling, not merely restricting. Employees who
bring their own devices (BYOD) to work are irked by the imposition of MDM
restrictions. Mobile Device Manager Plus allows you to control only the
apps on BYO-devices by containerizing them, leaving personal data untouched!
https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to