Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [wtp-dev] JSDT in custom Eclipse RCP application



On Tue, Mar 20, 2018 at 3:54 PM, André Peixoto <andre.mendes.peixoto@xxxxxxxxx> wrote:
But I would like to have a starting point, as I am new in Eclipse RCP development.
I want to start by opening a _javascript_ file editor programmatically and I am looking into the API Reference but I am not sure how can I achieve this...
Could you give me some guidance?
I already added the dependencies  org.eclipse.wst.jsdt.core and org.eclipse.wst.jsdt.ui in my plugin.

This is something too long to be explained in emails. I suggest you go through existing books or tutorials to first get you RCP (the .product) properly including the bundles you need and see them working, then the IDE.openEditor(...) or IViewSite.open(...) API from Eclipse Platform API should provide what you want.

Back to the top