I have an Eclipse RCP application in which I'm writing an editor which opens a palette to let user draw flows. Everything is working fine with editor itself.

However I have problem with its default opening location in perspective layout. Although other text based editors (like java, xml editors) opening in the expected places. My new editor is opening in the top position by closing my other views positioned at top alreeady.I want it to be opened in the editor area without closing other views. my FLowEditor is extending org.eclipse.ui.part.EditorPart.

Does anybody know how can i manage to change its opening behaviour and make it similar to java editor?

Thanks.

link|improve this question

55% accept rate
3  
All declared editors are opened in the same workbench part and you don't have to (can't) do anything about it. What you should be asking is: what am I doing wrong that my editor does not behave as an editor in the workbench? – Martti Käärik Dec 23 '11 at 21:29
1  
How do you define the perspective layout? By plugin.xml or IPerspectiveFactory? What does it look like, could you post it? – user714965 Dec 24 '11 at 14:17
I am using IPerspectiveFactory and just now i realized that some procedure i am calling in the init part of editor causes this problem.i changed this local procedure and now everything works as expected.Thanks for responses. – cacert Dec 24 '11 at 23:21
2  
Can you post your own answer and accept it so that people don't look at the question and think it's unsolved? It will also help your accept rate – Francis Upton Dec 29 '11 at 7:21
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.