/******************************************************************************* * Copyright (c) 2008 Wind River Systems 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: * Wind River Systems - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.debug.internal.ui.elements.adapters; import org.eclipse.cdt.debug.internal.ui.views.modules.ModuleContentProvider; import org.eclipse.debug.internal.ui.model.elements.StackFrameContentProvider; import org.eclipse.debug.internal.ui.viewers.model.provisional.IChildrenCountUpdate; import org.eclipse.debug.internal.ui.viewers.model.provisional.IChildrenUpdate; import org.eclipse.debug.internal.ui.viewers.model.provisional.IHasChildrenUpdate; import org.eclipse.debug.ui.IDebugUIConstants; /** * Delegating provider implementation. If the memento request is for the * modules view, the provider impelementation delegates the request to the * modules view-specific provider. Otherwise, it calls the default superclass * implementation. */ public class CStackFrameContentProvider extends StackFrameContentProvider { private ModuleContentProvider fModuleContentProvider = new ModuleContentProvider(); @Override public void update(IChildrenCountUpdate[] updates) { if (updates[0].getPresentationContext().getId().equals(IDebugUIConstants.ID_MODULE_VIEW)) { fModuleContentProvider.update(updates); } else { super.update(updates); } } @Override public void update(IHasChildrenUpdate[] updates) { if (updates[0].getPresentationContext().getId().equals(IDebugUIConstants.ID_MODULE_VIEW)) { fModuleContentProvider.update(updates); } else { super.update(updates); } } @Override public void update(IChildrenUpdate[] updates) { if (updates[0].getPresentationContext().getId().equals(IDebugUIConstants.ID_MODULE_VIEW)) { fModuleContentProvider.update(updates); } else { super.update(updates); } } }