Revision: 17077
http://sourceforge.net/p/gate/code/17077
Author: markagreenwood
Date: 2013-11-12 16:13:30 +0000 (Tue, 12 Nov 2013)
Log Message:
-----------
changed the core folder to main to be more consistent with the general world
Modified Paths:
--------------
gate/branches/sawdust/.classpath
gate/branches/sawdust/build.xml
Added Paths:
-----------
gate/branches/sawdust/src/main/
gate/branches/sawdust/src/main/gate/creole/ontology/
gate/branches/sawdust/src/main/gate/gui/annedit/OwnedAnnotationEditor.java
Removed Paths:
-------------
gate/branches/sawdust/src/core/
gate/branches/sawdust/src/main/gate/creole/ontology/
gate/branches/sawdust/src/main/gate/gui/annedit/OwnedAnnotationEditor.java
Modified: gate/branches/sawdust/.classpath
===================================================================
--- gate/branches/sawdust/.classpath 2013-11-12 15:59:59 UTC (rev 17076)
+++ gate/branches/sawdust/.classpath 2013-11-12 16:13:30 UTC (rev 17077)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="src/core"/>
+ <classpathentry kind="src" path="src/main"/>
<classpathentry kind="src" output="plugins/Tools/classes"
path="plugins/Tools/src"/>
<classpathentry kind="src" output="plugins/Coref_Tools/classes"
path="plugins/Coref_Tools/src"/>
<classpathentry kind="src" output="plugins/JAPE_Plus/classes"
path="plugins/JAPE_Plus/src"/>
@@ -86,5 +86,5 @@
<classpathentry kind="lib"
path="plugins/Ontology/lib/owlim-lite-5.3.jar"/>
<classpathentry kind="lib"
path="plugins/OpenNLP/lib/opennlp-maxent-3.0.2-incubating.jar"/>
<classpathentry exported="true" kind="con"
path="org.apache.ivyde.eclipse.cpcontainer.IVYDE_CONTAINER/?project=GATE+Sawdust&ivyXmlPath=ivy.xml&confs=*"/>
- <classpathentry kind="output" path="classes/core"/>
+ <classpathentry kind="output" path="classes/main"/>
</classpath>
Modified: gate/branches/sawdust/build.xml
===================================================================
--- gate/branches/sawdust/build.xml 2013-11-12 15:59:59 UTC (rev 17076)
+++ gate/branches/sawdust/build.xml 2013-11-12 16:13:30 UTC (rev 17077)
@@ -44,7 +44,7 @@
<property name="gate.home" location="${basedir}" />
<!-- Sources -->
- <property name="srcDir" location="src/core" />
+ <property name="srcDir" location="src/main" />
<property name="tests.srcDir" location="src/test" />
<!-- Files required by the build process -->
@@ -54,7 +54,7 @@
<property name="binDir" location="bin" />
<!-- Output directory for the build process -->
- <property name="outputDir" location="classes/core" />
+ <property name="outputDir" location="classes/main" />
<property name="tests.outputDir" location="classes/test" />
<!-- Libraries directory for the build process -->
Deleted:
gate/branches/sawdust/src/main/gate/gui/annedit/OwnedAnnotationEditor.java
===================================================================
--- gate/branches/sawdust/src/core/gate/gui/annedit/OwnedAnnotationEditor.java
2013-11-12 02:22:18 UTC (rev 17075)
+++ gate/branches/sawdust/src/main/gate/gui/annedit/OwnedAnnotationEditor.java
2013-11-12 16:13:30 UTC (rev 17077)
@@ -1,61 +0,0 @@
-/*
- * Copyright (c) 1995-2012, The University of Sheffield. See the file
- * COPYRIGHT.txt in the software or at http://gate.ac.uk/gate/COPYRIGHT.txt
- *
- * This file is part of GATE (see http://gate.ac.uk/), and is free software,
- * licenced under the GNU Library General Public License, Version 2, June 1991
- * (in the distribution as file licence.html, and also available at
- * http://gate.ac.uk/gate/licence.html).
- *
- * Valentin Tablan, Sep 11, 2007
- *
- * $Id$
- */
-package gate.gui.annedit;
-
-import gate.creole.AnnotationVisualResource;
-
-import java.awt.ComponentOrientation;
-
-/**
- * Interface for all annotation editor components
- */
-public interface OwnedAnnotationEditor extends AnnotationVisualResource {
- /**
- * Finds the best location for the editor dialog for a given span of text
- */
- public void placeDialog(int start, int end);
-
- /**
- * Sets the owner (i.e. controller) for this editor.
- *
- * @param owner
- */
- public void setOwner(AnnotationEditorOwner owner);
-
- /**
- * @return owner The owner (i.e. controller) for this editor.
- */
- public AnnotationEditorOwner getOwner();
-
- /**
- * @param pinned
- * true if the window should not move when an annotation is
selected.
- */
- public void setPinnedMode(boolean pinned);
-
- /**
- * Enable or disable the editing GUI components.
- *
- * @param isEditingEnabled
- * true to enable the editing, false to disable it
- */
- public void setEditingEnabled(boolean isEditingEnabled);
-
- /**
- * Changes the orientation of components
- *
- * @param orientation
- */
- public void changeOrientation(ComponentOrientation orientation);
-}
Copied:
gate/branches/sawdust/src/main/gate/gui/annedit/OwnedAnnotationEditor.java
(from rev 17076,
gate/branches/sawdust/src/core/gate/gui/annedit/OwnedAnnotationEditor.java)
===================================================================
--- gate/branches/sawdust/src/main/gate/gui/annedit/OwnedAnnotationEditor.java
(rev 0)
+++ gate/branches/sawdust/src/main/gate/gui/annedit/OwnedAnnotationEditor.java
2013-11-12 16:13:30 UTC (rev 17077)
@@ -0,0 +1,61 @@
+/*
+ * Copyright (c) 1995-2012, The University of Sheffield. See the file
+ * COPYRIGHT.txt in the software or at http://gate.ac.uk/gate/COPYRIGHT.txt
+ *
+ * This file is part of GATE (see http://gate.ac.uk/), and is free software,
+ * licenced under the GNU Library General Public License, Version 2, June 1991
+ * (in the distribution as file licence.html, and also available at
+ * http://gate.ac.uk/gate/licence.html).
+ *
+ * Valentin Tablan, Sep 11, 2007
+ *
+ * $Id$
+ */
+package gate.gui.annedit;
+
+import gate.creole.AnnotationVisualResource;
+
+import java.awt.ComponentOrientation;
+
+/**
+ * Interface for all annotation editor components
+ */
+public interface OwnedAnnotationEditor extends AnnotationVisualResource {
+ /**
+ * Finds the best location for the editor dialog for a given span of text
+ */
+ public void placeDialog(int start, int end);
+
+ /**
+ * Sets the owner (i.e. controller) for this editor.
+ *
+ * @param owner
+ */
+ public void setOwner(AnnotationEditorOwner owner);
+
+ /**
+ * @return owner The owner (i.e. controller) for this editor.
+ */
+ public AnnotationEditorOwner getOwner();
+
+ /**
+ * @param pinned
+ * true if the window should not move when an annotation is
selected.
+ */
+ public void setPinnedMode(boolean pinned);
+
+ /**
+ * Enable or disable the editing GUI components.
+ *
+ * @param isEditingEnabled
+ * true to enable the editing, false to disable it
+ */
+ public void setEditingEnabled(boolean isEditingEnabled);
+
+ /**
+ * Changes the orientation of components
+ *
+ * @param orientation
+ */
+ public void changeOrientation(ComponentOrientation orientation);
+}
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs