0

can somebody please explains what is a high level class diagram. As far as I know class diagram shows the association between the classes but what about high level class diagram??

Noor
  • 19,638
  • 38
  • 136
  • 254

3 Answers3

1

Ok, I knew what this means, a Class Diagram contains many details. A high-level class diagram is a simple class diagram reflecting only initial domain knowledge

Noor
  • 19,638
  • 38
  • 136
  • 254
0

What's the context? Class diagrams in themselves are pretty "high-level", in that they only show classes and methods rather than algorithms and other implementation details. It might just be an adjective. Or, you might be looking for something more like a block-level diagram which shows components of a system and how they interact.

Bleaourgh
  • 1,276
  • 9
  • 3
  • I'm doing a project, in my design, I've placed a class diagram but my supervisor said to me to place a high level diagram in analysis – Noor Mar 25 '11 at 22:47
0

I often use the term "high-level", or more usually, "top-level" diagram for the very highest level class diagram I make for a system. Usually this will show as many of the most important packages as will reasonably fit, along with some classes that give the best idea of what functionality the classes in that package provide. From there I can do class diagrams of each package, and so on.

Depending on the type of system and what your supervisor want to see, you may be better off creating a component diagram.

Mike G
  • 746
  • 5
  • 19