11
votes
8answers
1k views
Class diagram examples for RPG (Role Playing Game)
Does anyone know where I can find examples of class diagrams for RP game development? Something similar to here would be quite useful. I'm not looking for things I can slavishly copy, but just for …
4
votes
5answers
3k views
PHP UML Generator
How do I generate UML diagram based on existing classes in PHP?
2
votes
2answers
92 views
Abstract Factory Question
Hello,
I am trying to understand the Abstract Factory design pattern. I am having a lot of trouble with it. I am trying to use the following example to develop a UML class diagram:
Car designers can …
2
votes
2answers
347 views
PHP Class diagram that generates the code
Im looking for an application with the following funcionalities:
Creates class diagrams
Generates code of the structure that you just diagram
The class structure in PHP.
Thanks alot in advance, …
2
votes
3answers
383 views
How do I validate the class diagram for a given domain?
I am working on car dealership business domain model/UML class diagram.
I am new to modeling, so I would like to know how to validate the class diagram. It's very important for me to have an …
1
vote
2answers
70 views
Modelling versioning when versions are related
Hi, I'm modelling a class diagram and I'm absolutely stuck with this issue:
My new web application has "cards" (entries about a subject) which can be modified by the users, à là wiki. But unlike …
1
vote
4answers
381 views
.NET Class Diagrams without using the designer
In .NET is it possible to generate class diagrams (.cd) programmatically (C#)? If so how?
PD: Obviously I'm not asking for directions of how to generate this using the IDE. I know that I can drag and …
1
vote
2answers
67 views
What’s the best way to represent a networked connection in a UML class diagram?
The title says it all. Repeated here: What's the best way to represent a networked connection in a UML class diagram?
1
vote
6answers
1k views
Creating a C++ Class Diagram
In Visual Studio .NET projects you can add a "Class Diagram" to the project which renders a visual representation of all namespaces, classes, methods, and properties. Is there any way to do this for …
0
votes
1answer
14 views
Should I place a built in Class (such as Date) as a separate class in my UML.
I'm creating a UML Class Diagram for an inventory system as part of a class assignment. I used members such as String and Date in a few of my Classes. My group members are saying that I should include …
0
votes
4answers
157 views
Relationships in a UML class diagram
I have an application that models a tree, with classes Tree, Node and Edge (I need the Edge class!), and I'm not sure how to represent the relationships in the class diagram for this. I've read other …
0
votes
0answers
52 views
How can you properly model Nested/Sub Classes in UML?
I've been playing around with UML
My primary background is that of a sysadmin, not as a programmer.
In order to get a better understanding of class models I've been trying to do map out the …
0
votes
1answer
82 views
Can anyone recommend a concurrent, real-time diagramming/flowchart collaboration tool?
I'm looking to work with others to quickly build a rather large class flow diagram that may or may not be strict UML. Can anyone recommend a networked, concurrent collaboration tool for such a task? …
0
votes
5answers
2k views
In UML class diagrams, what are Boundary Classes, Control Classes, and Entity Classes?
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", "Control Class", and "Entity Class". …
0
votes
5answers
2k views
UML class diagram association - how, when and why?
I usually get so confused with UML and this situation is no different.
Let's say I have an interface IAnimal, class Food and Cat:
interface IAnimal {
void Feed(Food food);
}
class Cat : IAnimal …
