Acceleo is a code generator transforming models into code (MDA approach). See "about the Acceleo tag" for initial help.
0
votes
1answer
15 views
How do I get abstract methods from my superclass in the mtl language
I'm using Acceleo-MTL to generate Java classes. How do I get all my abstract methods from my abstract superclass?
To get simple operations and interfaces, I use this:
[comment]Operators[/comment]
...
0
votes
1answer
18 views
An internal error occurred during: “Processing Acceleo changes since last activation”
I installed Acceleo 3.3 on Eclipse Indigo (from the update site) and when I launch Eclipse I get the following message:
An internal error occurred during: "Processing Acceleo changes since last ...
1
vote
1answer
26 views
Acceleo maven generation multi artifact/project
I am trying to construct a maven acceleo generator.
The generator consists of multiple acceleo projects (artifacts in maven), with inter-dependencies.
I am running into a problem with the ...
0
votes
1answer
25 views
Acceleo stand alone - first parameter is proxy
It may seem like I am asking a question already asked before, but the solutions indicated in the other forum posts don't work for me.
I am trying to run an Acceleo project in a standalone.
public ...
0
votes
2answers
30 views
domain model in EMF - can I produce POJOs using Acceleo?
I hae a domain model that is created using ecore emf.
And I would like to generate POJOs. I would like to be able customize the POJOs, so I am looking at using Acceleo.
However, I can only see ...
0
votes
1answer
48 views
Intgrating acceleo with jboss errai and gwt
I have to create a project in jboss errai with GWT but I want to generate must of my model code using acceleo using eclipse modeling framework .ecore model. I have done this things.
created maven ...
0
votes
0answers
32 views
EMF topological sort
I need to make topological sort on EMF model objects (actually in Acceleo). Is there implemented algorithm form this?
I haven't found any information except link to:
Topological Sort
but in MoDisco I ...
0
votes
1answer
66 views
Having problems while trying to execute an Acceleo module in standalone mode
I have successfully created an Acceleo module for M2T purposes and am trying to execute it from a Java program.
This is what I tried :
String[] str = ...
1
vote
1answer
70 views
Activity node get executed in a template that accepts only Class type
I have an uml diagram made with Topcased 5.2. The uml contains Class diagram and Activity Diagram.
I wrote a template that accepts as parameter Class type in order to generate java classes.
The java ...
0
votes
0answers
103 views
running acceleo using Maven
I am trying to execute my acceleo project using maven. I have included all the dependencies in the pom file. It compile succesfully (with command package). Here is my pom file:
<plugin>
...
0
votes
1answer
25 views
Accessing public elements from other modules
I'm new to Acceleo, but I understand that modules have both private and public elements which can be accessed by other modules (via extending / importing those modules).
In my case I have
[module ...
1
vote
0answers
91 views
java.lang.NullPointerException executing accelo with maven
I am trying to execute the acceleo project using maven.
here is the pom configuration:
pom.xml
<plugin>
<groupId>org.codehaus.mojo</groupId>
...
0
votes
0answers
180 views
Embed an Ecore metamodel inside an Acceleo Eclipse plugin
I'm working on an Eclipse plugin that generates code from a model description file (XMI format). I use Acceleo to create it.
I create the UI Launcher project from my working Acceleo project.
Then I ...
0
votes
0answers
92 views
Acceleo giving me a NullPointerException when running a built Ecore-to-Java-Generator
I'm quite new to Acceleo and I'm trying to build a complete native Ecore to Java code generator without all the EObject resources.
For trying out Acceleo I used this template-example: ...
-1
votes
1answer
35 views
Acceleo creating a UI launcher not found
I use acceleo 3 with eclipse modeling tools 3.7. I follow this link http://wiki.eclipse.org/Acceleo/Getting_Started in the final step " Creating a UI launcher " - I don't have Acceleo Model to text .
...
1
vote
1answer
361 views
First Generator Model Tutorial for Acceleo
I am new to Eclipse and Acceleo, and I have been trying to complete the First Generator Model Tutorial. I am using Juno 4.2 and Acceleo 3.3.
Here is what I have done so far:
I created an Accelo ...
2
votes
1answer
346 views
meshing ACCELEO with Xtext
I am in the middle of an ACCELEO Transformation aimed at producing code (i.e. Java) from an input UML model.
Some elements of this UML model (i.e. Activities Opaque actions) contain some text which ...
1
vote
1answer
184 views
Increment a variable inside a FOR loop
I'm trying to count how many times a condition is true inside a FOR loop.
I declared an additional variable for the template (FOUND : Integer), and I'm trying to increment it every time the [IF] ...
0
votes
0answers
160 views
Acceleo invoking Java Service wrapping an OCLHelper
I need to get the OCL model of conditions contained in UML edges from an ACCELEO script navigating the main UML model. To this end I have defined the following Java class:
public class GetOCLModel {
...
0
votes
1answer
87 views
On the fly XText model deserialization
I have a UML model having OpaqueActions containing text conform to an XText Grammar/MetaModel. I am turning the UML model into text by means of an ACCELEO transformation. I'd like to invoke from the ...
0
votes
2answers
284 views
Load 2 different input models in Acceleo
I'd like to load 2 different input models (a .bpel and a .wsdl) in my main template of Acceleo.
I loaded the ecore metamodels for both bpel and wsdl and I'd like to be able to use something like ...
0
votes
1answer
89 views
running ACCELEO from ACCELEO on the DSL contained in model elements
I have a UML activity with OpaqueActions containing a DSL. The DSL grammar is expressed by means of XText thus there is an EMF ECORE model and editor for it. I have an ACCELEO M2T transformation ...
0
votes
2answers
286 views
Acceleo first steps to transform a BPEL file to Java classes
I'm trying a transformation with Acceleo from BPEL to Java.
I did 2 or 3 tutorials and all involved the use of UML input models, though I think I understood how I should deal with a bpel model and its ...
0
votes
0answers
340 views
InvocationTargetException: Missing parameters
I am trying to execute a project using maven.
I have created my pom.xml file. I am calling a main class to execute with arguments. The pom looks like below.
...
0
votes
1answer
194 views
ACCELEO: creating file in path depending on the model structure
In an Acceleo Model to Text transformation I would like to create a file for a UML class coherent with the packages of containing the class (the class namespace in the UML model).
The problem I am ...
0
votes
2answers
157 views
Executing acceleo project with maven
In my project i am executing the acceleo project from eclipse by using the plugin. I have generate.mtl and generate.java. The execution is done by using the run as configuration and choosing the ...
0
votes
1answer
143 views
How can I protect my methods bodies (not the attached JavaDoc and Signature) using Acceleo code-generator
I use Acceleo in order to generate code with a model I have made. I managed to protect my methods in order to protect them usinig "@generated NOT" in case I need to regenerate my code with Acceleo. ...
0
votes
2answers
229 views
How to do Acceleo code generation on in-memory model?
I am trying to generate some code using Acceleo. I am constructing my model entity in-memory and I want to generate the code for it.
Now, when Acceleo tries to match my model object to the argument ...
0
votes
0answers
77 views
acceleo generation issue
I am very new to acceleo. When I was launching the generation in standalone, I simply used its main or instantiated with the two needed parameters (target folder and input model) and used its ...
0
votes
1answer
102 views
Installing newest software (guava/acceleo)
I'm starting to learn programming through Eclipse, and I was just in the process of figuring out how to add intents, which require adding Guava to my project as well as installing the newest version ...
0
votes
2answers
183 views
Undefined test for an enumeration with Acceleo
First of all : thank for the support !
My problem : I want to simply test if an "enumerated" attribute is defined or not.
Let's say I have :
an EnumValues enumeration with 2 values VALEUR1 and ...
-1
votes
1answer
146 views
Acceleo service
I have to wrap a java function inside an Acceleo File that returns my own complex type ...
[query public methodeTest(arg0 : Package, arg1 : Class, arg2 : Property) : MyOwnComplexeType
= ...
0
votes
1answer
201 views
Invoking acceleo template from java app
Hi all i'm very new to acceleo
In my project, i have a java driver class which calls different acceleo templates. Some of the templates have parameters without any EObject type. I am calling calling ...
0
votes
0answers
254 views
Exploring a UML Sequence diagram via ACCELEO in the Eclipse Modeling Framework
I am exploring a UML (or SysML) model, defined via TopCased, through an ACCELEO script. The problem is that for sequence diagrams (Interaction) I can not get how to reproduce the modelled trace (a ...
0
votes
1answer
386 views
acceleo 3.2 fails (due to no model elements that matches at least the type of the first parameter of one of your main templates)
i have problems with QuickStart tutorial of Acceleo 3.2.
i can't seem to generate any code (see topic)
[module generateStuff('http://www.eclipse.org/emf/2002/Ecore', ...
1
vote
1answer
331 views
reference ecore model path of a different ecore model
Here is my problem.
We currently have several ecore models for our applications. One of the ecore models (mainModel.ecore) has stuff that is common in all the rest of the models. So, what i want to ...
0
votes
1answer
181 views
How to run Acceleo from generated java launcher class
Can anyone tell me how to run Acceleo from generated java launcher class ? That is, when I add [comment @main/] in my .mtl class, a new java class is generated. And now, Instead of using .mtl file to ...
0
votes
2answers
330 views
Generate UML from a conceptual data model
I have an conceptual data model (Relational model) created using powerAMC for my database but i wanted to generate DAO from it using acceleo and for that i need it in UML , is there a way to generate ...
1
vote
2answers
354 views
acceleo compiler, 5:The metamodel couldn't be resolved
I am attempting to create a standalone ant build file for android. We are using acceleo to generate code.
Here are the steps i am taking within the build.xml.
compile the auto generator
Generate ...
1
vote
1answer
250 views
UI Acceleo Launcher Project doesn't work
I've followed this simple tutorial wiki.eclipse.org/Acceleo/Getting_Started my aim is creating an UI launcher...
However when I finish and a click on 'Acceleo Model to Text'>'generate' the folder ...
0
votes
1answer
176 views
acceleoCompiler not showing output in console output with ant
I am using acceleoCompiler inside an ant script and when i run the ant script everything shows an output except acceleoCompiler.
For instance, [javac] and [mkdir] shows up. But nothing relating to ...
1
vote
1answer
165 views
Ant Builder Build Failed eINSTANCE
Trying to use AcceleoCompiler with an Ant Builder. When i build with ant i get the following error:
compile:
[acceleoCompiler] eINSTANCE
BUILD FAILED
...
0
votes
2answers
243 views
taskdef class org.eclipse.acceleo.parser.compiler.AcceleoCompiler cannot be found using the classloader
I have this line of code in an ant bulider:
<taskdef id="acceleoCompiler" name="acceleoCompiler" classname="org.eclipse.acceleo.parser.compiler.AcceleoCompiler" ...
1
vote
2answers
319 views
Acceleo standalone generation
I also need to generate outside eclipse and i didn't figured out how to do it.
I've read this thread but I have another problem to overcome first : I'm unable to start the main !
I tried different ...
1
vote
1answer
256 views
Using Acceleo 3 with Ant
I'm looking for information on how to perform Acceleo source generation with an Ant script. I've done some Googleing, but I haven't really found any straightforward way to do that. I'm looking first ...
1
vote
1answer
171 views
Annotating templates (ModuleElements) in Acceleo
I was wondering if I can easily annotate Acceleo templates and then get these annotations when working with TraceabilityModel.
Acceleo is now using an annotation to determine entry points for ...
0
votes
4answers
660 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
1answer
64 views
Unresolved call error
I am trying to generate Hibernate with Acceleo 2.6, I have downloaded Hibernate init files from http://www.acceleo.org/wiki/index.php/UML_to_JEE_:_First_applications_with_JEE_module but when I launch ...
0
votes
1answer
81 views
Which version of acceleo is been used in screencasts?
Can anyone please tell me which version of acceleo is been used in screencasts of acceleo website? Because currently I am using acceleo 2.7 and I am trying to do the same thing but I don't get the ...
0
votes
1answer
222 views
Acceleo and Hibernate
Does Acceleo generate Hibernate or is it UML2 to Java EE that does that? if Acceleo is doing it, then can someone please guide me to a sample example for it that generates Hibernate.
Also I want to ...