Organized imports
[phpeclipse.git] / net.sourceforge.phpeclipse.debug.ui / src / net / sourceforge / phpdt / internal / debug / ui / actions / RetargettableActionAdapterFactory.java
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
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpdt.internal.debug.ui.actions;
12
13 import org.eclipse.core.runtime.IAdapterFactory;
14 import org.eclipse.debug.ui.actions.IToggleBreakpointsTarget;
15
16 /**
17  * Creates adapters for retargettable actions in debug platform.
18  * Contributed via <code>org.eclipse.core.runtime.adapters</code> 
19  * extension point. 
20  * 
21  * @since 3.0
22  */
23 public class RetargettableActionAdapterFactory implements IAdapterFactory {
24         /* (non-Javadoc)
25          * @see org.eclipse.core.runtime.IAdapterFactory#getAdapter(java.lang.Object, java.lang.Class)
26          */
27         public Object getAdapter(Object adaptableObject, Class adapterType) {
28 //              if (adapterType == IRunToLineTarget.class) {
29 //                      return new RunToLineAdapter();
30 //              }
31                 if (adapterType == IToggleBreakpointsTarget.class) {
32                         return new ToggleBreakpointAdapter();
33                 } 
34                 return null;
35         }
36         /* (non-Javadoc)
37          * @see org.eclipse.core.runtime.IAdapterFactory#getAdapterList()
38          */
39         public Class[] getAdapterList() {
40         //      return new Class[]{IRunToLineTarget.class, IToggleBreakpointsTarget.class};
41           return new Class[]{IToggleBreakpointsTarget.class};
42         }
43 }