Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to know what it would be if I had a Ticket that holds one TicketType but a ticket type can be part of many Tickets.

Would the relationship be an Aggregation, where the open diamond is at the Ticket class, or is it an association where the arrow is pointing to the TicketType?

share|improve this question

1 Answer

up vote 1 down vote accepted

My first thought was "Who cares?" You're trying to express a relationship between two objects for yourself or other developers. You can't even articulate the difference; what are the chances that others will be able to do it?

The association with open diamond says the Ticket owns a TicketType, but the type isn't deleted if the Ticket goes away.

I'm not sure what additional information this provides over and above the simple arrow for association.

I think it's important not to be too hung up on these things. Don't get too carried away with UML.

share|improve this answer
OK thanks, it does make sense, that if a Ticket is deleted the Ticket Types are still there which should be. – Sandeep Bansal Apr 22 '11 at 19:59
+1 @duffymo. The UML aggregation association causes more confusion than its worth. The important questions are cardinality (must there be at least one? Can there be more than one?) and the delete behaviour. My advice would always be to answer those questions first - and stick with a simple binary association. Aggregation only has one useful property, and that only occurs in recursive aggregates. – sfinnie Apr 22 '11 at 20:59
Thanks for the advice, sfinnie. I think my answer is quite adequate as it stands. Maybe you're confused about aggregation; I'm not. You're certainly free to offer your own. – duffymo Apr 22 '11 at 21:05
My intention was to agree with you, not offer you advice. Hence +1. Advice - if there was any - was for OP. Namely, don't get hung up on aggregation. Concentrate on the two questions that matter (cardinality + delete behaviour). – sfinnie Apr 22 '11 at 21:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.