blob: 4adec277b4fb7b1e40561379bf598e8cdb32ddcb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2010 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.internal.ui.viewers;
import org.eclipse.debug.internal.ui.viewers.model.provisional.PresentationContext;
import org.eclipse.ui.IWorkbenchPart;
/**
* A presentation context tied to a part.
*
* @since 3.3
* @deprecated getPart() is now supported by IPresentationContext itself.
*/
public class PartPresentationContext extends PresentationContext {
/**
* Constructs a part presentation context.
*
* @param part part
*/
public PartPresentationContext(IWorkbenchPart part) {
super(part);
}
public IWorkbenchPart getPart() {
return super.getPart();
}
}