Hello, I have started to study UML standard and would need little help with two things I cannot find. I understand that in the class model I should design classes and their relations like:
Customer<>--->(*1)Items ordered
1)Is it correct that we design only "our" custom classes and do not care about classes used inside like Dictionary,List....?
2)What kind of relation is between server and clients (if each client is a class)? It is simple associative relation ServerClass---->*Client class or agregation because client classes are created and maintained by server class? I guess its agregation but then I cannot think of any associative relation since there is always some master class.
Thank you!