python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to show common .h or .pph header file in UML class diagram?
Suppose that we have some common header files (e.g. common.h or typedefs.h) which contain the project's common typedefs, definitions, etc.
Also, I want to use these header files throughout my all clas...
Anmk
Votes: 0
Answers: 2
What are Control classes, Entity Classes and Boundary Classes in UML?
In the class diagram, there are model classes as Control classes, Entity Classes, and Boundary Classes. I try to find a good definition for them, I found this site but it isn't that much clear for me...
Asith Amarasekara
Votes: 0
Answers: 0
How to represent two different types of data being returned by a class method in a UML diagram?
I have the following method:
def getInvoiceById(self, id):
for invoice in self.invoices:
if invoice.id == id:
return invoice
return False
inside a cl...
ExtrovetedProgrammer
Votes: 0
Answers: 1
UML Class Diagram - Two abstract classes?
I'm creating an UML class diagram but I'm totally stuck on the relation between employee, customer and person.
The requirements ask to store data of employees and customers, which they should be a su...
Ale__ssio
Votes: 0
Answers: 1