You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by fu...@apache.org on 2005/07/30 02:04:27 UTC

svn commit: r226441 - in /incubator/derby/code/branches/10.1/plugins/eclipse: org.apache.derby.plugin.doc/ org.apache.derby.ui/ org.apache.derby.ui/src/org/apache/derby/ui/launch/

Author: fuzzylogic
Date: Fri Jul 29 17:04:18 2005
New Revision: 226441

URL: http://svn.apache.org/viewcvs?rev=226441&view=rev
Log:
DERBY-476: Make Derby UI plugin compatible with Eclipse 3.1M6 or higher.

Committed for Susan Cline <ho...@pacbell.net>

Modified:
    incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.plugin.doc/plugin.xml
    incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/plugin.xml
    incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/IJDerbyLaunchConfigurationDelegate.java
    incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/StartDerbyServerLaunchConfigurationDelegate.java
    incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/StopDerbyServerLaunchConfigurationDelegate.java
    incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/SysInfoDerbyLaunchConfigurationDelegate.java

Modified: incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.plugin.doc/plugin.xml
URL: http://svn.apache.org/viewcvs/incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.plugin.doc/plugin.xml?rev=226441&r1=226440&r2=226441&view=diff
==============================================================================
--- incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.plugin.doc/plugin.xml (original)
+++ incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.plugin.doc/plugin.xml Fri Jul 29 17:04:18 2005
@@ -3,7 +3,7 @@
 <plugin 
    id="org.apache.derby.plugin.doc" 
    name="Apache Derby Plug-in Documentation for Eclipse" 
-   version="1.0.0" 
+   version="1.1.0" 
    provider-name="The Apache Software Foundation">
 
   <runtime>

Modified: incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/plugin.xml
URL: http://svn.apache.org/viewcvs/incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/plugin.xml?rev=226441&r1=226440&r2=226441&view=diff
==============================================================================
--- incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/plugin.xml (original)
+++ incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/plugin.xml Fri Jul 29 17:04:18 2005
@@ -3,7 +3,7 @@
 <plugin
    id="org.apache.derby.ui"
    name="Apache Derby Ui Plug-in for Eclipse"
-   version="1.0.0"
+   version="1.1.0"
    provider-name="The Apache Software Foundation"
    class="org.apache.derby.ui.DerbyPlugin">
 
@@ -380,7 +380,7 @@
             public="false"
             name="IJ"
             id="org.apache.derby.ui.ijDerbyLaunchConfigurationType"
-            modes="run, debug"/>
+            modes="run, debug"/>         
    </extension>
    <extension
          point="org.eclipse.debug.ui.launchConfigurationTypeImages">

Modified: incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/IJDerbyLaunchConfigurationDelegate.java
URL: http://svn.apache.org/viewcvs/incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/IJDerbyLaunchConfigurationDelegate.java?rev=226441&r1=226440&r2=226441&view=diff
==============================================================================
--- incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/IJDerbyLaunchConfigurationDelegate.java (original)
+++ incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/IJDerbyLaunchConfigurationDelegate.java Fri Jul 29 17:04:18 2005
@@ -20,10 +20,10 @@
 
 package org.apache.derby.ui.launch;
 
-import org.eclipse.jdt.internal.launching.JavaLocalApplicationLaunchConfigurationDelegate;
+import org.eclipse.jdt.launching.JavaLaunchDelegate;
 
 
 public class IJDerbyLaunchConfigurationDelegate extends
-		JavaLocalApplicationLaunchConfigurationDelegate {
+		JavaLaunchDelegate {
 
 }

Modified: incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/StartDerbyServerLaunchConfigurationDelegate.java
URL: http://svn.apache.org/viewcvs/incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/StartDerbyServerLaunchConfigurationDelegate.java?rev=226441&r1=226440&r2=226441&view=diff
==============================================================================
--- incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/StartDerbyServerLaunchConfigurationDelegate.java (original)
+++ incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/StartDerbyServerLaunchConfigurationDelegate.java Fri Jul 29 17:04:18 2005
@@ -20,10 +20,9 @@
 
 package org.apache.derby.ui.launch;
 
-import org.eclipse.jdt.internal.launching.JavaLocalApplicationLaunchConfigurationDelegate;
-
+import org.eclipse.jdt.launching.JavaLaunchDelegate;
 
 public class StartDerbyServerLaunchConfigurationDelegate extends
-		JavaLocalApplicationLaunchConfigurationDelegate {
-
+		JavaLaunchDelegate {
+	
 }

Modified: incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/StopDerbyServerLaunchConfigurationDelegate.java
URL: http://svn.apache.org/viewcvs/incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/StopDerbyServerLaunchConfigurationDelegate.java?rev=226441&r1=226440&r2=226441&view=diff
==============================================================================
--- incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/StopDerbyServerLaunchConfigurationDelegate.java (original)
+++ incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/StopDerbyServerLaunchConfigurationDelegate.java Fri Jul 29 17:04:18 2005
@@ -20,10 +20,10 @@
 
 package org.apache.derby.ui.launch;
 
-import org.eclipse.jdt.internal.launching.JavaLocalApplicationLaunchConfigurationDelegate;
+import org.eclipse.jdt.launching.JavaLaunchDelegate;
 
 
 public class StopDerbyServerLaunchConfigurationDelegate extends
-		JavaLocalApplicationLaunchConfigurationDelegate {
+		JavaLaunchDelegate {
 
 }

Modified: incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/SysInfoDerbyLaunchConfigurationDelegate.java
URL: http://svn.apache.org/viewcvs/incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/SysInfoDerbyLaunchConfigurationDelegate.java?rev=226441&r1=226440&r2=226441&view=diff
==============================================================================
--- incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/SysInfoDerbyLaunchConfigurationDelegate.java (original)
+++ incubator/derby/code/branches/10.1/plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/launch/SysInfoDerbyLaunchConfigurationDelegate.java Fri Jul 29 17:04:18 2005
@@ -20,10 +20,10 @@
 
 package org.apache.derby.ui.launch;
 
-import org.eclipse.jdt.internal.launching.JavaLocalApplicationLaunchConfigurationDelegate;
+import org.eclipse.jdt.launching.JavaLaunchDelegate;
 
 
 public class SysInfoDerbyLaunchConfigurationDelegate extends
-		JavaLocalApplicationLaunchConfigurationDelegate {
+		JavaLaunchDelegate {
 
 }