plugins/org.symbian.tools.tmw.debug/src/org/symbian/tools/tmw/debug/internal/property/LaunchableFactory.java
changeset 471 06589bf52fa7
child 484 f5df819c1852
equal deleted inserted replaced
470:d4809db37847 471:06589bf52fa7
       
     1 package org.symbian.tools.tmw.debug.internal.property;
       
     2 
       
     3 import org.eclipse.core.runtime.IAdapterFactory;
       
     4 
       
     5 public class LaunchableFactory implements IAdapterFactory {
       
     6 
       
     7     @SuppressWarnings("rawtypes")
       
     8     public Object getAdapter(Object adaptableObject, Class adapterType) {
       
     9 		// It is only needed to exist
       
    10 		return null;
       
    11 	}
       
    12 
       
    13     @SuppressWarnings("rawtypes")
       
    14     public Class[] getAdapterList() {
       
    15 		// It is only needed to exist
       
    16 		return null;
       
    17 	}
       
    18 
       
    19 }