Connecting Tech Pros Worldwide Help | Site Map

Implementing a UML association

 
LinkBack Thread Tools Search this Thread
  #1  
Old August 8th, 2008, 05:25 AM
=?Utf-8?B?UGFvbG8=?=
Guest
 
Posts: n/a
Default Implementing a UML association

I have 3 classes - their associations are modelled in UML thus:

Class A: 1 --1..* Class B: 1 --1..* Class C

How would I implement this in C#?

Thanks



  #2  
Old August 9th, 2008, 12:05 AM
=?UTF-8?B?QXJuZSBWYWpow7hq?=
Guest
 
Posts: n/a
Default Re: Implementing a UML association

Paolo wrote:
Quote:
I have 3 classes - their associations are modelled in UML thus:
>
Class A: 1 --1..* Class B: 1 --1..* Class C
>
How would I implement this in C#?
Let A contain a List<Band B contain a List<C>.

And make the code enforce minimum of 1 element,
if that is really important.

Arne
  #3  
Old August 10th, 2008, 02:45 AM
=?Utf-8?B?UGFvbG8=?=
Guest
 
Posts: n/a
Default Re: Implementing a UML association

Arne: thank you for the reply. I am new to C# so sorry if this next question
is a bit basic. When I create an instance of Class A I would create a
List<class Bas part of the instantiation. As I create a number of instances
of class B in my application presumably I then have to Add them to the
List<class Bin the class A object?

"Arne Vajhøj" wrote:
Quote:
Paolo wrote:
Quote:
I have 3 classes - their associations are modelled in UML thus:

Class A: 1 --1..* Class B: 1 --1..* Class C

How would I implement this in C#?
>
Let A contain a List<Band B contain a List<C>.
>
And make the code enforce minimum of 1 element,
if that is really important.
>
Arne
>
  #4  
Old August 10th, 2008, 03:05 AM
=?UTF-8?B?QXJuZSBWYWpow7hq?=
Guest
 
Posts: n/a
Default Re: Implementing a UML association

Paolo wrote:
Quote:
"Arne Vajhøj" wrote:
Quote:
>Paolo wrote:
Quote:
>>I have 3 classes - their associations are modelled in UML thus:
>>>
>>Class A: 1 --1..* Class B: 1 --1..* Class C
>>>
>>How would I implement this in C#?
>Let A contain a List<Band B contain a List<C>.
>>
>And make the code enforce minimum of 1 element,
>if that is really important.
I am new to C# so sorry if this next question
is a bit basic. When I create an instance of Class A I would create a
List<class Bas part of the instantiation. As I create a number of
instances
Quote:
of class B in my application presumably I then have to Add them to the
List<class Bin the class A object?
The list should be private, so either the B's should be created and
added inside A or something outside A should create them and
call a method in A that does the add.

Arne
  #5  
Old August 10th, 2008, 03:55 AM
=?Utf-8?B?UGFvbG8=?=
Guest
 
Posts: n/a
Default Re: Implementing a UML association

Arne: thank you. I shall proceed as you recommend.

"Arne Vajhøj" wrote:
Quote:
Paolo wrote:
Quote:
"Arne Vajhøj" wrote:
Quote:
Paolo wrote:
>I have 3 classes - their associations are modelled in UML thus:
>>
>Class A: 1 --1..* Class B: 1 --1..* Class C
>>
>How would I implement this in C#?
Let A contain a List<Band B contain a List<C>.
>
And make the code enforce minimum of 1 element,
if that is really important.
I am new to C# so sorry if this next question
is a bit basic. When I create an instance of Class A I would create a
List<class Bas part of the instantiation. As I create a number of
instances
Quote:
of class B in my application presumably I then have to Add them to the
List<class Bin the class A object?
>
The list should be private, so either the B's should be created and
added inside A or something outside A should create them and
call a method in A that does the add.
>
Arne
>
 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,662 network members.