Tagged Questions
The xpand tag has no wiki summary.
2
votes
1answer
63 views
Make either a reference or a terminal accessible through the same element name in Xtext/Xpand?
I have an Xtext grammar that describes statemachines, and I have been using references to previously declared events and states to describe transitions:
Event:
'event' name=ID
;
State:
'state' ...
2
votes
1answer
969 views
Samples from Xpand -
Can i get some good tutorials on XPand.. i need to get info on commands like LET. It would better if some one could post some samples on it.
The problem i am facing is like.. i run a "for" loop and ...
1
vote
0answers
28 views
Java code generation with XPAND (nested packages)
I'm working on generating code from an existing model with XPAND. This model contains nested packages as one knows them from Java for example.
As far as I understand there are no loops or anything, ...
1
vote
4answers
125 views
How to configure Xtext mwe.Reader to fill the root element in a slot
I am using Xtext 2.0 with MWE 1 and XPand, but I guess the Problem for MWE 2 and XTend is exactly the same.
My Xtext grammer looks like this (excerpt):
grammer org.test.Test with ...
1
vote
1answer
75 views
Parser error on Xpand: SAXParserFactoryImpl cannot be cast to SAXParserFactory
I am getting this dialog box when i am building my application with Xpand.
"An internal error occurred during: "Analyzing accessible EMF metamodels for project my.generator.project".
...
1
vote
2answers
302 views
Actionscript 3 code beautifier for xpand (MWE2 Workflow)
I
Currently I'm developing a code generator for Java and Actionscript3.
The generator works quiet well, but the Actionscript3 code isn't really nice.
For Java, there is an existing code beautifier ...
1
vote
3answers
2k views
How to programmatically run an Xpand workflow on a model in a second workbench?
I have an Xtext/Xpand (oAW 4.3, Eclipse 3.4) generator plug-in, which I run together with the editor plug-in in a second workbench. There, I'd like to run Xpand workflows programmatically on the model ...
0
votes
3answers
126 views
What is the difference between Acceleo and Xpand?
I have a DSL which is based on a custom metamodel, which in its turn is based on EMF/Ecore. I am trying to figure out which solution to choose, and I cant find any decent comparisons anywhere.
Does ...
0
votes
0answers
90 views
Code genration with GMF & Xpand
I am trying to integrate GMF & Xpand code generation.But i am not getting the way that how to connect GMF Model to Xpand. Basically i want that when i drag & drop component from palette code ...
0
votes
0answers
34 views
html code genration with Xpand
I want to generate code through template.I am following this link
http://eclipse.dzone.com/articles/getting-started-code .I am doing same thing as directed but html file is not getting generated.Is ...
0
votes
0answers
88 views
specify a package name in a XPand workflow file using Eclipse
I am generating code starting from an Ecore model, and using XPand and a workflow defined in a *.mwe2 file.
I can specify the destination dir using
var targetDir = "src-gen/mmiEvents.factory"
but ...