In UML class diagrams, what are Boundary Classes, Control Classes, and Entity Classes?

前端 未结 5 1242
萌比男神i
萌比男神i 2020-12-07 07:15

I\'m now using NetBeans as my IDE-of-choice, and it has a plugin for UML modeling. In the class diagram, there are model elements known as Boundary Class,

5条回答
  •  星月不相逢
    2020-12-07 08:02

    These are class stereotypes used in analysis.

    • boundary classes are ones at the boundary of the system - the classes that you or other systems interact with

    • entity classes classes are your typical business entities like "person" and "bank account"

    • control classes implement some business logic or other

提交回复
热议问题