Azad
Azad

Reputation: 407

How to use a Xtext-based language?

I'm new in Eclipse Modeling Project. I need to implement a small DSL using Xtext, so I read the Xtext documentation and try to define my own language. But when I create that I just could use it by running a new instance of Eclipse IDE and I have no idea about using it inside an independent java project or even as a standalone language. So I asked you to share your experience with me.

Thanks in advance

Upvotes: 0

Views: 299

Answers (1)

Tharaka Deshan
Tharaka Deshan

Reputation: 1396

When you are developing the language you can test it by running a new instance of Eclipse IDE.

But you can export your final DSL Plugin as an Eclipse Product. That means you can use it with a standalone RCP application.

This article would be useful to you: Karsten's Blog

Upvotes: 2

Related Questions