Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [gmf-dev] Targeting 3.2M5


Hi Richard,

In case it's useful to you, here's a patch to fix this problem in TestingConfigurationElement:



Cheers,

Linda



"Richard Gronback" <Richard.Gronback@xxxxxxxxxxx>
Sent by: gmf-dev-bounces@xxxxxxxxxxx

02/22/2006 08:31 AM

Please respond to
"GMF Project developer discussions."

To
"GMF Project developer discussions." <gmf-dev@xxxxxxxxxxx>
cc
Subject
[gmf-dev] Targeting 3.2M5





Hi All,
 
Just a head’s up… I’ve configured my local target with M5 and observe some compiler errors we’ll need to address before tomorrow’s I-build.
 
Severity            Path     Resource          Description       Location           Creation Time    Id
Error     org.eclipse.gmf.tests.runtime.common.core/src/org/eclipse/gmf/tests/runtime/common/core/internal/util            TestingConfigurationElement.java          The type TestingConfigurationElement must implement the inherited abstract method IConfigurationElement.getContributor()   line 28   February 20, 2006 11:09:40 PM  272820
Error     org.eclipse.gmf.tests.runtime.common.core/src/org/eclipse/gmf/tests/runtime/common/core/internal/util            TestingConfigurationElement.java          The type TestingConfigurationElement must implement the inherited abstract method IConfigurationElement.getNamespaceIdentifier() line 28   February 20, 2006 11:09:40 PM  272819
 
Thanks,
Rich
 
Richard C. Gronback
Borland Software Corporation
richard.gronback@xxxxxxxxxxx
+1 860 227 9215
 _______________________________________________
gmf-dev mailing list
gmf-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/gmf-dev

### Eclipse Workspace Patch 1.0
#P org.eclipse.gmf.tests.runtime.common.core
Index: src/org/eclipse/gmf/tests/runtime/common/core/internal/util/TestingConfigurationElement.java
===================================================================
RCS file: /home/technology/org.eclipse.gmf/tests/org.eclipse.gmf.tests.runtime.common.core/src/org/eclipse/gmf/tests/runtime/common/core/internal/util/TestingConfigurationElement.java,v
retrieving revision 1.6
diff -u -r1.6 TestingConfigurationElement.java
--- src/org/eclipse/gmf/tests/runtime/common/core/internal/util/TestingConfigurationElement.java	17 Feb 2006 20:57:05 -0000	1.6
+++ src/org/eclipse/gmf/tests/runtime/common/core/internal/util/TestingConfigurationElement.java	22 Feb 2006 13:59:33 -0000
@@ -17,6 +17,7 @@
 
 import org.eclipse.core.runtime.CoreException;
 import org.eclipse.core.runtime.IConfigurationElement;
+import org.eclipse.core.runtime.IContributor;
 import org.eclipse.core.runtime.IExtension;
 import org.eclipse.core.runtime.InvalidRegistryObjectException;
 import org.eclipse.core.runtime.Status;
@@ -183,5 +184,15 @@
 	public boolean isValid() {
 		return false;
 	}
+    
+    public IContributor getContributor()
+        throws InvalidRegistryObjectException {
+        return null;
+    }
+    
+    public String getNamespaceIdentifier()
+        throws InvalidRegistryObjectException {
+        return null;
+    }
 
 }

Back to the top