/******************************************************************************* * Copyright (c) 2000, 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package net.sourceforge.phpdt.internal.debug.ui.actions; import org.eclipse.core.runtime.IAdapterFactory; import org.eclipse.debug.ui.actions.IToggleBreakpointsTarget; /** * Creates adapters for retargettable actions in debug platform. Contributed via * org.eclipse.core.runtime.adapters extension point. * * @since 3.0 */ public class RetargettableActionAdapterFactory implements IAdapterFactory { /* * (non-Javadoc) * * @see org.eclipse.core.runtime.IAdapterFactory#getAdapter(java.lang.Object, * java.lang.Class) */ public Object getAdapter(Object adaptableObject, Class adapterType) { // if (adapterType == IRunToLineTarget.class) { // return new RunToLineAdapter(); // } if (adapterType == IToggleBreakpointsTarget.class) { return new ToggleBreakpointAdapter(); } return null; } /* * (non-Javadoc) * * @see org.eclipse.core.runtime.IAdapterFactory#getAdapterList() */ public Class[] getAdapterList() { // return new Class[]{IRunToLineTarget.class, // IToggleBreakpointsTarget.class}; return new Class[] { IToggleBreakpointsTarget.class }; } }