blob: 9ecf2ee7a5dd41d86362cca6cb50c7166e3ad9ba [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 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
*/
public class PartPresentationContext extends PresentationContext {
private IWorkbenchPart fPart;
/**
* Constructs a part presentation context.
*
* @param part part
*/
public PartPresentationContext(IWorkbenchPart part) {
super(part.getSite().getId());
fPart = part;
}
public IWorkbenchPart getPart() {
return fPart;
}
}