blob: 2c15b82e10f9b96696bd3d992ad359905b0b48d0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 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.contexts.provisional;
import org.eclipse.ui.IWorkbenchPage;
/**
* An adpater that is capable of displaying source for an object.
* The adapter is obtained from an object in a debug context.
*
* @since 3.2
*/
public interface ISourceDisplayAdapter {
/**
* Displays source for the given context in the specified page.
*
* @param context debug context to display source for
* @param page the page in which to display source
* @param forceSourceLookup whether source lookup should be performed
*/
public void displaySource(Object context, IWorkbenchPage page, boolean forceSourceLookup);
}