Programmatically showing a View from an Eclipse Plug-in - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T18:45:58Z http://stackoverflow.com/feeds/question/171824 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/171824/programmatically-showing-a-view-from-an-eclipse-plug-in 2 Programmatically showing a View from an Eclipse Plug-in Brian 2008-10-05T11:00:10Z 2009-05-20T15:37:10Z <p>I have a plug-in to an Eclipse RCP application that has a view. After an event occurs in the RCP application, the plug-in is instantiated, its methods are called to populate the plug-in's model, but I cannot find how to make the view appear without going to the "Show View..." menu.</p> <p>I would think that there would be something in the workbench singleton that could handle this, but I have not found out how anywhere.</p> http://stackoverflow.com/questions/171824/programmatically-showing-a-view-from-an-eclipse-plug-in/172082#172082 6 Answer by ILikeCoffee for Programmatically showing a View from an Eclipse Plug-in ILikeCoffee 2008-10-05T14:44:33Z 2008-10-05T14:44:33Z <p>You are probably looking for this:</p> <pre><code>PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView(arg0); </code></pre> http://stackoverflow.com/questions/171824/programmatically-showing-a-view-from-an-eclipse-plug-in/675164#675164 2 Answer by Imaskar for Programmatically showing a View from an Eclipse Plug-in Imaskar 2009-03-23T20:44:00Z 2009-03-23T20:44:00Z <p>If called from handler of a command</p> <pre><code>HandlerUtil.getActiveWorkbenchWindow(event).getActivePage().showView(viewId); </code></pre> <p>would be better, as I know. </p> http://stackoverflow.com/questions/171824/programmatically-showing-a-view-from-an-eclipse-plug-in/888682#888682 0 Answer by for Programmatically showing a View from an Eclipse Plug-in 2009-05-20T15:37:10Z 2009-05-20T15:37:10Z <p>I found the need to bring the view to the front after it had been opened and pushed to the background. The activate method does the trick.</p> <pre><code>PlatformUI.getWorkbench() .getActiveWorkbenchWindow() .getActivePage() .activate(workbenchPartToActivate); </code></pre> <p>NOTE: The workbenchPartToActivate is an instance of <code>IWorkbenchPart</code>.</p>