plugins/org.symbian.tools.tmw.debug/src/org/symbian/tools/tmw/debug/internal/property/LaunchableFactory.java
author Eugene Ostroukhov <eugeneo@symbian.org>
Mon, 23 Aug 2010 09:55:57 -0700
changeset 471 06589bf52fa7
child 484 f5df819c1852
permissions -rw-r--r--
Refactoring and restructuring the repository

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;
	}

}