<?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.modeling.mdt</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/maillist.html</link>
		<description>NewsGroup: news.eclipse.modeling.mdt</description>
		<language>en-us</language>
		<pubDate>Thu, 10 Sep 2009 13:53:03 GMT</pubDate>
		<lastBuildDate>Thu, 10 Sep 2009 13:53:03 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.modeling.mdt</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.modeling.mdt/maillist.html</link>
		</image>
 

	<item>
		<title>[news.eclipse.modeling.mdt] Re: Creating objects with multi-valued	children</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00254.html</link>
		<description> </description>
		<content:encoded><![CDATA[<tt>I should clarify that, as Ed pointed out in another thread, the 
additional initialization should be done in a new/separate factory 
method. Likewise, the listener approach could present problems during 
serialization or copying, depending on whether notifications are enabled 
and/or when the listener processes the notifications it receives.</tt><br>
<br>
<tt>The approach that's taken in UML2 is to create factory methods on the 
classes themselves, rather than in the factory. This is one way to 
distinguish between the default methods provided, and required, by the 
EMF framework, and convenience methods that are need by clients of your 
API...</tt><br>
<br>
<pre style="margin: 0em;">Kenn</pre><br>
<tt>Kenn Hussey wrote:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">Doug,</pre><br>
<tt>Yes, modifying the factory to do additional initialization for newly 
created objects would make sense. An alternative would be to attach a 
listener which detects creation/addition of a new car and responds by 
creating/adding the necessary tires.</tt><br>
<br>
<pre style="margin: 0em;">Kenn</pre><br>
<tt>Doug Bercot wrote:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>If I were to create a simple object that has a containment association 
with an N..N value (as shown in the &quot;simple&quot; model below), is there a 
proper place in which I can modify the generated code such that the 
contained objects are always of the correct number?</tt><br>
<br>
<tt>In this example, could I modify one of the factories such that a &quot;Car&quot; 
object is always created with 4 &quot;Tire&quot; child objects?</tt><br>
<br>
<pre style="margin: 0em;">TIA</pre><br>
<tt>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br>
&lt;ecore:EPackage xmi:version=&quot;2.0&quot;<br>
   xmlns:xmi=&quot;<a  href="http://www.omg.org/XMI&quot">http://www.omg.org/XMI&quot</a>; 
xmlns:xsi=&quot;<a  href="http://www.w3.org/2001/XMLSchema-instance&quot">http://www.w3.org/2001/XMLSchema-instance&quot</a>;<br>
   xmlns:ecore=&quot;<a  href="http://www.eclipse.org/emf/2002/Ecore&quot">http://www.eclipse.org/emf/2002/Ecore&quot</a>; name=&quot;simple&quot;<br>
   nsURI=&quot;<a  href="http://nunjobiznezz.com/emf/simple&quot">http://nunjobiznezz.com/emf/simple&quot</a>; nsPrefix=&quot;simple&quot;&gt;<br>
 &lt;eClassifiers xsi:type=&quot;ecore:EClass&quot; name=&quot;Car&quot;&gt;<br>
   &lt;eStructuralFeatures xsi:type=&quot;ecore:EReference&quot; name=&quot;tires&quot; 
lowerBound=&quot;4&quot; upperBound=&quot;4&quot;<br>
       eType=&quot;#//Tires&quot; containment=&quot;true&quot;/&gt;<br>
 &lt;/eClassifiers&gt;<br>
 &lt;eClassifiers xsi:type=&quot;ecore:EClass&quot; name=&quot;Tires&quot;/&gt;<br>
&lt;/ecore:EPackage&gt;</tt><br>
<br>
<br>
</blockquote></blockquote><br>
]]></content:encoded>
		<pubDate>Thu, 10 Sep 2009 13:48:19 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00254.html</guid>
		<author>Kenn.Hussey@xxxxxxx (Kenn Hussey)</author>
	</item>
	<item>
		<title>[news.eclipse.modeling.mdt] Re: Creating objects with multi-valued	children</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00253.html</link>
		<description> </description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Doug,</pre><br>
<tt>Yes, modifying the factory to do additional initialization for newly 
created objects would make sense. An alternative would be to attach a 
listener which detects creation/addition of a new car and responds by 
creating/adding the necessary tires.</tt><br>
<br>
<pre style="margin: 0em;">Kenn</pre><br>
<tt>Doug Bercot wrote:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>If I were to create a simple object that has a containment association 
with an N..N value (as shown in the &quot;simple&quot; model below), is there a 
proper place in which I can modify the generated code such that the 
contained objects are always of the correct number?</tt><br>
<br>
<tt>In this example, could I modify one of the factories such that a &quot;Car&quot; 
object is always created with 4 &quot;Tire&quot; child objects?</tt><br>
<br>
<pre style="margin: 0em;">TIA</pre><br>
<tt>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br>
&lt;ecore:EPackage xmi:version=&quot;2.0&quot;<br>
   xmlns:xmi=&quot;<a  href="http://www.omg.org/XMI&quot">http://www.omg.org/XMI&quot</a>; 
xmlns:xsi=&quot;<a  href="http://www.w3.org/2001/XMLSchema-instance&quot">http://www.w3.org/2001/XMLSchema-instance&quot</a>;<br>
   xmlns:ecore=&quot;<a  href="http://www.eclipse.org/emf/2002/Ecore&quot">http://www.eclipse.org/emf/2002/Ecore&quot</a>; name=&quot;simple&quot;<br>
   nsURI=&quot;<a  href="http://nunjobiznezz.com/emf/simple&quot">http://nunjobiznezz.com/emf/simple&quot</a>; nsPrefix=&quot;simple&quot;&gt;<br>
 &lt;eClassifiers xsi:type=&quot;ecore:EClass&quot; name=&quot;Car&quot;&gt;<br>
   &lt;eStructuralFeatures xsi:type=&quot;ecore:EReference&quot; name=&quot;tires&quot; 
lowerBound=&quot;4&quot; upperBound=&quot;4&quot;<br>
       eType=&quot;#//Tires&quot; containment=&quot;true&quot;/&gt;<br>
 &lt;/eClassifiers&gt;<br>
 &lt;eClassifiers xsi:type=&quot;ecore:EClass&quot; name=&quot;Tires&quot;/&gt;<br>
&lt;/ecore:EPackage&gt;</tt><br>
<br>
<br>
</blockquote><br>
]]></content:encoded>
		<pubDate>Thu, 10 Sep 2009 13:43:08 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00253.html</guid>
		<author>Kenn.Hussey@xxxxxxx (Kenn Hussey)</author>
	</item>


	<item>
		<title>[news.eclipse.modeling.mdt] Re: UML elements already stereotyped in	the palette to drag and drop onto the ed</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00252.html</link>
		<description> </description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Dear Ed Merks,</pre><br>
<tt>I'm sorry and since now I'll avoid to recross it again, but I would like 
to find someone that helps me or gives me a tip or an advice...... :-)</tt><br>
<br>
<pre style="margin: 0em;">Regards,</pre><br>
<pre style="margin: 0em;">Ferdinando</pre><br>
<pre style="margin: 0em;"><br>Ed Merks wrote:</pre><br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>Ferdinando,
</tt></blockquote><br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>Please try to avoid cross posting the same question to so many different 
newsgroups.
</tt></blockquote><pre style="margin: 0em;"><br></pre><br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>Ferdinando Mazzariello wrote:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">Hi All,</pre><br>
<pre style="margin: 0em;">I'm working on a project that will extend UML2Tools. I need help for:</pre><br>
<tt>a) use existing uml2tools functionality (primarily the class and 
component diagram at the moment)</tt><br>
<br>
<tt>b) extend uml2tools functionality to add elements described using 
stereotypes (for instance a class element already stereotyped with a 
custom stereotype). these components will be added to the palette so 
that the they can be dragged and dropped onto the editor.</tt><br>
<br>
<tt>c) not alter uml2tools code so that future versions of uml2tools can 
be used without affecting the extension and not requiring recoding of 
the extension.</tt><br>
<br>
<tt>This should obviously take place in a new plugin. I've looked at the 
examples in the help files (like helloworld etc) but have not worked 
out how to extend plugins like uml2tools.</tt><br>
<br>
<tt>Please could someone describe how I should set up a plugin to do all 
this?</tt><br>
<br>
<pre style="margin: 0em;">thanks in advance,</pre><br>
<tt>regards,
</tt></blockquote></blockquote><pre style="margin: 0em;"><br></pre><br>
]]></content:encoded>
		<pubDate>Thu, 03 Sep 2009 12:00:24 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00252.html</guid>
		<author>mavieni_nando@xxxxxxx (Ferdinando Mazzariello)</author>
	</item>


	<item>
		<title>[news.eclipse.modeling.mdt] Re: UML elements already stereotyped in the palette to drag and drop onto the editor</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00251.html</link>
		<description> </description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Ferdinando,</pre><br>
<tt>Please try to avoid cross posting the same question to so many different 
newsgroups.</tt><br>
<br>
<tt><br>Ferdinando Mazzariello wrote:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">Hi All,</pre><br>
<pre style="margin: 0em;">I'm working on a project that will extend UML2Tools. I need help for:</pre><br>
<tt>a) use existing uml2tools functionality (primarily the class and 
component diagram at the moment)</tt><br>
<br>
<tt>b) extend uml2tools functionality to add elements described using 
stereotypes (for instance a class element already stereotyped with a 
custom stereotype). these components will be added to the palette so 
that the they can be dragged and dropped onto the editor.</tt><br>
<br>
<tt>c) not alter uml2tools code so that future versions of uml2tools can 
be used without affecting the extension and not requiring recoding of 
the extension.</tt><br>
<br>
<tt>This should obviously take place in a new plugin. I've looked at the 
examples in the help files (like helloworld etc) but have not worked 
out how to extend plugins like uml2tools.</tt><br>
<br>
<tt>Please could someone describe how I should set up a plugin to do all 
this?</tt><br>
<br>
<pre style="margin: 0em;">thanks in advance,</pre><br>
<pre style="margin: 0em;">regards,</pre><br>
<pre style="margin: 0em;">Nando</pre><br>
</blockquote><br>
]]></content:encoded>
		<pubDate>Wed, 02 Sep 2009 14:33:22 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00251.html</guid>
		<author>Ed.Merks@xxxxxxx (Ed Merks)</author>
	</item>
	<item>
		<title>[news.eclipse.modeling.mdt] UML elements already stereotyped in the	palette to drag and drop onto the editor</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00250.html</link>
		<description>Hi All, I'm working on a project that will extend UML2Tools. I need help for: a) use existing uml2tools functionality (primarily the class and component diagram at the moment) b) extend uml2tools functionality to add elements described using stereotypes (f...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi All,</pre><br>
<pre style="margin: 0em;">I'm working on a project that will extend UML2Tools. I need help for:</pre><br>
<tt>a) use existing uml2tools functionality (primarily the class and component 
diagram at the moment)</tt><br>
<br>
<tt>b) extend uml2tools functionality to add elements described using 
stereotypes (for instance a class element already stereotyped with a 
custom stereotype). these components will be added to the palette so that 
the they can be dragged and dropped onto the editor.</tt><br>
<br>
<tt>c) not alter uml2tools code so that future versions of uml2tools can be 
used without affecting the extension and not requiring recoding of the 
extension.</tt><br>
<br>
<tt>This should obviously take place in a new plugin. I've looked at the 
examples in the help files (like helloworld etc) but have not worked out 
how to extend plugins like uml2tools.</tt><br>
<br>
<pre style="margin: 0em;">Please could someone describe how I should set up a plugin to do all this?</pre><br>
<pre style="margin: 0em;">thanks in advance,</pre><br>
<pre style="margin: 0em;">regards,</pre><br>
<pre style="margin: 0em;">Nando</pre><br>
<br>
]]></content:encoded>
		<pubDate>Wed, 02 Sep 2009 13:45:57 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00250.html</guid>
		<author>mavieni_nando@xxxxxxx (Ferdinando Mazzariello)</author>
	</item>


	<item>
		<title>[news.eclipse.modeling.mdt] Creating objects with multi-valued	children</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00249.html</link>
		<description>If I were to create a simple object that has a containment association with an N..N value (as shown in the &amp;quot;simple&amp;quot; model below), is there a proper place in which I can modify the generated code such that the contained objects are always of the correct num...</description>
		<content:encoded><![CDATA[<tt>If I were to create a simple object that has a containment association 
with an N..N value (as shown in the &quot;simple&quot; model below), is there a 
proper place in which I can modify the generated code such that the 
contained objects are always of the correct number?</tt><br>
<br>
<tt>In this example, could I modify one of the factories such that a &quot;Car&quot; 
object is always created with 4 &quot;Tire&quot; child objects?</tt><br>
<br>
<pre style="margin: 0em;">TIA</pre><br>
<tt>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br>
&lt;ecore:EPackage xmi:version=&quot;2.0&quot;<br>
   xmlns:xmi=&quot;<a  href="http://www.omg.org/XMI&quot">http://www.omg.org/XMI&quot</a>; 
xmlns:xsi=&quot;<a  href="http://www.w3.org/2001/XMLSchema-instance&quot">http://www.w3.org/2001/XMLSchema-instance&quot</a>;<br>
   xmlns:ecore=&quot;<a  href="http://www.eclipse.org/emf/2002/Ecore&quot">http://www.eclipse.org/emf/2002/Ecore&quot</a>; name=&quot;simple&quot;<br>
   nsURI=&quot;<a  href="http://nunjobiznezz.com/emf/simple&quot">http://nunjobiznezz.com/emf/simple&quot</a>; nsPrefix=&quot;simple&quot;&gt;<br>
 &lt;eClassifiers xsi:type=&quot;ecore:EClass&quot; name=&quot;Car&quot;&gt;<br>
   &lt;eStructuralFeatures xsi:type=&quot;ecore:EReference&quot; name=&quot;tires&quot; 
lowerBound=&quot;4&quot; upperBound=&quot;4&quot;<br>
       eType=&quot;#//Tires&quot; containment=&quot;true&quot;/&gt;<br>
 &lt;/eClassifiers&gt;<br>
 &lt;eClassifiers xsi:type=&quot;ecore:EClass&quot; name=&quot;Tires&quot;/&gt;<br>
&lt;/ecore:EPackage&gt;</tt><br>
<br>
<pre style="margin: 0em;"><br></pre><br>
]]></content:encoded>
		<pubDate>Tue, 01 Sep 2009 13:09:26 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00249.html</guid>
		<author>doug.bercot@xxxxxxx (Doug Bercot)</author>
	</item>


	<item>
		<title>[news.eclipse.modeling.mdt] Re: [Announce] Eclipse Modeling	Stammtisch in Berlin</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00248.html</link>
		<description> Thanks, I'm going to be there as my Babel talk (and in a short form most likely the STEM presentation, too, not to mention that according to some scientists Ten Thousands of people in Europe and America might be sick with SwineFlu, the most relevant use c...</description>
		<content:encoded><![CDATA[<table width="100%"><tr><td bgcolor="#ffffff" style="background-color: #ffffff; color: #000000; "><font color="#000000">


<DIV><FONT size=2 face=Arial>Thanks, I'm going to be there as my Babel talk (and 
in a short form most likely the STEM presentation, too, not to mention that 
according to some scientists Ten Thousands of people in Europe and America might 
be sick with SwineFlu, the most relevant use case for STEM at the moment 
;-)</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>I spoke with Doug Clarke from EclipseLink at 
epicenter 2009 last week. And he also mentioned some interesting Metamodel 
aspects of EclipseLink where it's connected with Eclipse Modeling.</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>I shall discuss with our BOM experts responsible 
for Business Object Modeling. At least one of them is likely to join me at ESE, 
so ideally we could discuss this further there.</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>(also about possibilities in the Mobile Expert 
Group, after all our RCP and Modeling work's with a Vodafone partner 
;-)</FONT></DIV>
<BLOCKQUOTE 
style="BORDER-LEFT: #000000 2px solid; PADDING-LEFT: 5px; PADDING-RIGHT: 0px; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px" 
dir=ltr>
  <DIV>"Ian Skerrett" &lt;<A 
  href="mailto:ian.skerrett@xxxxxxxxxxx">ian.skerrett@xxxxxxxxxxx</A>&gt; 
  schrieb im Newsbeitrag <A 
  href="news:h6jhha$8sn$1@xxxxxxxxxxxxxxxxx">news:h6jhha$8sn$1@xxxxxxxxxxxxxxxxx</A>...</DIV>
  <DIV><FONT size=2 face=Arial>Eclipse Summit Europe always has great modeling 
  content.&nbsp; It is coming up October 27-29 in Ludwigsburg 
  Germany.</FONT></DIV>
  <BLOCKQUOTE 
  style="BORDER-LEFT: #000000 2px solid; PADDING-LEFT: 5px; PADDING-RIGHT: 0px; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px" 
  dir=ltr>
    <DIV>"Werner Keil" &lt;<A 
    href="mailto:werner.keil@xxxxxxx">werner.keil@xxxxxxx</A>&gt; wrote in 
    message <A 
    href="news:h6hb25$e9c$1@xxxxxxxxxxxxxxxxx">news:h6hb25$e9c$1@xxxxxxxxxxxxxxxxx</A>...</DIV>
    <DIV><FONT size=2 face=Arial>Hi Ed,</FONT></DIV>
    <DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
    <DIV><FONT size=2 face=Arial>Anything similar planned for Vienna or other 
    European cities?</FONT></DIV>
    <DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
    <DIV><FONT size=2 face=Arial>There's great interest and initiative, at least 
    from our Austrian Mobile Project(s) at Mobilkom in Business Object Modeling 
    and generating code, </FONT></DIV>
    <DIV><FONT size=2 face=Arial>including BOM i18n (Multilingual Models or 
    automatic translation during generation !) </FONT></DIV>
    <DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
    <DIV><FONT size=2 face=Arial>Cheers,</FONT></DIV>
    <DIV><FONT size=2 
face=Arial>Werner</FONT></DIV></BLOCKQUOTE></BLOCKQUOTE>
</font></td></tr></table>]]></content:encoded>
		<pubDate>Mon, 31 Aug 2009 21:13:59 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00248.html</guid>
		<author>werner.keil@xxxxxxx (Werner Keil)</author>
	</item>


	<item>
		<title>[news.eclipse.modeling.mdt] Re: [Announce] Eclipse Modeling	Stammtisch in Berlin</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00247.html</link>
		<description> Eclipse Summit Europe always has great modeling content.  It is coming up October 27-29 in Ludwigsburg Germany. </description>
		<content:encoded><![CDATA[<table width="100%"><tr><td bgcolor="#ffffff" style="background-color: #ffffff; color: #000000; "><font color="#000000">


<DIV><FONT face=Arial size=2>Eclipse Summit Europe always has great modeling 
content.&nbsp; It is coming up October 27-29 in Ludwigsburg 
Germany.</FONT></DIV>
<BLOCKQUOTE dir=ltr 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV>"Werner Keil" &lt;<A 
  href="mailto:werner.keil@xxxxxxx">werner.keil@xxxxxxx</A>&gt; wrote in message 
  <A 
  href="news:h6hb25$e9c$1@xxxxxxxxxxxxxxxxx">news:h6hb25$e9c$1@xxxxxxxxxxxxxxxxx</A>...</DIV>
  <DIV><FONT face=Arial size=2>Hi Ed,</FONT></DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2>Anything similar planned for Vienna or other 
  European cities?</FONT></DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2>There's great interest and initiative, at least 
  from our Austrian Mobile Project(s) at Mobilkom in Business Object Modeling 
  and generating code, </FONT></DIV>
  <DIV><FONT face=Arial size=2>including BOM i18n (Multilingual Models or 
  automatic translation during generation !) </FONT></DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2>Cheers,</FONT></DIV>
  <DIV><FONT face=Arial size=2>Werner</FONT></DIV></BLOCKQUOTE>
</font></td></tr></table>]]></content:encoded>
		<pubDate>Thu, 20 Aug 2009 13:02:49 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00247.html</guid>
		<author>ian.skerrett@xxxxxxx (Ian Skerrett)</author>
	</item>
	<item>
		<title>[news.eclipse.modeling.mdt] Re: [Announce] Eclipse Modeling	Stammtisch in Berlin</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00246.html</link>
		<description> </description>
		<content:encoded><![CDATA[<table width="100%"><tr><td bgcolor="#ffffff" style="background-color: #ffffff; color: #000000; "><font color="#000000">



Werner,<br>
<br>
The event yesterday was fun.<a
 href="http://ed-merks.blogspot.com/2009/08/berlins-eclipse-modeling-stammtisch.html"><br>
</a>
<blockquote><a
 href="http://ed-merks.blogspot.com/2009/08/berlins-eclipse-modeling-stammtisch.html">http://ed-merks.blogspot.com/2009/08/berlins-eclipse-modeling-stammtisch.html</a><br>
</blockquote>
Anyone can arrange an event like this.&nbsp; I can help you to make more
people aware of it.&nbsp;&nbsp; Just send me a direct note, ed.merks at
gmail.com, with your ideas and we can go from there.<br>
<br>
Cheers,<br>
Ed<br>
<br>
<br>
Werner Keil wrote:
<blockquote cite="" type="cite">
  
  
  
  <div><font face="Arial" size="2">Hi Ed,</font></div>
  <div>&nbsp;</div>
  <div><font face="Arial" size="2">Anything similar planned for Vienna
or other European cities?</font></div>
  <div>&nbsp;</div>
  <div><font face="Arial" size="2">There's great interest and
initiative, at least from our Austrian Mobile Project(s) at Mobilkom in
Business Object Modeling and generating code, </font></div>
  <div><font face="Arial" size="2">including BOM i18n (Multilingual
Models or automatic translation during generation !) </font></div>
  <div>&nbsp;</div>
  <div><font face="Arial" size="2">Cheers,</font></div>
  <div><font face="Arial" size="2">Werner</font></div>
</blockquote>


</font></td></tr></table>]]></content:encoded>
		<pubDate>Thu, 20 Aug 2009 07:38:22 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00246.html</guid>
		<author>Ed.Merks@xxxxxxx (Ed Merks)</author>
	</item>


	<item>
		<title>[news.eclipse.modeling.mdt] Re: [Announce] Eclipse Modeling	Stammtisch in Berlin</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00245.html</link>
		<description> Hi Ed,   Anything similar planned for Vienna or other European cities?   There's great interest and initiative, at least from our Austrian Mobile Project(s) at Mobilkom in Business Object Modeling and generating code, including BOM i18n (Multilingual Mode...</description>
		<content:encoded><![CDATA[<table width="100%"><tr><td bgcolor="#ffffff" style="background-color: #ffffff; color: #000000; "><font color="#000000">


<DIV><FONT size=2 face=Arial>Hi Ed,</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>Anything similar planned for Vienna or other 
European cities?</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>There's great interest and initiative, at least 
from our Austrian Mobile Project(s) at Mobilkom in Business Object Modeling and 
generating code, </FONT></DIV>
<DIV><FONT size=2 face=Arial>including BOM i18n (Multilingual Models or 
automatic translation during generation !) </FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>Cheers,</FONT></DIV>
<DIV><FONT size=2 face=Arial>Werner</FONT></DIV>
</font></td></tr></table>]]></content:encoded>
		<pubDate>Wed, 19 Aug 2009 16:59:48 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.modeling.mdt/msg00245.html</guid>
		<author>werner.keil@xxxxxxx (Werner Keil)</author>
	</item>

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