<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<!-- MHonArc v2.6.10 -->
	<channel>
		<title>news.eclipse.amw</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/maillist.html</link>
		<description>NewsGroup: news.eclipse.amw</description>
		<language>en-us</language>
		<pubDate>Fri, 04 Sep 2009 12:31:46 GMT</pubDate>
		<lastBuildDate>Fri, 04 Sep 2009 12:31:46 GMT</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MHonArc RSS 2.0 RCFile</generator>
		<managingEditor>webmaster@eclipse.org (Webmaster)</managingEditor>
		<webMaster>webmaster@eclipse.org (Webmaster)</webMaster>
		<image>
			<title>news.eclipse.amw</title>
			<url>http://www.eclipse.org/eclipse.org-common/themes/Phoenix/images/eclipse_home_header.jpg</url>
			<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/maillist.html</link>
		</image>
 

	<item>
		<title>[news.eclipse.amw] Re: Refactoring deprecated AM3 branch and AMW model handler to use ATL 3.0 API</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00133.html</link>
		<description>Hi Juan Pedro, Juan Pedro Silva a &amp;#xE9;crit : Unfortunately, as we are not continuing the development of these plug-ins anymore, we don't have such a test suite. However, one simple way of validating your new implementation is to manually test each of the inje...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi Juan Pedro,</pre><br>
<tt>Juan Pedro Silva a &#xE9;crit :
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>Thank you very much, Hugo.<br>
I ended up with this piece of code (let me know if you consider it 
appropriated):</tt><br>
<br>
<tt>            try<br>
            {<br>
                //AtlVM.getVM(vm).launch(asmUrl, libs, models, params, 
superimps, options);<br>
                //AtlLauncher.getDefault().launch(asmUrl, libs, models, 
params, superimps, options);<br>
                ASM asm = new ASMXMLReader().read(new 
BufferedInputStream(asmUrl.openStream()));   
                superimps.add(0, asm); //New ILauncher.launch(..) method 
takes a list of modules where the first module of the set is overriden 
by the next ones<br>
                ILauncher atlL = 
CoreService.getLauncher(ATLLaunchConstants.REGULAR_VM_NAME);               
                atlL.launch(ILauncher.RUN_MODE, new 
NullProgressMonitor(), options, superimps);<br>
            } catch (IOException e)<br>
            {<br>
                ATLLogger.log(Level.SEVERE, e.getLocalizedMessage(), e);<br>
            } catch (ATLCoreException e) {<br>
                ATLLogger.log(Level.SEVERE, e.getLocalizedMessage(), e);<br>
                e.printStackTrace();<br>
            }</tt><br>
<br>
<tt>I will do a partial test of my refactorization with an AMW 
refactorization I'm also performing (it may take a while, though, as I 
have other thing in hand).<br>
Perhaps (if you already have test suites for AM3) you may like me to 
send it to you so you could start testing it already?. Just let me know.
</tt></blockquote><tt><br>Unfortunately, as we are not continuing the development of these 
plug-ins anymore, we don't have such a test suite. However, one simple 
way of validating your new implementation is to manually test each of 
the injectors, extractors, and other converters (concerning KM3, ATL, 
XML, etc) on a given set of files/models/metamodels. Thus, you will be 
able to ensure that the general behavior of these plug-ins has not been 
altered.</tt><br>
<br>
<tt>Similarly, for AMW, you can try to run some of the use cases available 
from the AMW website using both ATL 3.0 and your new implementation of 
the AMW model handler.</tt><br>
<br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;"><br>How is everyone in EDM-Nantes?, send my regards.
Mer&#xE7;i ;-),
</pre></blockquote><pre style="margin: 0em;"><br>Everything goes well at EMN. Thanks!</pre><br>
<pre style="margin: 0em;">Cheers,</pre><br>
<pre style="margin: 0em;">Hugo</pre><br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">              Juan Pedro</pre><br>
<tt><br>Hugo Bruneliere escribi&#xF3;:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">Hi Juan,</pre><br>
<tt>Juan Pedro Silva a &#xE9;crit :
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">Hi Hugo, thank you for your support.
If I take the mentioned approach, the following instruction:</pre><br>
<tt>AtlVM.getVM(vm).launch(asmUrl, libs, models, params, superimps, 
options);</tt><br>
<br>
<tt>Is no longer supported (AtlVM is no longer there in ATL 3.0), so I 
need a suggestion in how to rewrite that instruction.<br>
These alternatives might work, but not sure which is best:</tt><br>
<br>
<tt>RegularVMLauncher.launch(java.lang.String mode,<br>
                               
org.eclipse.core.runtime.IProgressMonitor monitor,<br>
                               
java.util.Map&lt;java.lang.String,java.lang.Object&gt; options,<br>
                               java.lang.Object... modules);</tt><br>
<br>
<pre style="margin: 0em;">or</pre><br>
<tt>AtlLauncher.getDefault().launch(java.net.URL asmurl, java.util.Map 
libraries, java.util.Map models, java.util.Map asmParams, 
java.util.List superimpose, java.util.Map options)</tt><br>
<br>
<tt>The first alternative is using the regular VM, but parameters are not 
the same, and as documentation is scarce, I don't know how to convert 
them.<br>
On the other side, the second alternative takes the same parameters, 
but my feeling is that it will use the new VM (as it is the default 
one), and not regular VM.<br>
There may be other (more correct) alternatives, but I'm not 
acquainted with the new API, and those are the ones I found so far.<br>
Do you have any suggestions for this instruction?.
</tt></blockquote><tt><br>In order to get the launcher of the Regular VM (but which conforms to 
the new ILauncher interface), you can use the &quot;getLauncher()&quot; method 
of the org.eclipse.m2m.atl.core.service.CoreService class:</tt><br>
<br>
<tt>   ILauncher atlLauncher = 
CoreService.getLauncher(ATLLaunchConstants.REGULAR_VM_NAME);<br>
   //of course, ATLLaunchConstants.EMF_VM_NAME also exists<br>
   atlLauncher.launch(...);<br>
    
Cheers,</tt><br>
<br>
<pre style="margin: 0em;">Hugo</pre><br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;"><br>I'll love to contribute once I finish refactoring.
Thanks for your help.
Regards,
              Juan Pedro</pre><br>
<tt>Hugo Bruneliere escribi&#xF3;:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">Hi Juan,</pre><br>
<tt>First, thank you very much for your contribution. I'm sure it will 
be used by many AM3 &amp; ATL developers :-)</tt><br>
<br>
<tt>Juan Pedro Silva a &#xE9;crit :
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>Hi everybody, I'm trying to rewrite some parts of AM3's deprecated 
packages branch to use ATL 3.0.<br>
I have managed to modify most parts to use the new API, but I have 
doubts on a particular piece of code.<br>
The code in hands is in class 
org.eclipse.gmt.am3.tools.ant.ATLModelTransformationTask, and is 
this one:</tt><br>
<br>
<tt>        ...<br>
        if(vm == null)<br>
            vm = AtlVM.ATLVM_REGULAR;                  ...<br>
        if (!debug.booleanValue())<br>
            AtlVM.getVM(vm).launch(asmUrl, libs, models, params, 
superimps, options);<br>
        ...</tt><br>
<br>
<pre style="margin: 0em;">I guess I can rewrite the first red line as
           vm = ATLLaunchConstants.REGULAR_VM_NAME;</pre><br>
<tt>but I don't believe this is the correct way to go, I think I should 
change the structure somehow.<br>
Can anyone give me a pointer on this?.
</tt></blockquote><tt><br>From my point of view, what you propose is good because it keeps 
exactly the same behavior as the previous version. I don't think it 
is necessary to modify the current structure of the plugin, at least 
in a first time.</tt><br>
<br>
<tt>Of course, it would be great if you could contribute your upgrades 
by submitting a patch via Bugzilla!</tt><br>
<br>
<pre style="margin: 0em;">Cheers,</pre><br>
<pre style="margin: 0em;">Hugo</pre><br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">Thanks,
            Juan Pedro
</pre></blockquote><pre style="margin: 0em;"><br></pre><br>
</blockquote></blockquote><pre style="margin: 0em;"><br></pre><br>
</blockquote></blockquote><pre style="margin: 0em;"><br></pre><br>
<pre style="margin: 0em;">--
-------------------------------------------------
Hugo Bruneliere - R&amp;D Engineer
AtlanMod research team (INRIA &amp; EMN) - Room B206
&#xC9;cole des Mines de Nantes
4, rue Alfred Kastler
44307 Nantes Cedex 3 - France
Office: +33 (0)2 51 85 82 21
EMail: hugo.bruneliere@xxxxxxxx
-------------------------------------------------</pre><br>
]]></content:encoded>
		<pubDate>Fri, 04 Sep 2009 12:22:37 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00133.html</guid>
		<author>hugo.bruneliere@xxxxxxx (Hugo Bruneliere)</author>
	</item>


	<item>
		<title>[news.eclipse.amw] Re: Migrating AMW to use ATL 3.0 API.</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00132.html</link>
		<description> AtlLauncher.getDefault().launch(asmUrl, libs, models, params, superimps, options); But I'm not confident that it is using the correct vm for sure. I will hold to see if they answer, if not I'll repost on m2m newsgroup and see if I get help there. I will a...</description>
		<content:encoded><![CDATA[<table width="100%"><tr><td bgcolor="#ffffff" style="background-color: #ffffff; color: #000000; "><font color="#000000">



Hi Marcos, thanks for you support. :-)<br>
With your answers I managed to get rid of all compilation errors in
AMW's code (at least so far).<br>
I'm still waiting for an answer from the AM3 newsgroup on how to
rewrite the following instructions:<br>
<br>
<font face="Courier New, Courier, monospace">vm = AtlVM.ATLVM_REGULAR;</font><br>
<font face="Courier New, Courier, monospace">AtlVM.getVM(vm).launch(asmUrl,
libs, models, params, superimps, options);</font><br>
<br>
as AtlVM class no longer exists.<br>
I wrote:<br>
<br>
<font face="Courier New, Courier, monospace">AtlLauncher.getDefault().launch(asmUrl,
libs, models, params, superimps, options);</font><br>
<br>
But I'm not confident that it is using the correct vm for sure.<br>
I will hold to see if they answer, if not I'll repost on m2m newsgroup
and see if I get help there.<br>
I will anyhow try out the resulting code with my current modifications
and see the results.<br>
<br>
I'll get back with my findings.<br>
Regards,<br>
&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; Juan Pedro<br>
<br>
<br>
Marcos Didonet Del Fabro escribi&#xF3;:
<blockquote
 cite=""
 type="cite">Hi Juan,
  <br>
  <br>
this is a nice initiative!!
  <br>
  <br>
I haven't worked with the ATL 3.0 API so far, I have just used ATL 2.x
  <br>
versions, to keep compatibility. I have some comments below.
  <br>
  <br>
  <blockquote type="cite">ASMEMFModel.getResourceSet()
    <br>
  </blockquote>
  <br>
I think it is OK to get the resourceset like that. However, the
  <br>
resource sets are the most tricky parts of AMW implementation,
  <br>
because when it was implemented, we didn't know the EMF API in detail.
  <br>
The tool don't has a centralized resource set, but one per model and
  <br>
metamodel. Still, the implementation is centralized in the
  <br>
ModelManager class. You should verify if there is no undesired effects
when these methods are called in the AMWEditor.
  <br>
  <br>
  <blockquote type="cite">ASMEMFModel.loadASMEMFModel(...)&#xA0; -&gt; is
EMFModelLoader.loadModel(..) </blockquote>
equivalent?
  <br>
  <br>
For loading models, you just need to get an EMF model in return, so
  <br>
EMFModelLoader.loadModel(..) should be OK.
  <br>
  <br>
  <blockquote type="cite">ASMEMFModel.createMOF(modelLoader) -&gt; you
can always do emfModelLoader.getMOF(), or ASMEMFModel.getMOF(), but I'm
n ot sure if any </blockquote>
of
  <blockquote type="cite">those is semantically the same (the first one
having more chances).
    <br>
  </blockquote>
  <br>
The two last ones are probably facilities to get the MOF (which is
  <br>
actually EMF) metametamodel directly, so you could use them as well.
  <br>
  <br>
  <blockquote type="cite">I'm also refactoring the AM3 deprecated
branch to use this new API. I changed </blockquote>
the dependencies on /org.eclipse.gmt.tcs/ to
/org.eclipse.m2m.atl.drivers.emf4atl.tcs/, do you &gt; consider this
correct?.
  <br>
  <br>
I have done some modifications recently in the code to remove these
  <br>
dependencies in the AMW code. This simplifies the installation process.
  <br>
I do a dynamic class load of KM3Injector and Projector. You may take
  <br>
advantage of that change.
  <br>
  <br>
  <blockquote type="cite">Also, there might be incompatibilities
between ATL 3.0 and AMW that I might </blockquote>
be missing.
  <br>
  <br>
Probably :). Check specially the AMW transformation plugins, which
executes ATL
  <br>
transformations.
  <br>
  <br>
Once finished (and tested), it may be a possibility to contribute to
  <br>
the AMW code, for instance, buy proposing a patch through Bugzilla.
  <br>
  <br>
Regards,
  <br>
  <br>
Marcos.
  <br>
  <br>
  <br>
</blockquote>


</font></td></tr></table>]]></content:encoded>
		<pubDate>Fri, 28 Aug 2009 13:50:28 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00132.html</guid>
		<author>jpsilvagallino@xxxxxxx (Juan Pedro Silva)</author>
	</item>
	<item>
		<title>[news.eclipse.amw] Re: Migrating AMW to use ATL 3.0 API.</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00131.html</link>
		<description>Hi Juan, this is a nice initiative!! I haven't worked with the ATL 3.0 API so far, I have just used ATL 2.x versions, to keep compatibility. I have some comments below. I think it is OK to get the resourceset like that. However, the resource sets are the m...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi Juan,</pre><br>
<pre style="margin: 0em;">this is a nice initiative!!</pre><br>
<pre style="margin: 0em;">I haven't worked with the ATL 3.0 API so far, I have just used ATL 2.x
versions, to keep compatibility. I have some comments below.</pre><br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>ASMEMFModel.getResourceSet()
</tt></blockquote><tt><br>I think it is OK to get the resourceset like that. However, the<br>
resource sets are the most tricky parts of AMW implementation,<br>
because when it was implemented, we didn't know the EMF API in detail.<br>
The tool don't has a centralized resource set, but one per model and<br>
metamodel. Still, the implementation is centralized in the<br>
ModelManager class. You should verify if there is no undesired effects 
when these methods are called in the AMWEditor.</tt><br>
<br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>ASMEMFModel.loadASMEMFModel(...)  -&gt; is EMFModelLoader.loadModel(..) 
</tt></blockquote><pre style="margin: 0em;">equivalent?</pre><br>
<pre style="margin: 0em;">For loading models, you just need to get an EMF model in return, so
EMFModelLoader.loadModel(..) should be OK.</pre><br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>ASMEMFModel.createMOF(modelLoader) -&gt; you can always do 
emfModelLoader.getMOF(), or ASMEMFModel.getMOF(), but I'm n ot sure if any 
</tt></blockquote><tt>of 
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>those is semantically the same (the first one having more chances).
</tt></blockquote><pre style="margin: 0em;"><br>The two last ones are probably facilities to get the MOF (which is
actually EMF) metametamodel directly, so you could use them as well.</pre><br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>I'm also refactoring the AM3 deprecated branch to use this new API. I changed 
</tt></blockquote><tt>the dependencies on /org.eclipse.gmt.tcs/ to 
/org.eclipse.m2m.atl.drivers.emf4atl.tcs/, do you &gt; consider this correct?.</tt><br>
<br>
<pre style="margin: 0em;">I have done some modifications recently in the code to remove these
dependencies in the AMW code. This simplifies the installation process.
I do a dynamic class load of KM3Injector and Projector. You may take
advantage of that change.</pre><br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>Also, there might be incompatibilities between ATL 3.0 and AMW that I might 
</tt></blockquote><pre style="margin: 0em;">be missing.</pre><br>
<tt>Probably :). Check specially the AMW transformation plugins, which 
executes ATL<br>
transformations.</tt><br>
<br>
<pre style="margin: 0em;">Once finished (and tested), it may be a possibility to contribute to
the AMW code, for instance, buy proposing a patch through Bugzilla.</pre><br>
<pre style="margin: 0em;">Regards,</pre><br>
<pre style="margin: 0em;">Marcos.</pre><br>
<pre style="margin: 0em;"><br></pre><br>
]]></content:encoded>
		<pubDate>Fri, 28 Aug 2009 07:46:17 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00131.html</guid>
		<author>marcos.ddf@xxxxxxx (Marcos Didonet Del Fabro)</author>
	</item>


	<item>
		<title>[news.eclipse.amw] Migrating AMW to use ATL 3.0 API.</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00130.html</link>
		<description> Hi Marcos, I'm trying to refactor AMW's code to migrate it to ATL 3.0 API. I know it's not a simple task, as if not you would have done it already, but I believe I'm not so far from achieving it. However, there are still three pieces of code (spread in nu...</description>
		<content:encoded><![CDATA[<table width="100%"><tr><td bgcolor="#ffffff" style="background-color: #ffffff; color: #000000; "><font color="#000000">



Hi Marcos, I'm trying to refactor AMW's code to migrate it to ATL 3.0
API.<br>
I know it's not a simple task, as if not you would have done it
already, but I believe I'm not so far from achieving it.<br>
<br>
However, there are still three pieces of code (spread in numerous
classes) which I don't feel confident in changing, as I don't know the
semantics of it and I'm not really ATL's 3.0 API savvy.<br>
Those pieces are:<br>
<br>
ASMEMFModel.getResourceSet() -&gt; from <a
 href="http://www.eclipse.org/forums/index.php?t=msg&amp;th=30445&amp;start=0&amp;S=63660089a492a7cfe0c0e55f2d8d63d6">this
thread</a> I get that I can get a resource set from a EMFModelLoader
instance, but I'm not completely sure it is the right type of resource
set.<br>
<br>
ASMEMFModel.loadASMEMFModel(...) &nbsp; -&gt; is
EMFModelLoader.loadModel(..) equivalent?<br>
<br>
ASMEMFModel.createMOF(modelLoader) -&gt; you can always do
emfModelLoader.getMOF(), or ASMEMFModel.getMOF(), but I'm not sure if
any of those is semantically the same (the first one having more
chances).<br>
<br>
I'm also refactoring the AM3 deprecated branch to use this new API. I
changed the dependencies on <i>org.eclipse.gmt.tcs</i> to <i>org.eclipse.m2m.atl.drivers.emf4atl.tcs</i>,
do you consider this correct?.<br>
There is also a piece of code in one of AM3's plugins that I don't know
how to refactor, so I asked for guidance on AM3 newsgroup on this
particular one.<i> <br>
</i><br>
Also, there might be incompatibilities between ATL 3.0 and AMW that I
might be missing. <br>
Any comments will be much appreciated.<br>
Best regards,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Juan Pedro<br>
<br>
<br>
<br>
<br>
<br>


</font></td></tr></table>]]></content:encoded>
		<pubDate>Thu, 27 Aug 2009 16:24:49 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00130.html</guid>
		<author>jpsilvagallino@xxxxxxx (Juan Pedro Silva)</author>
	</item>


	<item>
		<title>[news.eclipse.amw] Re: Facing problems in model tranformation</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00129.html</link>
		<description>hello, here is a way (but not the official and the more simple one) i found to have the configuration working without 'org.eclipse.gmt.tcs.dsls' (a more simple way would be to retrieve 'org.eclipse.gmt.tcs.dsls' or equivalent). - unsatisfied dependency fro...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">hello,</pre><br>
<tt>here is a way (but not the official and the more simple one) i found to 
have the configuration working without 'org.eclipse.gmt.tcs.dsls'<br>
(a more simple way would be to retrieve 'org.eclipse.gmt.tcs.dsls' or 
equivalent).</tt><br>
<br>
<tt>- unsatisfied dependency from 'org.eclipse.gmt.am3.dsls.km3' to 
'org.eclipse.gmt.tcs.dsls' : make optional this dependency (see post from 
Marcos from Nov 20 2008)</tt><br>
<br>
<tt>- on &quot;org.eclipse.gmt.weaver&quot; project, add &quot;parser_src&quot; to the build path 
(in order to avoid &quot;KM3_ANTLR3Lexer&quot; ClassNotFound.</tt><br>
<br>
<tt>- fix KM3_ANTLR3Lexer and KM3_ANTLR3Parser compile errors in replacing 
usage of org.eclipse.gmt.tcs.injector.TCSRuntime with 
org.eclipse.gmt.tcs.injector.TCSInjector</tt><br>
<br>
<tt>- in WeaverResourceUtil, line 301, set back the direct .class access :<br>
	params.put(&quot;lexerClass&quot;, KM3_ANTLR3Lexer.class);<br>
	params.put(&quot;parserClass&quot;, KM3_ANTLR3Parser.class);<br>
(dynamic access failed in ClassNotFound without 'org.eclipse.gmt.tcs.dsls' 
installed)</tt><br>
<br>
<pre style="margin: 0em;">Fabien.</pre><br>
<pre style="margin: 0em;"><br></pre><br>
]]></content:encoded>
		<pubDate>Wed, 19 Aug 2009 11:27:29 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00129.html</guid>
		<author>fgiquel@xxxxxxx (fgiquel )</author>
	</item>


	<item>
		<title>[news.eclipse.amw] Facing problems in model tranformation</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00128.html</link>
		<description>Hello, I am totally new to model transformations. I want to implement the tranformation and model weaving using the eclipse IDE. Fortunately, I found a usecase on eclipse website which resembles my requirements of transforming from RDBMS to XML. This useca...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hello,</pre><br>
<pre style="margin: 0em;">I am totally new to model transformations. I want to implement the tranformation and model weaving using the eclipse IDE. Fortunately, I found a usecase on eclipse website which resembles my requirements of transforming from RDBMS to XML. This usecase is:
<a  href="http://www.eclipse.org/gmt/amw/usecases/RDBMSXML/">http://www.eclipse.org/gmt/amw/usecases/RDBMSXML/</a></pre><br>
<pre style="margin: 0em;">But unfortunately even after trying for long time I am unable to install the eclipse and the required plugins to see the same UI as shown in the usecase or as described on the webpage <a  href="http://wiki.eclipse.org/index.php/AMW">http://wiki.eclipse.org/index.php/AMW</a>. I have followed the instructions on the eclipse website to install the following:</pre><br>
<pre style="margin: 0em;">1. Eclipse 3.4.2 (Eclipse Ganymede)
2. EMF 2.4.0
3. UML2 2.2
4. ATL dev 2_1_0
5. AM3 dev
6. mwplugins-20061208.zip</pre><br>
<pre style="margin: 0em;">Also followed the instructions on the webpage:
<a  href="http://www.eclipse.org/gmt/amw/download/">http://www.eclipse.org/gmt/amw/download/</a></pre><br>
<pre style="margin: 0em;">First of all, I am getting an error:
Bundle 'org.eclipse.gmt.tcs.dsls' cannot be resolved - MANIFEST.MF - org.eclipse.gmt.am3.dsls.km3/META-INF - line 14 Plug-in Problem</pre><br>
<pre style="margin: 0em;">I am unable to get rid of this error. And also I can niether see the perspective Model weaver nor perspective AM3 as described in many of the examples.</pre><br>
<pre style="margin: 0em;">Can anybody please help?? I will be highly obliged.</pre><br>
<pre style="margin: 0em;">Thanks and regards,</pre><br>
<pre style="margin: 0em;">Vikas</pre><br>
]]></content:encoded>
		<pubDate>Thu, 13 Aug 2009 09:36:34 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00128.html</guid>
		<author>nagpalvikas@xxxxxxx (Vikas)</author>
	</item>


	<item>
		<title>[news.eclipse.amw] Using AMW</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00127.html</link>
		<description>Hello there, I am new to model transformations and model weaving. I wanted to try the use case on webpage http://www.eclipse.org/gmt/amw/usecases/RDBMSXML/. So I started installing eclipse and the related plugins as per http://www.eclipse.org/gmt/amw/downl...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hello there,</pre><br>
<tt>I am new to model transformations and model weaving. I wanted to try the 
use case on webpage <a  href="http://www.eclipse.org/gmt/amw/usecases/RDBMSXML/">http://www.eclipse.org/gmt/amw/usecases/RDBMSXML/</a>. So 
I started installing eclipse and the related plugins as per 
<a  href="http://www.eclipse.org/gmt/amw/download/">http://www.eclipse.org/gmt/amw/download/</a>. I have tried to install so many 
times, but I am unable to get rid of problem Bundle 
'org.eclipse.gmt.tcs.dsls' cannot be resolved - MANIFEST.MF - 
org.eclipse.gmt.am3.dsls.km3/META-INF - line 14	Plug-in Problem. Also I 
can not see either the Model weaver perspective or AM3 perspective. 
Please!! Can anybody help??</tt><br>
<br>
<pre style="margin: 0em;">Vikas</pre><br>
<pre style="margin: 0em;"><br></pre><br>
]]></content:encoded>
		<pubDate>Wed, 12 Aug 2009 21:36:50 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00127.html</guid>
		<author>nagpalvikas@xxxxxxx (Vikas )</author>
	</item>


	<item>
		<title>[news.eclipse.amw] Re: [AMW] Status for Galileo</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00126.html</link>
		<description>Hi, I have recently committed a new version that corrects some dependency problems with ATL and AM3 (I replace two problematic static references with dynamic class loading). I have tested with the following versions: Eclipse 3.4.2 ATL 2_1_0_dev : http://wi...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi,</pre><br>
<tt>I have recently committed a new version that corrects some dependency 
problems with ATL and AM3 (I replace two problematic static references 
with dynamic class loading).</tt><br>
<br>
<pre style="margin: 0em;">I have tested with the following versions:</pre><br>
<tt>Eclipse 3.4.2 
ATL 2_1_0_dev  :  
<a  href="http://wiki.eclipse.org/ATL/How_Install_ATL_">http://wiki.eclipse.org/ATL/How_Install_ATL_</a>(Dev)_From_CVS<br>
AM3 dev : <a  href="http://wiki.eclipse.org/AM3/How_Install_AM3_From_SVN">http://wiki.eclipse.org/AM3/How_Install_AM3_From_SVN</a></tt><br>
<br>
<pre style="margin: 0em;">Regards,</pre><br>
<pre style="margin: 0em;">Marcos.</pre><br>
<br>
]]></content:encoded>
		<pubDate>Fri, 07 Aug 2009 14:28:03 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00126.html</guid>
		<author>marcos.ddf@xxxxxxx (Marcos Didonet Del Fabro)</author>
	</item>


	<item>
		<title>[news.eclipse.amw] Re: [AMW] Status for Galileo</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00125.html</link>
		<description>Hi, the latest binary release is compatible with Eclipse 3.3. In order to have the lastest version, it is necessary to check out the sources from SVN. Regards, Marcos. </description>
		<content:encoded><![CDATA[<tt><br>Hi, </tt><br>
<br>
<tt>the latest binary release is compatible with Eclipse 3.3. In order to have 
the lastest version, it is necessary to check out the sources from SVN. </tt><br>
<br>
<pre style="margin: 0em;">Regards,</pre><br>
<pre style="margin: 0em;">Marcos.</pre><br>
<br>
]]></content:encoded>
		<pubDate>Mon, 20 Jul 2009 21:39:57 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00125.html</guid>
		<author>marcos.ddf@xxxxxxx (Marcos Didonet Del Fabro)</author>
	</item>


	<item>
		<title>[news.eclipse.amw] [AMW] Status for Galileo</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00124.html</link>
		<description>I would like to play around with AMW plugin but the latest version I could find for download is dated back in 2007. Is there any new versions, I am interested specially to have a version for Eclipse Galileo. If there is no version for Galileo, does AMW tea...</description>
		<content:encoded><![CDATA[<tt>I would like to play around with AMW plugin but the latest version I 
could find for download is dated back in 2007. Is there any new versions, 
I am interested specially to have a version for Eclipse Galileo. If there 
is no version for Galileo, does AMW team have any plan for to release AMW 
for Galileo? </tt><br>
<br>
<pre style="margin: 0em;">Thanks</pre><br>
<br>
]]></content:encoded>
		<pubDate>Sun, 19 Jul 2009 00:56:23 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.amw/msg00124.html</guid>
		<author>ioan.salau@xxxxxxx (Ioan )</author>
	</item>

 
	</channel>
	</rss>
<!-- MHonArc v2.6.10 -->
