/******************************************************************************* * Copyright (c) 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.debug.examples.ui.midi.adapters; import org.eclipse.debug.core.ILaunch; import org.eclipse.debug.examples.core.midi.launcher.MidiLaunch; import org.eclipse.debug.internal.ui.viewers.model.provisional.IModelProxy; import org.eclipse.debug.internal.ui.viewers.model.provisional.IModelProxyFactory; import org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext; import org.eclipse.debug.internal.ui.viewers.update.LaunchProxy; import org.eclipse.debug.ui.IDebugUIConstants; /** * Factory to create a model proxy for sequencer controls in * the variables view. * * @since 1.0 */ public class SequencerModelProxyFactory implements IModelProxyFactory { /* (non-Javadoc) * @see org.eclipse.debug.internal.ui.viewers.model.provisional.IModelProxyFactory#createModelProxy(java.lang.Object, org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext) */ @Override public IModelProxy createModelProxy(Object element, IPresentationContext context) { if (IDebugUIConstants.ID_VARIABLE_VIEW.equals(context.getId())) { if (element instanceof MidiLaunch) { return new SequencerControlsModelProxy((MidiLaunch)element); } } if (IDebugUIConstants.ID_DEBUG_VIEW.equals(context.getId())) { if (element instanceof MidiLaunch) { return new LaunchProxy((ILaunch)element); } } return null; } }