Hi,
This question is in continuation of my earlier question "How to support multi-page GUI editor"?
So now my multi-page editor is up and running, and I have added two pages to it.
I need to add a third page, which will be a console. I am not sure how exactly do I do this?
Right now I have created a separate plug-in, and I am able to run the console separately.
So somehow I need a way to integrate them both (and I should be able to access the other two form pages and the console in a single session). So probably I need to have a single SessionFactory class to instantiate them both.
To give some further insight,
This console class extends the SessionConsole provided by fanfare (i.e. com.fnfr.open.automation.tool.ui.console.SessionConsole).
The editor class implements the IToolView (provided by fanfare i.e. com.fnfr.open.automation.interfaces.tool.IToolView) and extends the FormEditor (org.eclipse.ui.forms.editor.FormEditor)
In case you need to look at our code to understand the question better::
I am adding my console plugin here (which works fine as a separate plugin).
To get a feeling of the editor class, use the code plug-in sample forwarded by anadgoud in the last question (i.e. "How to support multi-page GUI editor").
Thanks for your time.
Anil