[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.rcp] Re: Verification of install

I've found a way (in the Workbench class) to display the message box.

private AbstractSplashHandler getSplash() {
AbstractSplashHandler splash = null;
IProduct product = Platform.getProduct();
if (product != null) { splash = SplashHandlerFactory.findSplashHandlerFor(product);
}
return splash;
}


I can then getSplash().getSplash() to get a shell to display the MessageDialog with.

Could the Workbench's getSplash() method find its way into IWorkbench in one of the next releases?