Dear pde_build_dev:
Hi eveny
body.
In my RCP,I want to show two views in the
bottom of my editor.Then i created a IFoldLayout in my perspective,and
added the two views into it.Just like:
IFolderLayout folder = layout.createFolder
("info",IPageLayout.BOTTOM,0.75f,layout.getEditorArea());
folder.addView(FirstView.ID);
folder.addView(SecondView.ID);
I
added a Label in each view and initiated them.But after running the RCP
application,i found that the first view works well but the second view's lable
can't be display.In other words,there is nothing in the view,no lable and no
text.
Did you guys meet this problem? What's
the matter and how can i solve it?
By the
way , i have another problem:
I have a plugin defining a perspective , and
another plugin defining a RCP workbenchAdvisor.And i want to switch to this
perspective in the RCP by adding a action extention into a actionset
extention,which was defined in the RCP workbench plugin.
Then how can i get that?
Best!