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.