Programmatically showing a View from an Eclipse Plug-in - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T18:45:58Zhttp://stackoverflow.com/feeds/question/171824http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/171824/programmatically-showing-a-view-from-an-eclipse-plug-in2Programmatically showing a View from an Eclipse Plug-inBrian2008-10-05T11:00:10Z2009-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#1720826Answer by ILikeCoffee for Programmatically showing a View from an Eclipse Plug-inILikeCoffee2008-10-05T14:44:33Z2008-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#6751642Answer by Imaskar for Programmatically showing a View from an Eclipse Plug-inImaskar2009-03-23T20:44:00Z2009-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#8886820Answer by for Programmatically showing a View from an Eclipse Plug-in2009-05-20T15:37:10Z2009-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>