1 /*******************************************************************************2 * Copyright (c) 2000, 2005 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 package org.eclipse.debug.internal.ui.views.expression;12 13 import org.eclipse.debug.internal.ui.views.RemoteTreeContentManager;14 import org.eclipse.debug.internal.ui.views.RemoteTreeViewer;15 import org.eclipse.debug.internal.ui.views.variables.RemoteVariablesContentProvider;16 import org.eclipse.debug.internal.ui.views.variables.VariablesView;17 import org.eclipse.ui.IWorkbenchPartSite;18 19 public class RemoteExpressionsContentProvider extends RemoteVariablesContentProvider {20 21 /**22 * @param viewer23 * @param site24 * @param view25 */26 public RemoteExpressionsContentProvider(RemoteTreeViewer viewer, IWorkbenchPartSite site, VariablesView view) {27 super(viewer, site, view);28 }29 30 protected RemoteTreeContentManager createContentManager(RemoteTreeViewer viewer, IWorkbenchPartSite site, VariablesView view) {31 return new RemoteExpressionContentManager(this, viewer, site, view);32 } 33 34 }35