plugins/org.symbian.tools.tmw.debug/src/org/symbian/tools/tmw/debug/internal/property/LaunchableFactory.java
changeset 471 06589bf52fa7
child 484 f5df819c1852
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/plugins/org.symbian.tools.tmw.debug/src/org/symbian/tools/tmw/debug/internal/property/LaunchableFactory.java	Mon Aug 23 09:55:57 2010 -0700
@@ -0,0 +1,19 @@
+package org.symbian.tools.tmw.debug.internal.property;
+
+import org.eclipse.core.runtime.IAdapterFactory;
+
+public class LaunchableFactory implements IAdapterFactory {
+
+    @SuppressWarnings("rawtypes")
+    public Object getAdapter(Object adaptableObject, Class adapterType) {
+		// It is only needed to exist
+		return null;
+	}
+
+    @SuppressWarnings("rawtypes")
+    public Class[] getAdapterList() {
+		// It is only needed to exist
+		return null;
+	}
+
+}