blob: 50bbf0d2c4a778a90fd47a811fd00b33134e274e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.refactoring;
import org.eclipse.swt.widgets.Control;
/**
* A special viewer to present a context for a <code>RefactoringStatusEntry</code>.
*/
public interface IErrorContextViewer {
/**
* Sets the error context viewer's input element.
*
* @param input the input element
*/
public void setInput(Object input);
/**
* Returns the error context viewer's SWT control.
*
* @return the error context viewer's SWT control
*/
public Control getControl();
}