In the Class Diagram what is the difference between Border, Entity and Control Classes?

1

I started to specify a UML project and the tool I'm using has Border Classes, Entity Classes, and Control Classes to do the Class Diagrams and Sequence Diagrams, what is the difference between these class types at the time of making the specification?

    
asked by anonymous 09.10.2016 / 23:00

1 answer

3

Entity Class : Models objects that behavior and information should be stored.

Border Class (or Interface) : Models the interaction between the system and its operations.

Control Class : Models the specific control behavior for one or more use cases.

References:

10.10.2016 / 01:07