In an Xtext grammar I can include an Xbase code block using the XExpression/XBlockExpression types. How would I go to do the same with a Java code block? The included java should later be included in the Java generated from the DSL constructs.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
It is not possible to directly include Java code blocks (unless you are prepared to write an entire Java grammar and corresponding tooling support, e.g. variable resolution or code generation). However, Xbase code blocks can be translated into Java code blocks using built-in Xtext services in the model inferrer or using the XbaseCompiler. It is also possible to simply interpret it with the XbaseInterpreter class. Finally, if you really need the Java code blocks, you could write them in .java files, and refer to them using JvmIdentifiableElements. |
|||||||
|