RE: programatically open expediter sideshelf Nick j Mann 13.Sep.11 05:58 AM a Web browser Application development 6.2.2All platforms
I have managed to get this far...
ShelfPage[] pages = ShelfPage.getInstances(getSite().getWorkbenchWindow());
for (ShelfPage shelfPage : pages) {
if(shelfPage.getId().equals(ShelfPage.RIGHT)){
shelfPage.showView("my.sideshelf.id");
}
}
But I get a warning exception from eclipse about recursive attempt of view to create itself?