|
From: <caw...@us...> - 2007-06-13 19:09:57
|
Revision: 2616
http://svn.sourceforge.net/rubyeclipse/?rev=2616&view=rev
Author: cawilliams
Date: 2007-06-13 12:09:54 -0700 (Wed, 13 Jun 2007)
Log Message:
-----------
add interface for other plugins to get constants used in plugin (like ID of wizard for new test cases).
Modified Paths:
--------------
trunk/org.rubypeople.rdt.testunit/META-INF/MANIFEST.MF
Added Paths:
-----------
trunk/org.rubypeople.rdt.testunit/src/org/rubypeople/rdt/testunit/ITestUnitConstants.java
Modified: trunk/org.rubypeople.rdt.testunit/META-INF/MANIFEST.MF
===================================================================
--- trunk/org.rubypeople.rdt.testunit/META-INF/MANIFEST.MF 2007-06-13 19:04:52 UTC (rev 2615)
+++ trunk/org.rubypeople.rdt.testunit/META-INF/MANIFEST.MF 2007-06-13 19:09:54 UTC (rev 2616)
@@ -8,7 +8,8 @@
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Export-Package: org.rubypeople.rdt.testunit.launcher,
- org.rubypeople.rdt.testunit.wizards
+ org.rubypeople.rdt.testunit.wizards,
+ org.rubypeople.rdt.testunit
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.debug.core,
Added: trunk/org.rubypeople.rdt.testunit/src/org/rubypeople/rdt/testunit/ITestUnitConstants.java
===================================================================
--- trunk/org.rubypeople.rdt.testunit/src/org/rubypeople/rdt/testunit/ITestUnitConstants.java (rev 0)
+++ trunk/org.rubypeople.rdt.testunit/src/org/rubypeople/rdt/testunit/ITestUnitConstants.java 2007-06-13 19:09:54 UTC (rev 2616)
@@ -0,0 +1,5 @@
+package org.rubypeople.rdt.testunit;
+
+public interface ITestUnitConstants {
+ public static final String ID_NEW_TESTCASE_WIZARD = "org.rubypeople.rdt.testunit.wizards.RubyNewTestCaseWizard";
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|