1 /*******************************************************************************2 * Copyright (c) 2006, 2007 IBM Corporation and others.3 * All rights reserved. This program and the accompanying materials4 * are made available under the terms of the Eclipse Public License v1.05 * which accompanies this distribution, and is available at6 * http://www.eclipse.org/legal/epl-v10.html7 *8 * Contributors:9 * IBM Corporation - initial API and implementation10 *******************************************************************************/11 12 package org.eclipse.debug.internal.ui.viewers.update;13 14 import org.eclipse.debug.core.model.IDebugElement;15 import org.eclipse.debug.internal.ui.viewers.model.provisional.IModelSelectionPolicy;16 import org.eclipse.debug.internal.ui.viewers.model.provisional.IModelSelectionPolicyFactory;17 import org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext;18 import org.eclipse.debug.ui.IDebugUIConstants;19 20 /**21 * Default factory for selection policies.22 * 23 * @since 3.224 */25 public class DefaultModelSelectionPolicyFactory implements IModelSelectionPolicyFactory {26 27 public IModelSelectionPolicy createModelSelectionPolicyAdapter(Object element, IPresentationContext context) {28 if (IDebugUIConstants.ID_DEBUG_VIEW.equals(context.getId())) {29 if (element instanceof IDebugElement) {30 return new DefaultSelectionPolicy((IDebugElement)element);31 }32 }33 return null;34 }35 36 }37