1 /*******************************************************************************
2 * Copyright (c) 2000, 2004 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpdt.internal.debug.ui.actions;
13 import org.eclipse.core.runtime.IAdapterFactory;
14 import org.eclipse.debug.ui.actions.IRunToLineTarget;
15 import org.eclipse.debug.ui.actions.IToggleBreakpointsTarget;
18 * Creates adapters for retargettable actions in debug platform.
19 * Contributed via <code>org.eclipse.core.runtime.adapters</code>
24 public class RetargettableActionAdapterFactory implements IAdapterFactory {
26 * @see org.eclipse.core.runtime.IAdapterFactory#getAdapter(java.lang.Object, java.lang.Class)
28 public Object getAdapter(Object adaptableObject, Class adapterType) {
29 // if (adapterType == IRunToLineTarget.class) {
30 // return new RunToLineAdapter();
32 if (adapterType == IToggleBreakpointsTarget.class) {
33 return new ToggleBreakpointAdapter();
38 * @see org.eclipse.core.runtime.IAdapterFactory#getAdapterList()
40 public Class[] getAdapterList() {
41 // return new Class[]{IRunToLineTarget.class, IToggleBreakpointsTarget.class};
42 return new Class[]{IToggleBreakpointsTarget.class};