KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > debug > internal > ui > viewers > update > DefaultModelSelectionPolicyFactory


1 /*******************************************************************************
2  * Copyright (c) 2006, 2007 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

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.2
24  */

25 public class DefaultModelSelectionPolicyFactory implements IModelSelectionPolicyFactory {
26
27     public IModelSelectionPolicy createModelSelectionPolicyAdapter(Object JavaDoc 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
Popular Tags