[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[news.eclipse.technology.laszlo] Hi folks - if there are any eclipse guru's out there
|
We need to refactor the following method to make the plugin compatible with
3.2 of eclipse. Does anyone know a good equivalent I can drop in for the
ExpressionInformationControl ? - It no longer exists in 3.2 of eclipse.
org.eclipse.debug.internal.ui.views.expression.ExpressionInformationControl;
protected void showPopup(final IEvaluationResult result) {
final InformationPresenter infoPresenter = new InformationPresenter(new
IInformationControlCreator() {
public IInformationControl createInformationControl(Shell parent) {
IWorkbenchPage page = getActivePage();
expression = new LZXInspectExpression(result);
ExpressionInformationControl control = new
ExpressionInformationControl(page, expression, ACTION_DEFININIITION_ID);
control.addDisposeListener(new DisposeListener() {
public void widgetDisposed(DisposeEvent e) {
getInformationPresenter().uninstall();
}
});
return control;
}
});