[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.technology.bpel-designer] Re: Integrating graphical editor into RCP application

The BPEL editor is an editor and not a view. And as such it cannot live anywhere else but in the editor area. There are ways around it ... if you dig in the BPEL editor code there is a section of how we embed text editors in a view (say the XPath editor embedded in the properties section).

In a nutshell, you would have to create the editor first, give it some input, then wrap it in a view. That last part is hard to do in Eclipse but you can read the code for the "workarounds".

-m

napo wrote:
Hi,
I'm developing a standalone RCP application with Eclipse 3.3.
I created all my views and perspective.
Now, I need to integrate a graphical editor in my application. Something
like BPEL plugin. But I don't know how to integrate it.
I was wondering about something like:
    folder.addView("nameOfTheBpelView");

Anyone can help me?

Hi
Marco