<?xml version="1.0"  ?>
<rss version="2.0">
  <channel>
    <title>Acceleo Forum</title>
    <link>http://www.acceleo.org/forum/index.php</link>
    <description><![CDATA[]]></description>
    <language>en</language>
    <pubDate>Thu, 11 Mar 2010 18:49:37 +0100</pubDate>
    <lastBuildDate>Thu, 11 Mar 2010 18:49:37 +0100</lastBuildDate>
    <category>Acceleo Forum</category>
    <generator>Phorum 5.1.9-RC3</generator>
    <ttl>600</ttl>
    <item>
      <title>[Help for modules] Re: UML scripts</title>
      <link>http://www.acceleo.org/forum/read.php?8,3431,3441#msg-3441</link>
      <author>nasgun</author>
      <description><![CDATA[OK I got it working using this:


 

 


The problem was the eAllContents(&quot;uml.Class&quot;) I was typing eAllContent. And also, using uml.Model as the type I didn´t get it working, only when I switched to uml.Package it worked out.

Thank you for your help, but I have more questions:

How do I know when and how to use methods like eAllContents()? Where is the documentation of them? 

Thank you again.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3431,3441#msg-3441</guid>
      <pubDate>Thu, 11 Mar 2010 18:49:37 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: Calling Java Code from a template</title>
      <link>http://www.acceleo.org/forum/read.php?8,3432,3440#msg-3440</link>
      <author>nasgun</author>
      <description><![CDATA[Once again I have discovered that it is not necessary to import the ENode, it is enough if the first parameter is one of the specified in the userguide:

integer (int), real (double), boolean, character
strings (String), list (ENodeList) or object (EObject)

But, por example in this script

 
 

and with hasName like this:

public boolean hasName(int i){ 
return true; 
}

The hasName service is using as first parameter the object of the script itself, which is uml.Class, but he is trying to use it as an integer, how do I do to use it as a uml class?

Thank you again.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3432,3440#msg-3440</guid>
      <pubDate>Thu, 11 Mar 2010 18:36:07 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: Calling Java Code from a template</title>
      <link>http://www.acceleo.org/forum/read.php?8,3432,3439#msg-3439</link>
      <author>nasgun</author>
      <description><![CDATA[Ok I am going to answer myself and ask a few questions:

First you have to put the Java source code in: project-&gt;src. In my case it is project-&gt;src-&gt;servicios and there I have put:

package servicios;
import fr.obeo.acceleo.gen.template.eval.*;

public class Service {
	public boolean hasName(ENode el){
		return true;
	}
}
	
Then in the template:


  

And it worked fine, I mean it returned true.

But I have some questions:



Why I have to import fr.obeo.acceleo.gen.template.eval.*; in the Service.java? And why do I have to use the ENode? How do I do to use other things like in the user guide example &quot;Element&quot;?

Thank you very much.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3432,3439#msg-3439</guid>
      <pubDate>Thu, 11 Mar 2010 18:20:58 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: Calling Java Code from a template</title>
      <link>http://www.acceleo.org/forum/read.php?8,3432,3438#msg-3438</link>
      <author>nasgun</author>
      <description><![CDATA[Hi again, I have read the section 5.5.5 and I think I more or less understand it but I can't put it into practice.

I want to put in practice a simple example. I have this class in Java:

package servicios;

public class Service {
	public void Boolean isTrue(umlClass clas){
		return true;
	}
}

And I want to use it in a script like:







It has a name


What am I doing wrong? I think I am not doing well the import of the class, what do I have to do? In the doc it says I have to create a jar but I dont know what does it have to contain and where do I have to put it to make it work.

Thank you very much.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3432,3438#msg-3438</guid>
      <pubDate>Thu, 11 Mar 2010 17:41:44 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: Calling Java Code from a template</title>
      <link>http://www.acceleo.org/forum/read.php?8,3432,3437#msg-3437</link>
      <author>nasgun</author>
      <description><![CDATA[Thank you, I'm going to try it!]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3432,3437#msg-3437</guid>
      <pubDate>Thu, 11 Mar 2010 17:22:40 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: UML scripts</title>
      <link>http://www.acceleo.org/forum/read.php?8,3431,3436#msg-3436</link>
      <author>nasgun</author>
      <description><![CDATA[Thank you very much for your help!

I tried it before but I dont know why it doesnt work, the script I used is yours like this:



 
 

 
 abstract class  extends   { 

I don't know if the problem is the metamodel or how I am using it so I will describe how I use it.

First I have created a simplest UML model which has package and inside the package it has 5 UML Classes with associations between them and an isolated UML Interface using RSA.

Then I exported it in a .uml file. Then I got it into my Eclipse Project and opened it with Acceleo Reflective Editor and then I clicked on the package item in the model and I usede Acceleo-&gt;select template. 

But nothing happens, what am I doing wrong? 

Thank you very much!]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3431,3436#msg-3436</guid>
      <pubDate>Thu, 11 Mar 2010 17:20:15 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: Calling Java Code from a template</title>
      <link>http://www.acceleo.org/forum/read.php?8,3432,3435#msg-3435</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi,

  Yes you can use java services see the documentation http://www.acceleo.org/pages/introduction section 5.5.5. To get started you also can have a look to tutorials.

regards,
Yvan.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3432,3435#msg-3435</guid>
      <pubDate>Thu, 11 Mar 2010 16:52:40 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: UML scripts</title>
      <link>http://www.acceleo.org/forum/read.php?8,3431,3434#msg-3434</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi Daniel,

  You should change the type of you script to the type of the root element of your UML model. The root element type for UML is Model so you can write something like :






 abstract class  extends   {


regards,
Yvan.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3431,3434#msg-3434</guid>
      <pubDate>Thu, 11 Mar 2010 16:47:23 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: UML scripts</title>
      <link>http://www.acceleo.org/forum/read.php?8,3431,3433#msg-3433</link>
      <author>nasgun</author>
      <description><![CDATA[Hi, I have been working on it and I got something:






]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3431,3433#msg-3433</guid>
      <pubDate>Thu, 11 Mar 2010 16:43:36 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Calling Java Code from a template</title>
      <link>http://www.acceleo.org/forum/read.php?8,3432,3432#msg-3432</link>
      <author>nasgun</author>
      <description><![CDATA[Hi all!

I have a doubt involving the use of templates and Java code. Is there any way I could call java methods or code from a template? I mean, if I wanted to create a template which created a html document from a UML model, and inside the template I want to perform some calculations using some Java code I wrote before, how could I do it?

Thank you very much.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3432,3432#msg-3432</guid>
      <pubDate>Thu, 11 Mar 2010 16:06:45 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] UML scripts</title>
      <link>http://www.acceleo.org/forum/read.php?8,3431,3431#msg-3431</link>
      <author>nasgun</author>
      <description><![CDATA[Hi all!

My name is Daniel.

I am new in this community. I'm a student working on a project related to Software Modeling and M2T generation. 

I'm beginning to use Acceleo, it's the first tool of this type I have ever used and I'm a bit lost. Here is my problem:

In order to learn how to use Acceleo for the project I have been told to do the following: take the whole UML2 model from the Eclipse plugins:

org.eclipse.uml2.uml.source_3.0.1.v200908281330

from the folder &quot;plugins&quot; of Eclipse installation and take the UML.merged.uml, that is the plain uml model of UML2.

Then I have to write a simple template that takes the UML.merged.uml model and creates a html file with the names of all the classes in the model.

The only thing I could do was:




 abstract class  extends   {

This script prints the name and visibility etc... of every class when I apply the template to a uml class in the uml model opened with Acceleo Reflective Editor, but I haven't been able to make the template in a way that, when applied to the model itself creates only one document with the names of all the classes in the document.

Could you help me? 

Thank you very much.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3431,3431#msg-3431</guid>
      <pubDate>Thu, 11 Mar 2010 16:04:18 +0100</pubDate>
    </item>
    <item>
      <title>[Ferme de modules] Re: Creation de package</title>
      <link>http://www.acceleo.org/forum/read.php?13,3416,3430#msg-3430</link>
      <author>ylussaud</author>
      <description><![CDATA[Bien le xmi est un modele EMF donc avec le bon metamodele il est possible de l'utiliser dans Acceleo.]]></description>
      <category>Ferme de modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?13,3416,3430#msg-3430</guid>
      <pubDate>Thu, 11 Mar 2010 12:47:18 +0100</pubDate>
    </item>
    <item>
      <title>[Ferme de modules] Re: GMF !!</title>
      <link>http://www.acceleo.org/forum/read.php?13,3416,3429#msg-3429</link>
      <author>Chafik</author>
      <description><![CDATA[Bien effectivement la création d'un modeleur sous GMF se repose sur EMF.
Ce modeleur sous GMF va me servir à créer des modèles, par contre ces derniers ne sont pas au format .ecore, mais au format XMI, je sais que c'est compliqué mais le but est de ne pas utiliser un modeleur UML, mais plutôt un modeleur personnalisé,
j'ai réussi à en créer un pour le moment, le résultat de ce modèle est un fichier XMI :
---------------------------


  
  
  
  
  
  

---------------------------
C'est ce code XMI que je veux montrer dans Acceleo...
Je vous montre une image de ce modeleur personnalisé ( exemple ) vers ce lien :
http://img33.imageshack.us/img33/2549/gmf.gif
PS:
Ce n'est pas le .ecore nécessaire à la création du modeleur que je veux utiliser pour la génération...
Mille merci(s) :)]]></description>
      <category>Ferme de modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?13,3416,3429#msg-3429</guid>
      <pubDate>Thu, 11 Mar 2010 12:04:46 +0100</pubDate>
    </item>
    <item>
      <title>[Ferme de modules] Re: Creation de package</title>
      <link>http://www.acceleo.org/forum/read.php?13,3416,3428#msg-3428</link>
      <author>ylussaud</author>
      <description><![CDATA[Bonjour,

  Acceleo repose sur EMF pour charger les modeles donc si EMF peut le charger Acceleo peut le charger. D'autre part GMF repose aussi sur EMF. Donc cela devrait bien se passer. Vous devez avoir un metamodel en .ecore (http:///jfb/examples/gmf/filesystem.ecore) dans votre processus de creation du modeleur. Il faut utiliser ce metamodele pour charger le XMI que vous montrez dans Accleeo.

cordialement,
Yvan.]]></description>
      <category>Ferme de modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?13,3416,3428#msg-3428</guid>
      <pubDate>Thu, 11 Mar 2010 11:03:09 +0100</pubDate>
    </item>
    <item>
      <title>[Ferme de modules] GMF !!</title>
      <link>http://www.acceleo.org/forum/read.php?13,3416,3427#msg-3427</link>
      <author>Chafik</author>
      <description><![CDATA[Bonjour,
- J'utilise EMF pour crèer un modeleur sous GMF qui me permettera de générer le fichier XMI...et du coup je pourrais passer à la génération du code par Acceleo !!
- Pour le moment je suis entrain de créer mon modeleur sous GMF mais je ne sais pas si il est vraiment possible de générer le code à partir de l'XMI créé par GMF.
Voici un aperçu d'un fichier XMI généré par GMF :
-------------------------------------------------------------------------


  
    
    
    
    
  
  
    
      
      
    
---------------------------------------------------------------------------
Je vous remercie Acceleors !]]></description>
      <category>Ferme de modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?13,3416,3427#msg-3427</guid>
      <pubDate>Thu, 11 Mar 2010 10:28:48 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: first questions (call metamodel function)</title>
      <link>http://www.acceleo.org/forum/read.php?8,3417,3426#msg-3426</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi,

  Yes, you can use a service that will call the EOperation to bypass this limitation.
  For the  you should check if the object in the screen reference is a &quot;cinematic.Interface&quot; or a sub type of &quot;cinematic.Interface&quot;. Accleeo resolve calls according to there names and the type of the EObject they are applied on.

regards,
Yvan.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3417,3426#msg-3426</guid>
      <pubDate>Wed, 10 Mar 2010 09:42:32 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: Started Ecore to C++ code generator</title>
      <link>http://www.acceleo.org/forum/read.php?8,3421,3425#msg-3425</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi,

  I'am glade you share your project and I hope you will find contributors in the Acceleo community. You are also welcome to ask for help on this forum, I will be glade to help you.

best regards,
Yvan.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3421,3425#msg-3425</guid>
      <pubDate>Wed, 10 Mar 2010 09:33:05 +0100</pubDate>
    </item>
    <item>
      <title>[Modules Repository] Re: how to determine an OpaqueExpression and it's body</title>
      <link>http://www.acceleo.org/forum/read.php?14,3415,3424#msg-3424</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi,

  Can you open the model with the Acceleo reflective editor and access the OpaqueExpression and the TimeInterval ?

  Do you have any error in the console or error log while generating or opening the model ?

regardes,
Yvan.]]></description>
      <category>Modules Repository</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?14,3415,3424#msg-3424</guid>
      <pubDate>Wed, 10 Mar 2010 09:20:04 +0100</pubDate>
    </item>
    <item>
      <title>[Modules Repository] Re: how to determine an OpaqueExpression and it's body</title>
      <link>http://www.acceleo.org/forum/read.php?14,3415,3423#msg-3423</link>
      <author>ruuddb</author>
      <description><![CDATA[Hi,

The first tip results in:
Unresolved call &quot;default&quot;	stmdefault.mt	/gentest1/src

The second tip works with the if, but the problem to access the
OpaqueExpression or TimeInterval remains.

Regards,

Ruud]]></description>
      <category>Modules Repository</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?14,3415,3423#msg-3423</guid>
      <pubDate>Wed, 10 Mar 2010 08:34:25 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: first questions (call metamodel function)</title>
      <link>http://www.acceleo.org/forum/read.php?8,3417,3422#msg-3422</link>
      <author>lados</author>
      <description><![CDATA[OK, I see. I think these situations can be solved by services, isn't it?
Do you know, why the &quot;&quot; script cannot be called in a for loop ?
Thx: lados.


Now I try 2 other operations without params returning EObject and EList, and these are works. In the ScreenImpl.java

public EObject myGetEObject() {
	return this;
}
public EList myGetObjects() {
	EList result = new BasicEList();
	result.add(this);
	return result;
}

In the mt file:

   
   
      
  ]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3417,3422#msg-3422</guid>
      <pubDate>Tue, 09 Mar 2010 16:09:48 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Started Ecore to C++ code generator</title>
      <link>http://www.acceleo.org/forum/read.php?8,3421,3421#msg-3421</link>
      <author>tgalluzzo</author>
      <description><![CDATA[Hello,

I run an open source robotics project called OpenJAUS:

http://www.openjaus.com/

We recently started using Acceleo to generate code for our model driven software. 

Our users require C++ code because of our need for high performance and direct control of hardware. As such we have started writing an ecore2cpp Acceleo module. You can find the code at:

http://code.google.com/p/openjaus/

In our mercurial repository called: &quot;design&quot;

https://design.openjaus.googlecode.com/hg/

Any help is welcome!

Thanks,
Tom]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3421,3421#msg-3421</guid>
      <pubDate>Tue, 09 Mar 2010 15:44:20 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: first questions (call metamodel function)</title>
      <link>http://www.acceleo.org/forum/read.php?8,3417,3420#msg-3420</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi,

  EOperation with parameters are not supported in Acceleo 2.x. It's for compatibility and optimizing reasons.

regards,
Yvan.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3417,3420#msg-3420</guid>
      <pubDate>Tue, 09 Mar 2010 13:53:44 +0100</pubDate>
    </item>
    <item>
      <title>[Modules Repository] Re: how to determine an OpaqueExpression and it's body</title>
      <link>http://www.acceleo.org/forum/read.php?14,3415,3419#msg-3419</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi,

  Did you try :


 
 



   



 


  OpaqueExpression


  TimeInterval



  You can also try :

   ....

regards,
Yvan.]]></description>
      <category>Modules Repository</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?14,3415,3419#msg-3419</guid>
      <pubDate>Tue, 09 Mar 2010 13:50:51 +0100</pubDate>
    </item>
    <item>
      <title>[Ferme de modules] Re: Creation de package</title>
      <link>http://www.acceleo.org/forum/read.php?13,3416,3418#msg-3418</link>
      <author>ylussaud</author>
      <description><![CDATA[Bonjour,

1-  Je sais pas trop ce que tu entends pas commande pour creer des packages... Mais en gros pour la generation il faut juste generer dans un sous repertoire par exemple avec la balise file-&quot;pkg1/pgk2/Class1.java&quot;. Si c'est pour la disposition des templates de generation dans ton projet il faut creer un nouveau package/repertoire comme pour un projet Java.

2- si ce point je peux pas trop te conseiller si ce n'est qu'il y a un exemple de module pour J2EE sur le svn Acceleo.

3- bien nous aussi :)

cordialement,
Yvan.]]></description>
      <category>Ferme de modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?13,3416,3418#msg-3418</guid>
      <pubDate>Tue, 09 Mar 2010 13:36:15 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] first questions (call metamodel function)</title>
      <link>http://www.acceleo.org/forum/read.php?8,3417,3417#msg-3417</link>
      <author>lados</author>
      <description><![CDATA[Hello,
I am new in accelero. I created the cinematic example based on your documentation. It worked well. Then I cretated 2 new functions in the Screen and I implement these on the ScreenImpl.

public String operation1() {
	// Ensure that you remove @generated or mark it @generated NOT
	return &quot;The operation1 was call&quot;;
}

public EObject myGetEObject(EObject param1) {
	// Ensure that you remove @generated or mark it @generated NOT
	return param1;
}

then I create a simple sample template (and chain):






 

   
   
   
   



something


My questions are:
The sample2 script is not seen from the &quot;for loop&quot;?
If the operation1() and self().operation1() are work, why the myGetObject call does not work?

Thanx for answers: lados.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3417,3417#msg-3417</guid>
      <pubDate>Mon, 08 Mar 2010 19:47:12 +0100</pubDate>
    </item>
    <item>
      <title>[Ferme de modules] Creation de package</title>
      <link>http://www.acceleo.org/forum/read.php?13,3416,3416#msg-3416</link>
      <author>Chafik</author>
      <description><![CDATA[Bonjour Acceleors,
1- J'aimerai savoir s'il existe une commande depuis le script .mt permettant de crèer les packages ?
2- Je commence un projet J2EE (Struts 2.1.8 + Hibernate Annotation + Spring + Maven + JUnit + JSP), ça ne sera pas facile de tout générer à la fois, j'aurai bien aimé s'il vous plait que vous me donniez des conseils avant que j'y procède.
3- Je vous remèrcie]]></description>
      <category>Ferme de modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?13,3416,3416#msg-3416</guid>
      <pubDate>Mon, 08 Mar 2010 15:39:04 +0100</pubDate>
    </item>
    <item>
      <title>[Modules Repository] how to determine an OpaqueExpression and it's body</title>
      <link>http://www.acceleo.org/forum/read.php?14,3415,3415#msg-3415</link>
      <author>ruuddb</author>
      <description><![CDATA[Hi,

the XMi file I have contains the following:

      
        
          
          
          
          
          
          
            
              
            
          
          
            
              
                k=0;
              
            
          
        
      

I can &quot;walk down&quot; until the  part using:

 
 








However, I'm not able to determine if the specification is of type &quot;uml:OpaqueExpression&quot; or &quot;uml:TimeInterval&quot;.

How do to this?


Best regards,

Ruud]]></description>
      <category>Modules Repository</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?14,3415,3415#msg-3415</guid>
      <pubDate>Mon, 08 Mar 2010 15:33:00 +0100</pubDate>
    </item>
    <item>
      <title>[Aide à la création de modules] Re: script acceleo</title>
      <link>http://www.acceleo.org/forum/read.php?7,3404,3414#msg-3414</link>
      <author>manel</author>
      <description><![CDATA[merci pour votre réponse
j'ai lu les tutoriels fournis avec acceleo et j'ai compris comment y procéder.
J'ai un projet de fin d'étude qui est volumineux et totalement basé sur acceleo et j'ai pas pu connaitre comment commencer au début.]]></description>
      <category>Aide à la création de modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?7,3404,3414#msg-3414</guid>
      <pubDate>Mon, 08 Mar 2010 15:03:06 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: How can we call AcceleoGenerate inside of another Plug-in?</title>
      <link>http://www.acceleo.org/forum/read.php?8,3038,3413#msg-3413</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi,

  You may have a look at http://www.acceleo.org/forum/read.php?9,2803 You may also have a llok at the EMF URI.

regards,
Yvan.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3038,3413#msg-3413</guid>
      <pubDate>Mon, 08 Mar 2010 10:51:56 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: marte uml</title>
      <link>http://www.acceleo.org/forum/read.php?8,3407,3412#msg-3412</link>
      <author>lgoubet</author>
      <description><![CDATA[Manel,

Please make use of the &quot;search&quot; function of this forum : a simple search on &quot;tagged&quot; returns a fair number of results, with [url=http://www.acceleo.org/forum/read.php?8,1019,1019#msg-1019]this one[/url] probably being your answer.

Laurent]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,3407,3412#msg-3412</guid>
      <pubDate>Mon, 08 Mar 2010 10:44:43 +0100</pubDate>
    </item>
  </channel>
</rss>
