<?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, 02 Feb 2012 18:47:44 +0100</pubDate>
    <lastBuildDate>Thu, 02 Feb 2012 18:47:44 +0100</lastBuildDate>
    <category>Acceleo Forum</category>
    <generator>Phorum 5.1.9-RC3</generator>
    <ttl>600</ttl>
    <item>
      <title>[Problems / Bugs] Re: Exception running module</title>
      <link>http://www.acceleo.org/forum/read.php?11,4283,4288#msg-4288</link>
      <author>lads</author>
      <description><![CDATA[Salut Laurent,

Using the Getting Started example I was able to do it as you suggested, thank you very much. I was following the OMG M2T specification and thought it could be done this way.

Henceforth I'll use the Eclipse fora for any issues that may come up.

Regards,

Luís]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4283,4288#msg-4288</guid>
      <pubDate>Thu, 02 Feb 2012 18:47:44 +0100</pubDate>
    </item>
    <item>
      <title>[Nouvelles fonctionnalités] Re: Création d'un fichier excel</title>
      <link>http://www.acceleo.org/forum/read.php?4,4285,4287#msg-4287</link>
      <author>Kellya</author>
      <description><![CDATA[Malheureusement, excel sauvegarde ses fichiers dans un format propriétaire tout moche (Microsoft quoi). 

Par contre il y a une fonctionnalité dans Excel pour exporter des fichiers texte, je vais me servir de ca.

Merci
Kellya]]></description>
      <category>Nouvelles fonctionnalités</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?4,4285,4287#msg-4287</guid>
      <pubDate>Thu, 02 Feb 2012 13:27:24 +0100</pubDate>
    </item>
    <item>
      <title>[Nouvelles fonctionnalités] Re: Création d'un fichier excel</title>
      <link>http://www.acceleo.org/forum/read.php?4,4285,4286#msg-4286</link>
      <author>ylussaud</author>
      <description><![CDATA[Bonjour,


  Acceleo est un generateur de texte qui se repose sur un modele EMF et des templates. Si excel sauve ces fichiers dans un format texte et que vous pouvez ecrire les templates pour le reproduire alors il vous sera possible de produire des documents excel avec Acceleo.

cordialement,
Yvan.]]></description>
      <category>Nouvelles fonctionnalités</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?4,4285,4286#msg-4286</guid>
      <pubDate>Thu, 02 Feb 2012 08:50:14 +0100</pubDate>
    </item>
    <item>
      <title>[Nouvelles fonctionnalités] Création d'un fichier excel</title>
      <link>http://www.acceleo.org/forum/read.php?4,4285,4285#msg-4285</link>
      <author>Kellya</author>
      <description><![CDATA[Bonjour,

Est-il possible de créer un fichier excel grace à Acceleo?]]></description>
      <category>Nouvelles fonctionnalités</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?4,4285,4285#msg-4285</guid>
      <pubDate>Wed, 01 Feb 2012 11:14:02 +0100</pubDate>
    </item>
    <item>
      <title>[Problems / Bugs] Re: Exception running module</title>
      <link>http://www.acceleo.org/forum/read.php?11,4283,4284#msg-4284</link>
      <author>lgoubet</author>
      <description><![CDATA[Luis,

First things first, please use the official [url=http://www.eclipse.org/forums/index.php/f/24/]Eclipse M2T forum[/url] for questions related to Acceleo 3. acceleo.org is the forum for the legacy Acceleo 2 stream.

As for your issue, you cannot directly use the stereotype as the target of a template. You need to create a tempalte on &quot;Class&quot; (or whatever the Stereotype applies to) and check for it through the UML operation. This would give something like :

[template public generate(aClass : Class) ? (aClass.hasStereotype('Table'))
...
[/template]

Laurent Goubet
Obeo]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4283,4284#msg-4284</guid>
      <pubDate>Wed, 01 Feb 2012 10:00:12 +0100</pubDate>
    </item>
    <item>
      <title>[Problems / Bugs] Exception running module</title>
      <link>http://www.acceleo.org/forum/read.php?11,4283,4283#msg-4283</link>
      <author>lads</author>
      <description><![CDATA[Hello everyone, it's me again.

Now I'm beginning to try text generation from modules with profiles applied on. Using Papyrus I created a basic profile with a single stereotype called &quot;Table&quot;. I then applied this stereotype in a model with a single class, called &quot;Car&quot;.

After this I created a very simply module [1], just to verify that the stereotype is being correctly identified. The problem is when I run this module I get a NullPointerException (stack trace below [2]).

One strange thing is that in the editor Eclipse is marking &quot;Table&quot; as an invalid type. I imagine I am missing some configuration needed before processing models using profiles.

If there's anything else I can do to clarify this issue just let me know.

Thank you,

Luís

--------------------------------------------
[1]

[comment encoding = UTF-8 /]
[module generateProf('http://www.eclipse.org/uml2/3.0.0/UML')/]

[template public generateProf(tab : Table)]
	
	[comment @main /]
	[file (tab.name.concat('.test'), false, 'UTF-8')]
	Yes, this class has a profile applied on:
	[tab.name/]
	[/file]
	
[/template]

--------------------------------------------
[2]

java.lang.NullPointerException
	at org.eclipse.acceleo.engine.service.AcceleoService.doGenerate(AcceleoService.java:376)
	at org.eclipse.acceleo.engine.service.AbstractAcceleoGenerator.generate(AbstractAcceleoGenerator.java:141)
	at org.eclipse.acceleo.engine.service.AbstractAcceleoGenerator.doGenerate(AbstractAcceleoGenerator.java:120)
	at org.eclipse.acceleo.module.sample.files.GenerateProf.doGenerate(GenerateProf.java:148)
	at org.eclipse.acceleo.ide.ui.launching.strategy.AcceleoLaunchOperation.run(AcceleoLaunchOperation.java:119)
	at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1975)
	at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1957)
	at org.eclipse.acceleo.ide.ui.launching.strategy.AcceleoPluginLaunchingStrategy.launch(AcceleoPluginLaunchingStrategy.java:225)
	at org.eclipse.acceleo.ide.ui.launching.strategy.AcceleoPluginLaunchingStrategy.launch(AcceleoPluginLaunchingStrategy.java:128)
	at org.eclipse.acceleo.internal.ide.ui.launching.AcceleoLaunchDelegate.launch(AcceleoLaunchDelegate.java:53)
	at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:853)
	at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:702)
	at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:923)
	at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1126)
	at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4283,4283#msg-4283</guid>
      <pubDate>Tue, 31 Jan 2012 22:10:55 +0100</pubDate>
    </item>
    <item>
      <title>[Problems / Bugs] Re: Where's the &quot;Launch&quot; action</title>
      <link>http://www.acceleo.org/forum/read.php?11,4274,4282#msg-4282</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi,

  This is the Acceleo 3.x documentation.

regards,
Yvan.]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4274,4282#msg-4282</guid>
      <pubDate>Mon, 16 Jan 2012 11:28:59 +0100</pubDate>
    </item>
    <item>
      <title>[Problems / Bugs] Re: Where's the &quot;Launch&quot; action</title>
      <link>http://www.acceleo.org/forum/read.php?11,4274,4281#msg-4281</link>
      <author>lads</author>
      <description><![CDATA[Hi again Yvan,

I'm reading the online documentation at the Eclipse Wiki. There is no reference there to versions. If you could point me to the correct documentation for Acceleo 3 I'd appreciate.

Thank you and regards,

Luís]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4274,4281#msg-4281</guid>
      <pubDate>Sun, 15 Jan 2012 17:59:06 +0100</pubDate>
    </item>
    <item>
      <title>[Problems / Bugs] Re: example.uml - where can I find it?</title>
      <link>http://www.acceleo.org/forum/read.php?11,4278,4280#msg-4280</link>
      <author>Stephane Begaudeau</author>
      <description><![CDATA[Hi,

The example.uml is the model accessible in the UML to Java example (File -&gt; New -&gt; Example -&gt; Acceleo -&gt; UML to Java).

Regards,

Stephane Begaudeau, Obeo

--
Twitter: [url=http://twitter.com/#!/sbegaudeau]@sbegaudeau[/url] &amp; [url=http://twitter.com/#!/acceleo]@acceleo[/url]
Google+: [url=https://plus.google.com/u/0/105625286543794908607/]stephane.begaudeau[/url] &amp; [url=https://plus.google.com/u/0/114651471803085159652/]acceleo[/url]
Blog: [url=http://stephanebegaudeau.tumblr.com]http://stephanebegaudeau.tumblr.com[/url]
Acceleo Documentation: [url=http://docs.obeonetwork.com/acceleo]http://docs.obeonetwork.com/acceleo[/url]]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4278,4280#msg-4280</guid>
      <pubDate>Tue, 10 Jan 2012 10:17:36 +0100</pubDate>
    </item>
    <item>
      <title>[Problems / Bugs] Re: Where's the &quot;Launch&quot; action</title>
      <link>http://www.acceleo.org/forum/read.php?11,4274,4279#msg-4279</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi,

  Acceleo 3.x doesn't make use of .chain. Chain files are only used in Acceleo 2.x. Make sure you are looking at the Acceleo 3.x documentation/tutorials.

regards,
Yvan.]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4274,4279#msg-4279</guid>
      <pubDate>Tue, 10 Jan 2012 10:09:45 +0100</pubDate>
    </item>
    <item>
      <title>[Problems / Bugs] example.uml - where can I find it?</title>
      <link>http://www.acceleo.org/forum/read.php?11,4278,4278#msg-4278</link>
      <author>lads</author>
      <description><![CDATA[Dear all,

I'd like to follow the Getting Started tutorial:

http://wiki.eclipse.org/Acceleo/Getting_Started

But it requires a model file with the name example.uml, that I can't find neither in the examples, nor in the Acceleo installation directory.

So the question is where can I get this file.

Thank you,

Luís]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4278,4278#msg-4278</guid>
      <pubDate>Mon, 09 Jan 2012 20:27:47 +0100</pubDate>
    </item>
    <item>
      <title>[Problems / Bugs] Re: Where's the &quot;Launch&quot; action</title>
      <link>http://www.acceleo.org/forum/read.php?11,4274,4277#msg-4277</link>
      <author>lads</author>
      <description><![CDATA[Hi Yvan,

I'm using Acceleo 3.0.3.

Luís]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4274,4277#msg-4277</guid>
      <pubDate>Mon, 09 Jan 2012 20:21:42 +0100</pubDate>
    </item>
    <item>
      <title>[Problems / Bugs] Acceleo user guide Web page is broken</title>
      <link>http://www.acceleo.org/forum/read.php?11,4276,4276#msg-4276</link>
      <author>toub</author>
      <description><![CDATA[Hi guys,

The official user guide Web page is currently broken:

http://help.eclipse.org/helios/topic/org.eclipse.acceleo.doc/doc/html/acceleo_userguide.html]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4276,4276#msg-4276</guid>
      <pubDate>Mon, 09 Jan 2012 17:58:50 +0100</pubDate>
    </item>
    <item>
      <title>[Problems / Bugs] Re: Where's the &quot;Launch&quot; action</title>
      <link>http://www.acceleo.org/forum/read.php?11,4274,4275#msg-4275</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi,

  If you are starting a new project with Acceleo you should considere using Acceleo 3.x and not Acceleo 2.x. you can have a look at the project page : http://www.eclipse.org/acceleo/

regards,
Yvan.]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4274,4275#msg-4275</guid>
      <pubDate>Mon, 09 Jan 2012 09:37:54 +0100</pubDate>
    </item>
    <item>
      <title>[Problems / Bugs] Where's the &quot;Launch&quot; action</title>
      <link>http://www.acceleo.org/forum/read.php?11,4274,4274#msg-4274</link>
      <author>lads</author>
      <description><![CDATA[Hello everyone,

Taking my first steps with Acceleo. I installed the Eclispe plugin and I'm now going through the tutorials. Unfortunatelly the &quot;Lauch&quot; action is not showing up in the context menu when I'm on the Acceleo perspective and hence I can run .chain files. What can be causing this? Is there any other way to run .chain files?

Thank you,

Luís]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4274,4274#msg-4274</guid>
      <pubDate>Sat, 07 Jan 2012 18:10:47 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: accessing attributes defined with a stereotype</title>
      <link>http://www.acceleo.org/forum/read.php?8,4272,4273#msg-4273</link>
      <author>lgoubet</author>
      <description><![CDATA[Vincent,

Please use the official [url=http://www.eclipse.org/forums/index.php/f/24/]Eclipse M2T forum[/url] for questions regarding Acceleo 3.

That being said, this exception coms from you passing &quot;null&quot; as one of the parameters of the [i]getValue[/i] call. You should have something like :

[code]
[getValue(element, stereotype, propertyName)/]
[/code]

Change this to :

[code]
[element/]
[stereotype/]
[propertyName/]
[getValue(element, stereotype, propertyName)/]
[/code]

That should let you know which of the three is null.

Laurent Goubet
Obeo]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,4272,4273#msg-4273</guid>
      <pubDate>Thu, 05 Jan 2012 10:22:18 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] accessing attributes defined with a stereotype</title>
      <link>http://www.acceleo.org/forum/read.php?8,4272,4272#msg-4272</link>
      <author>vincent.hilaire@utbm.fr</author>
      <description><![CDATA[Hello all,


I have defined an UML2 profile, some of the stereotypes add attributes. I'am not able to access these attributes within the template. The getValue operation doesn't seem to work it returns the following exceptions


java.lang.reflect.InvocationTargetException
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.eclipse.acceleo.engine.internal.environment.AcceleoEvaluationEnvironment.callOperationWorkaround287052(AcceleoEvaluationEnvironment.java:235)
	at org.eclipse.acceleo.engine.internal.environment.AcceleoEvaluationEnvironment.callOperation(AcceleoEvaluationEnvironment.java:181)
	at org.eclipse.ocl.ecore.EcoreEvaluationEnvironment.callOperation(EcoreEvaluationEnvironment.java:1)
	at org.eclipse.ocl.EvaluationVisitorImpl.visitOperationCallExp(EvaluationVisitorImpl.java:193)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitOperationCallExp(AcceleoEvaluationVisitor.java:1058)
	at org.eclipse.ocl.ecore.impl.OperationCallExpImpl.accept(OperationCallExpImpl.java:390)
	at org.eclipse.ocl.AbstractEvaluationVisitor.visitExpression(AbstractEvaluationVisitor.java:247)
	at org.eclipse.ocl.EvaluationVisitorDecorator.visitExpression(EvaluationVisitorDecorator.java:156)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1644)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitAcceleoIfBlock(AcceleoEvaluationVisitor.java:547)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1600)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitAcceleoTemplate(AcceleoEvaluationVisitor.java:831)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1594)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitAcceleoTemplateInvocation(AcceleoEvaluationVisitor.java:882)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1621)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitAcceleoFileBlock(AcceleoEvaluationVisitor.java:385)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1614)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitAcceleoIfBlock(AcceleoEvaluationVisitor.java:547)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1600)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitAcceleoTemplate(AcceleoEvaluationVisitor.java:831)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1594)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.ocl.internal.evaluation.QueryImpl.evaluate(QueryImpl.java:152)
	at org.eclipse.ocl.ecore.QueryImpl.evaluate(QueryImpl.java:62)
	at org.eclipse.acceleo.engine.generation.AcceleoEngine.doEvaluate(AcceleoEngine.java:265)
	at org.eclipse.acceleo.engine.generation.AcceleoEngine.evaluate(AcceleoEngine.java:130)
	at org.eclipse.acceleo.engine.service.AcceleoService.doGenerateTemplate(AcceleoService.java:544)
	at org.eclipse.acceleo.engine.service.AcceleoService.doGenerate(AcceleoService.java:389)
	at org.eclipse.acceleo.engine.service.AbstractAcceleoGenerator.generate(AbstractAcceleoGenerator.java:141)
	at org.eclipse.acceleo.engine.service.AbstractAcceleoGenerator.doGenerate(AbstractAcceleoGenerator.java:120)
	at files.GenerateJava.doGenerate(GenerateJava.java:164)
	at files.GenerateJava.main(GenerateJava.java:142)
Caused by: java.lang.IllegalArgumentException: null
	at org.eclipse.uml2.uml.internal.operations.ElementOperations.getValue(ElementOperations.java:525)
	at org.eclipse.uml2.uml.internal.impl.ElementImpl.getValue(ElementImpl.java:296)
	... 42 more
java.lang.reflect.InvocationTargetException
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.eclipse.acceleo.engine.internal.environment.AcceleoEvaluationEnvironment.callOperationWorkaround287052(AcceleoEvaluationEnvironment.java:235)
	at org.eclipse.acceleo.engine.internal.environment.AcceleoEvaluationEnvironment.callOperation(AcceleoEvaluationEnvironment.java:181)
	at org.eclipse.ocl.ecore.EcoreEvaluationEnvironment.callOperation(EcoreEvaluationEnvironment.java:1)
	at org.eclipse.ocl.EvaluationVisitorImpl.visitOperationCallExp(EvaluationVisitorImpl.java:193)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitOperationCallExp(AcceleoEvaluationVisitor.java:1058)
	at org.eclipse.ocl.ecore.impl.OperationCallExpImpl.accept(OperationCallExpImpl.java:390)
	at org.eclipse.ocl.AbstractEvaluationVisitor.visitExpression(AbstractEvaluationVisitor.java:247)
	at org.eclipse.ocl.EvaluationVisitorDecorator.visitExpression(EvaluationVisitorDecorator.java:156)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1644)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitAcceleoIfBlock(AcceleoEvaluationVisitor.java:547)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1600)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitAcceleoTemplate(AcceleoEvaluationVisitor.java:831)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1594)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitAcceleoTemplateInvocation(AcceleoEvaluationVisitor.java:882)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1621)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitAcceleoFileBlock(AcceleoEvaluationVisitor.java:385)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1614)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitAcceleoIfBlock(AcceleoEvaluationVisitor.java:547)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1600)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitAcceleoTemplate(AcceleoEvaluationVisitor.java:831)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.switchExpression(AcceleoEvaluationVisitor.java:1594)
	at org.eclipse.acceleo.engine.internal.evaluation.AcceleoEvaluationVisitor.visitExpression(AcceleoEvaluationVisitor.java:962)
	at org.eclipse.ocl.internal.evaluation.QueryImpl.evaluate(QueryImpl.java:152)
	at org.eclipse.ocl.ecore.QueryImpl.evaluate(QueryImpl.java:62)
	at org.eclipse.acceleo.engine.generation.AcceleoEngine.doEvaluate(AcceleoEngine.java:265)
	at org.eclipse.acceleo.engine.generation.AcceleoEngine.evaluate(AcceleoEngine.java:130)
	at org.eclipse.acceleo.engine.service.AcceleoService.doGenerateTemplate(AcceleoService.java:544)
	at org.eclipse.acceleo.engine.service.AcceleoService.doGenerate(AcceleoService.java:389)
	at org.eclipse.acceleo.engine.service.AbstractAcceleoGenerator.generate(AbstractAcceleoGenerator.java:141)
	at org.eclipse.acceleo.engine.service.AbstractAcceleoGenerator.doGenerate(AbstractAcceleoGenerator.java:120)
	at files.GenerateJava.doGenerate(GenerateJava.java:164)
	at files.GenerateJava.main(GenerateJava.java:142)
Caused by: java.lang.IllegalArgumentException: null
	at org.eclipse.uml2.uml.internal.operations.ElementOperations.getValue(ElementOperations.java:525)
	at org.eclipse.uml2.uml.internal.impl.ElementImpl.getValue(ElementImpl.java:296)
	... 42 more



Any idea ?


Thanks


Vincent]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,4272,4272#msg-4272</guid>
      <pubDate>Wed, 04 Jan 2012 16:27:17 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: Can't see diagram in Acceleo Reflective Editor</title>
      <link>http://www.acceleo.org/forum/read.php?8,4267,4271#msg-4271</link>
      <author>ylussaud</author>
      <description><![CDATA[Hum,

First try to open your model using the Ecore sample reflective editor and see if you have all diagrams.

But I think the diagram part isn't XMI but not sure. You should ask the UML2 team or the visual paradigm team. Ask them how to load the all model using EMF. From this point you will be able to give the model to Acceleo 2.x or 3.x.

regards,
Yvan.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,4267,4271#msg-4271</guid>
      <pubDate>Fri, 23 Dec 2011 09:32:49 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: Can't see diagram in Acceleo Reflective Editor</title>
      <link>http://www.acceleo.org/forum/read.php?8,4267,4270#msg-4270</link>
      <author>b458113</author>
      <description><![CDATA[Well, all data is in file named e.uml, and i pasted it here http://goo.gl/Tff3r

As you can see here http://imgur.com/rj6Mq i can see Class1 element which is in  but i can't see  and it's subnodes representing UIFrame and UIButton.

And Reflective Editor neither shows ]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,4267,4270#msg-4270</guid>
      <pubDate>Thu, 22 Dec 2011 17:20:43 +0100</pubDate>
    </item>
    <item>
      <title>[Ferme de modules] erreur génération code associé à un méta-modèle</title>
      <link>http://www.acceleo.org/forum/read.php?13,4269,4269#msg-4269</link>
      <author>Thieumdesp</author>
      <description><![CDATA[Bonjour,
Nous avons un fork du méta-modèle entity (fr.obeo.dsl.entity).
Lorsque j'essaie de générer le code associé au méta-modèle (bouton droit &gt; Acceleo &gt; Générer le code), j'ai systématiquement l'erreur (dans la vue Error log) : &quot;Élément requis introuvable.&quot;
En repartant d'un nouveau méta-moèle (pour faire un test), j'ai remarqué que cette erreur apparaissait à partir du moment où je référencé un élément de platform:/plugin/fr.obeo.dsl.environment/model/environment.ecore (en l'occurence ObeoDSMObject)
Impossible donc de générer le code du méta-modèle. 
Quelqu'un a-t-il une idée sur la source du problème ?
D'avance merci.
DESPATURE Mathieu.
L'erreur complète :

java.lang.NullPointerException
	at org.eclipse.emf.codegen.ecore.genmodel.impl.GenPackageImpl$DependencyHelper.(GenPackageImpl.java:2032)
	at org.eclipse.emf.codegen.ecore.genmodel.impl.GenPackageImpl.prepareCache(GenPackageImpl.java:2803)
	at org.eclipse.emf.codegen.ecore.genmodel.impl.GenPackageImpl.generate(GenPackageImpl.java:2602)
	at org.eclipse.emf.codegen.ecore.genmodel.impl.GenModelImpl.generate(GenModelImpl.java:2778)
	at org.eclipse.emf.codegen.ecore.genmodel.impl.GenBaseImpl.generate(GenBaseImpl.java:363)
	at fr.obeo.acceleo.ecore.ui.popupMenus.AcceleoGenMetamodelOperation$1.run(AcceleoGenMetamodelOperation.java:190)
	at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1797)
	at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1779)
	at fr.obeo.acceleo.ecore.ui.popupMenus.AcceleoGenMetamodelOperation.execute(AcceleoGenMetamodelOperation.java:222)
	at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:101)
	at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1797)
	at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:113)
	at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:369)
	at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:313)
	at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:495)
	at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:268)
	at org.eclipse.ui.internal.progress.ProgressManager.run(ProgressManager.java:1123)
	at fr.obeo.acceleo.ecore.ui.popupMenus.AcceleoGenMetamodelAction.run(AcceleoGenMetamodelAction.java:59)
	at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:256)
	at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545)
	at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490)
	at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402)
	at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
	at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
	at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
	at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
	at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
	at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
	at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
	at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
	at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
	at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
	at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
	at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153)
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504)
	at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443)
	at org.eclipse.equinox.launcher.Main.run(Main.java:1169)]]></description>
      <category>Ferme de modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?13,4269,4269#msg-4269</guid>
      <pubDate>Thu, 22 Dec 2011 15:12:13 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: Can't see diagram in Acceleo Reflective Editor</title>
      <link>http://www.acceleo.org/forum/read.php?8,4267,4268#msg-4268</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi,

There are two different things here:
 - the semantic model (e.uml) which contain the semantic of your uml for instance uml.Package, uml.Class, ...
 - the visual syntax (don't have the file name) that contains position, color, ... of visual representation

So my first guess is open the resource containing the data you need. I hope that I'm not totally wrong :)

regards,
Yvan.]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,4267,4268#msg-4268</guid>
      <pubDate>Thu, 22 Dec 2011 09:27:18 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Can't see diagram in Acceleo Reflective Editor</title>
      <link>http://www.acceleo.org/forum/read.php?8,4267,4267#msg-4267</link>
      <author>b198251</author>
      <description><![CDATA[Hi,

i'm trying to use Acceleo to generate code from diagram exported from visual paradigm.

I have uml model like this: http://goo.gl/Tff3r or http://pastebin.com/Km6Uzw9E

It has two diagrams, class diagram and UI diagram. But in Reflective Editor i can see neither. Only packagedElements are visible like: http://img824.imageshack.us/img824/6503/acce.png or http://imgur.com/rj6Mq

How can i gain access to those diagram so i could generate something based on them?]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,4267,4267#msg-4267</guid>
      <pubDate>Wed, 21 Dec 2011 13:11:44 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] acceleo compiler, 5:The metamodel couldn't be resolved</title>
      <link>http://www.acceleo.org/forum/read.php?8,4266,4266#msg-4266</link>
      <author>prolink007</author>
      <description><![CDATA[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.

1.compile the auto generator
2.Generate the EMTL files
3.Generate the code from the EMTL files

Right now, i can run step 1 and it works fine. Then i run step 2 and it fails with the following errors (Step 2 Errors). And then i can run step 3 and it works fine. I then check all of my files and generated code and everything looks fine. However, those errors from step 2 are really bothering me and i need to get them resolved.

Any help will be greatly appreciated and if you need more information, please let me know.

Posted below are the steps in the build.xml and the errors for step 2. Classpaths are left out because they were very long and looked messy. If you need to see the classpaths, let me know and i will post them below.

Also, if i run the build script in eclipse, this error does NOT occur.


--------------------------------------------------------------------------------
The build.xml information

	
		
	
	
	
		
	    
	
	
	
		
			
			
		
	
	
	

--------------------------------------------------------------------------------
The step 2 errors

generateEMTL:
[acceleoCompiler] generateDataAccessObject.mtl
[acceleoCompiler] 5:The metamodel couldn't be resolved
[acceleoCompiler] 5:The metamodel couldn't be resolved
[acceleoCompiler] 5:The metamodel couldn't be resolved
[acceleoCompiler] 
[acceleoCompiler] generatePerstNode.mtl
[acceleoCompiler] 5:The metamodel couldn't be resolved
[acceleoCompiler] 5:The metamodel couldn't be resolved
[acceleoCompiler] 
[acceleoCompiler] TreeWalk.mtl
[acceleoCompiler] 5:The metamodel couldn't be resolved
[acceleoCompiler] 5:The metamodel couldn't be resolved
[acceleoCompiler] 

BUILD FAILED
C:\Framework\build.xml:170: generateDataAccessObject.mtl
5:The metamodel couldn't be resolved
5:The metamodel couldn't be resolved
5:The metamodel couldn't be resolved

generatePerstNode.mtl
5:The metamodel couldn't be resolved
5:The metamodel couldn't be resolved

TreeWalk.mtl
5:The metamodel couldn't be resolved
5:The metamodel couldn't be resolved


	at org.eclipse.acceleo.parser.compiler.AcceleoCompiler.execute(AcceleoCompiler.java:121)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.Target.execute(Target.java:390)
	at org.apache.tools.ant.Target.performTasks(Target.java:411)
	at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
	at org.apache.tools.ant.Project.executeTarget(Project.java:1368)
	at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
	at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
	at org.apache.tools.ant.Main.runBuild(Main.java:809)
	at org.apache.tools.ant.Main.startAnt(Main.java:217)
	at org.apache.tools.ant.launch.Launcher.run(Launcher.java:280)
	at org.apache.tools.ant.launch.Launcher.main(Launcher.java:109)]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,4266,4266#msg-4266</guid>
      <pubDate>Mon, 12 Dec 2011 16:00:56 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: Acceleo Generator variables?</title>
      <link>http://www.acceleo.org/forum/read.php?8,4264,4265#msg-4265</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi,

  They are no variables in Acceleo 2.x. But you can use context services like : push()/pop() put()/get()...

regards,
Yvan]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,4264,4265#msg-4265</guid>
      <pubDate>Tue, 29 Nov 2011 10:51:24 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Acceleo Generator variables?</title>
      <link>http://www.acceleo.org/forum/read.php?8,4264,4264#msg-4264</link>
      <author>msibnseddik</author>
      <description><![CDATA[Hello,

Is there anyway we can have variables within an acceleo generator file (.mt)? I've seen that it was possible in Acceleo Model to Text (.mtl) but I can't find anything like that for what I'm trying to do.

I made a model based on my metamodel and I'm trying to get a script that will generate the proper code. And I need to define a variable inside a for loop so it would check wether there's another node in the model that has the same type.

Thanks for your help.

Regards,
Mohamed Saad IBN SEDDIK]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,4264,4264#msg-4264</guid>
      <pubDate>Mon, 28 Nov 2011 17:28:12 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Re: Ant Builder Build Failed eINSTANCE</title>
      <link>http://www.acceleo.org/forum/read.php?8,4262,4263#msg-4263</link>
      <author>Stephane Begaudeau</author>
      <description><![CDATA[Hi,

First of all, for all the Acceleo 3.x related question, you should go on the forum of the Eclipse Foundation (http://www.eclipse.org/forums/index.php/f/24/) because Acceleo is, since its version 3.0, an official project of the Eclipse Foundation. This website is dedicated to older versions of Acceleo. The new Acceleo website can be found on the server of the Eclipse Foundation (http://eclipse.org/acceleo/).

Now, on your problem, the line &quot;packagesToRegister&quot; is a reference to the package of your metamodel for example, if your generator is using the UML metamodel, you should register the package org.eclipse.uml.uml2.UMLPackage (or something like that), you can see the package needed to register in the method registerPackage of the java launcher class of your generator. The AcceleoCompiler is not a package to register (that's why the variable eINSTANCE is not found on AcceleoCompiler).

Acceleo can also be built with PDE (right click on the project and select export as a deployable plugin and fragment) or with maven. You can find an example of a maven based build Acceleo generator on github (https://github.com/ObeoNetwork/UML-Java-Generation).

Regards,

Stephane Begaudeau, Obeo

--
Twitter: [url=http://twitter.com/#!/sbegaudeau]@sbegaudeau[/url]
Google+: [url=http://www.google.com/profiles/stephane.begaudeau]stephane.begaudeau[/url]
Blog: [url=http://stephanebegaudeau.tumblr.com]http://stephanebegaudeau.tumblr.com[/url]
Acceleo Documentation: [url=http://docs.obeonetwork.com/acceleo]http://docs.obeonetwork.com/acceleo[/url]]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,4262,4263#msg-4263</guid>
      <pubDate>Thu, 24 Nov 2011 10:07:53 +0100</pubDate>
    </item>
    <item>
      <title>[Help for modules] Ant Builder Build Failed eINSTANCE</title>
      <link>http://www.acceleo.org/forum/read.php?8,4262,4262#msg-4262</link>
      <author>prolink007</author>
      <description><![CDATA[Trying to use AcceleoCompiler with an Ant Builder. When i build with ant i get the following error:

compile: [acceleoCompiler] eINSTANCE  BUILD FAILED :
\Users\random\workspace\foo\bar\Framework\buildstandalone.xml:52: eINSTANCE 

Here is how i have my target defined and some other information that could be important. I am very new to ant and acceleo. Let me know if there is any other information you need. I am not sure that any of the below is correct, let me know if there is anything i need to change. The line that it is complaining about is 

packagesToRegister=&quot;org.eclipse.acceleo.parser.compiler.AcceleoCompiler&quot;&gt; 

I do not know if that line is correct at all, i was just guessing.









     
]]></description>
      <category>Help for modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?8,4262,4262#msg-4262</guid>
      <pubDate>Wed, 23 Nov 2011 21:15:05 +0100</pubDate>
    </item>
    <item>
      <title>[Problems / Bugs] Re: BOLB</title>
      <link>http://www.acceleo.org/forum/read.php?11,4254,4261#msg-4261</link>
      <author>karimi_ras@yahoo.com</author>
      <description><![CDATA[Thanks!
I just found another solution. I want to set the type of the attribute as an array of bytes. It is a good idea to simulate the BLOB type. The only type in acceleo which supports byte is : Byte Array. However, when I choose it, the type of the generated property in the java class is empty. It is same for the type of the column in the generated sql DDL. I guess I need to install the template related to Byte Array, but I don't know the name of this template. Does anybody know that?

Thanks a lot,
Arman]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4254,4261#msg-4261</guid>
      <pubDate>Wed, 23 Nov 2011 15:23:44 +0100</pubDate>
    </item>
    <item>
      <title>[Problems / Bugs] Re: BOLB</title>
      <link>http://www.acceleo.org/forum/read.php?11,4254,4260#msg-4260</link>
      <author>ylussaud</author>
      <description><![CDATA[Hi,

  Looking at the source code of the jdbc template, it seems that only String, Date and Intager are taken as valid types. You can get the source code here : svn://svn.forge.objectweb.org/svnroot/acceleo/trunk/modules/tutorials/weblog

You then can add the if needed to for your case. And if you are new with Acceleo you should consider using the version 3.x http://eclipse.org/acceleo/

regards,
Yvan.]]></description>
      <category>Problems / Bugs</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?11,4254,4260#msg-4260</guid>
      <pubDate>Wed, 23 Nov 2011 09:53:10 +0100</pubDate>
    </item>
    <item>
      <title>[Aide à la création de modules] Re: Exécution d'un .cmd après génération</title>
      <link>http://www.acceleo.org/forum/read.php?7,4252,4259#msg-4259</link>
      <author>Thibaud</author>
      <description><![CDATA[Ok merci, je vais essayer.

Cordialement,
Thibaud]]></description>
      <category>Aide à la création de modules</category>
      <guid isPermaLink="true">http://www.acceleo.org/forum/read.php?7,4252,4259#msg-4259</guid>
      <pubDate>Tue, 22 Nov 2011 14:50:01 +0100</pubDate>
    </item>
  </channel>
</rss>

