﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>CapableObjects forum » ECO » General discussions  » auto creation of required association object</title><generator>InstantForum.NET 2012-1</generator><description>CapableObjects forum</description><link>http://www.capableobjects.com/apps/InstantForum414/</link><webMaster>CapableObjects forum</webMaster><lastBuildDate>Fri, 18 May 2012 04:16:37 GMT</lastBuildDate><ttl>20</ttl><item><title>auto creation of required association object</title><link>http://www.capableobjects.com/apps/InstantForum414/FindPost1242.aspx</link><description>Is there a way to tell eco to automatically create an association role when its multiplicity is 1 or greater.  I have a a Person (0..1)---- PersonName (1) association.  The PersonName is required to be one.  It seems like eco should automatically create the PersonName instance whenever a new Person is created.  It does not appear to do this.  Is there a way to tell eco to create the role automatically?&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Brian</description><pubDate>Wed, 10 Dec 2008 05:59:06 GMT</pubDate><dc:creator>brian</dc:creator></item><item><title>RE: auto creation of required association object</title><link>http://www.capableobjects.com/apps/InstantForum414/FindPost1392.aspx</link><description>[quote][b]Jonas Hogstrom (2008-12-08)[/b][hr]Please enter that suggestion as a feature request for Eco5 (in teh featurerequest/bug database at bugs.capableobjects.com).[/quote] &lt;P&gt;Done.  Here is a link to the request:&lt;/P&gt;&lt;P&gt;&lt;A href="http://magpie.no-ip.com/mantis/view.php?id=661"&gt;http://magpie.no-ip.com/mantis/view.php?id=661&lt;/A&gt;&lt;P&gt;.</description><pubDate>Wed, 10 Dec 2008 05:59:06 GMT</pubDate><dc:creator>brian</dc:creator></item><item><title>RE: auto creation of required association object</title><link>http://www.capableobjects.com/apps/InstantForum414/FindPost1382.aspx</link><description>Please enter that suggestion as a feature request for Eco5 (in teh featurerequest/bug database at bugs.capableobjects.com).</description><pubDate>Mon, 08 Dec 2008 17:25:03 GMT</pubDate><dc:creator>Jonas Hogstrom</dc:creator></item><item><title>RE: auto creation of required association object</title><link>http://www.capableobjects.com/apps/InstantForum414/FindPost1376.aspx</link><description>[quote][b]Peter Morris (2008-12-07)[/b][hr]The main reason that it is better is because it is predictable.  You know exactly when that object will get created, whereas with a lazy-create you have no idea at all when the calling program is going to instantiate it, and as a result the calling program needs to know exactly when it can or cannot read that value.  You end up not being able to evaluate simple OCL statements such as&lt;P&gt;self.someAssociation.somethingElse&lt;/P&gt;&lt;P&gt;without then having to update the database just in case, but you might not be able to update the database yet because the user might be making edits which are not yet valid.  You also have the problem that Scot (I think it was) mentioned, two people might create the object at the same time and update the DB.  At least within the constructor no two people can create the same object at the same time.[/quote]&lt;P&gt;As I mentioned before I get the lazy-create problems.  What I am suggesting is having an option in EM for an association end that determines whether a new object instance is created immediately.  Basically does the same thing as putting the code in the constructor.  I really don't like adding code in the middle of generated code.  A simple option on the EM association end configuration would eliminate the need to add this code.  The option could be added to the style comboBox as "Composition - auto create".&lt;P&gt;Regards,&lt;P&gt;Brian</description><pubDate>Mon, 08 Dec 2008 07:56:33 GMT</pubDate><dc:creator>brian</dc:creator></item><item><title>RE: auto creation of required association object</title><link>http://www.capableobjects.com/apps/InstantForum414/FindPost1366.aspx</link><description>[quote][b]brian (2008-12-02)[/b][hr]I'm not so sure I agree that putting code in a contructor that is auto generated by EM is better than having an option in the association to automatically create the object.[/quote]&lt;/P&gt;&lt;P&gt;The main reason that it is better is because it is predictable.  You know exactly when that object will get created, whereas with a lazy-create you have no idea at all when the calling program is going to instantiate it, and as a result the calling program needs to know exactly when it can or cannot read that value.  You end up not being able to evaluate simple OCL statements such as&lt;/P&gt;&lt;P&gt;self.someAssociation.somethingElse&lt;/P&gt;&lt;P&gt;without then having to update the database just in case, but you might not be able to update the database yet because the user might be making edits which are not yet valid.  You also have the problem that Scot (I think it was) mentioned, two people might create the object at the same time and update the DB.  At least within the constructor no two people can create the same object at the same time.</description><pubDate>Sun, 07 Dec 2008 11:50:46 GMT</pubDate><dc:creator>Peter Morris</dc:creator></item><item><title>RE: auto creation of required association object</title><link>http://www.capableobjects.com/apps/InstantForum414/FindPost1307.aspx</link><description>Thanks for the answers.  I get the point on the second option. :)  &lt;/P&gt;&lt;P&gt;I'm not so sure I agree that putting code in a contructor that is auto generated by EM is better than having an option in the association to automatically create the object.  I don't like writing code when an option in the modeler would do it for me.  Maybe I'm just lazy. :)  Come to think of it, if I wasn't lazy, I'd probably wouldn't be using ECO and would be writing my own SQL and code to hydrate and dehydrate my objects. :)</description><pubDate>Tue, 02 Dec 2008 07:55:49 GMT</pubDate><dc:creator>brian</dc:creator></item><item><title>RE: auto creation of required association object</title><link>http://www.capableobjects.com/apps/InstantForum414/FindPost1281.aspx</link><description>[quote][b]Peter Morris (2008-12-01)[/b][hr][quote][b]brian (2008-12-01)[/b][hr]&lt;FONT face=Arial size=2&gt;Another option would be to automatically create a new association instance whenever the association role is accessed and the value is null. If the association is a 1..1 composition association, I think this would be the preferred behavior.&lt;/FONT&gt;Brian[/quote]&lt;br&gt;...&lt;br&gt;There are so many reasons you don't want to do this :-)[/quote]&lt;br&gt;&lt;br&gt;Another is that you may end up with multiple ecospaces trying to create the new object. Suppose that Client1 creates the first object, but never accesses the association. Client 2 and 3 find the object and navigates the association, they will now both create the new object...&lt;br&gt;&lt;br&gt;You have several options as pointed out already:&lt;br&gt;* use the constructor and implement in code (my favourite) &lt;br&gt;* use an effect or entry action on the initial transition in a state machine and implement in EAL.</description><pubDate>Mon, 01 Dec 2008 11:56:51 GMT</pubDate><dc:creator>Jonas Hogstrom</dc:creator></item><item><title>RE: auto creation of required association object</title><link>http://www.capableobjects.com/apps/InstantForum414/FindPost1270.aspx</link><description>[quote][b]brian (2008-12-01)[/b][hr]&lt;FONT face=Arial size=2&gt;Another option would be to automatically create a new association instance whenever the association role is accessed and the value is null.  If the association is a 1..1 composition association, I think this would be the preferred behavior.&lt;/FONT&gt;Brian[/quote]&lt;/P&gt;&lt;P&gt;I would strongly advise against you doing this.  When you set a property you expect side affects, when you read it you don't.  You are introducing a side affect where none would be expected.  As a consequence you would have to ensure that anywhere within your application that you read this property you deal with the created object accorindly.  &lt;/P&gt;&lt;P&gt;01: Start/Rollback a transaction.  This could be a pain because you might already be in a transaction within your business class logic.&lt;/P&gt;&lt;P&gt;02: Start/Undo an undo block.  This would be the best option, but is still a lot of work to add just to read an object.&lt;/P&gt;&lt;P&gt;Otherwise you'd have to do something like this in the property getter&lt;BR&gt;&lt;/P&gt;&lt;P&gt;01: Start undo block&lt;BR&gt;02: Create it&lt;BR&gt;03: UpdateDatabaseWithList(objects in the undo block)&lt;/P&gt;&lt;P&gt;This would force you to have to put the embedding in the child object and not the parent object, which isn't always desirable.&lt;/P&gt;&lt;P&gt;There are so many reasons you don't want to do this :-)</description><pubDate>Mon, 01 Dec 2008 11:07:47 GMT</pubDate><dc:creator>Peter Morris</dc:creator></item><item><title>RE: auto creation of required association object</title><link>http://www.capableobjects.com/apps/InstantForum414/FindPost1266.aspx</link><description>[quote][b]brian (2008-12-01)[/b][hr]&lt;br&gt;Ecocould add a new "AutoCreate"option on the association that would signal it to create a new instance automatically. Granted the amount of code this would save is minor, but I really like being able to do as much as possible outside of code.&lt;br&gt;[/quote]&lt;br&gt;I'd regret this as a feature on the same reason (granted amount of code). ECO should not solve any desire of ours, especialy when it is already easy to do.&lt;br&gt;&lt;br&gt;But you can use EAL to create new instances within a state machine (self.Association := MyClass.Create).&lt;br&gt;&lt;br&gt;[quote][b]brian (2008-12-01)[/b][hr]&lt;br&gt;Another option would be to automatically create a new association instance whenever the association role is accessed and the value is null. If the association is a 1..1 composition association, I think this would be the preferred behavior.[/quote]&lt;br&gt;Mark association as HasUserCode and create it there.&lt;br&gt;It's already pretty easy to do.&lt;br&gt;&lt;br&gt;Cheers.</description><pubDate>Mon, 01 Dec 2008 08:17:50 GMT</pubDate><dc:creator>nagir</dc:creator></item><item><title>RE: auto creation of required association object</title><link>http://www.capableobjects.com/apps/InstantForum414/FindPost1264.aspx</link><description>&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;P&gt;Thanks for the answers.&lt;/P&gt;&lt;P&gt;Eco could add a new "AutoCreate" option on the association that would signal it to create a new instance automatically.  Granted the amount of code this would save is minor, but I really like being able to do as much as possible outside of code.&lt;/P&gt;&lt;P&gt;Another option would be to automatically create a new association instance whenever the association role is accessed and the value is null.  If the association is a 1..1 composition association, I think this would be the preferred behavior.&lt;/P&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;P&gt;Brian</description><pubDate>Mon, 01 Dec 2008 04:31:46 GMT</pubDate><dc:creator>brian</dc:creator></item><item><title>RE: auto creation of required association object</title><link>http://www.capableobjects.com/apps/InstantForum414/FindPost1251.aspx</link><description>Thomas is correct, it is the right place to perform such a task.  ECO has no way of knowing when an associated object should be auto-created or will be assigned by the user from an existing instance.  &lt;br&gt;&lt;br&gt;I just wanted to say that in addition to creating this owned object I often set the SaveAction to Freeze, so that it cannot be removed later.</description><pubDate>Sun, 30 Nov 2008 13:16:27 GMT</pubDate><dc:creator>Peter Morris</dc:creator></item><item><title>RE: auto creation of required association object</title><link>http://www.capableobjects.com/apps/InstantForum414/FindPost1250.aspx</link><description>I place the code in the constructor of the main class:&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;FONT face=Calibri&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: blue; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;public&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: black; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt; Class1(&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: #2b91af; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;IEcoServiceProvider&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: black; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt; serviceProvider) : &lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: blue; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;base&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: black; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;(serviceProvider){&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: blue; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;try&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: #1f5080; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: black; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;&lt;FONT face=Calibri&gt;{&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;FONT face=Calibri&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: green; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;// Place user code ONLY here&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: #1f5080; FONT-FAMILY: 'Verdana','sans-serif'; mso-ansi-language: EN-US; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: #1f5080; FONT-FAMILY: 'Verdana','sans-serif'; mso-ansi-language: EN-US; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;FONT face=Calibri&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: #111111; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;Class2 class2 = new Class2( serviceProvider );&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: #1f5080; FONT-FAMILY: 'Verdana','sans-serif'; mso-ansi-language: EN-US; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;FONT face=Calibri&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: #111111; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;class2.Class1 = this;&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: #1f5080; FONT-FAMILY: 'Verdana','sans-serif'; mso-ansi-language: EN-US; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: #1f5080; FONT-FAMILY: 'Verdana','sans-serif'; mso-ansi-language: EN-US; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: black; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;&lt;FONT face=Calibri&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;FONT face=Calibri&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: blue; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;catch&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: black; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt; (System.&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: #2b91af; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;Exception&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: black; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;)&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: black; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;&lt;FONT face=Calibri&gt;{&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;FONT face=Calibri&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: blue; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;this&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: black; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;.Deinitialize(serviceProvider);&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;FONT face=Calibri&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: blue; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;throw&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: black; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;;&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: #1f5080; FONT-FAMILY: 'Verdana','sans-serif'; mso-ansi-language: EN-US; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;FONT face=Calibri&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: black; mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;}&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: #1f5080; FONT-FAMILY: 'Verdana','sans-serif'; mso-ansi-language: EN-US; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 10pt; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: #1f5080; FONT-FAMILY: 'Verdana','sans-serif'; mso-ansi-language: EN-US; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 10pt; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: #1f5080; FONT-FAMILY: 'Verdana','sans-serif'; mso-ansi-language: EN-US; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE"&gt;This enures that a Class2-object is always created and linked when you create a Class1-object.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;</description><pubDate>Sun, 30 Nov 2008 13:02:43 GMT</pubDate><dc:creator>ThomasWolf</dc:creator></item></channel></rss>
