About 468,000 results
Open links in new tab
  1. PHP UML Generator - Stack Overflow

    Dec 26, 2008 · I just tried the UML class diagram generating with the Sparx EA's reverse engineering method from PHP source code, and it worked like a charm, I was shocked how fine this worked.

  2. How can I describe a pointer to class in a UML class diagram?

    Feb 17, 2014 · A plain C++ pointer directly corresponds to a reference property in a UML class diagram, as shown in the following diagram: Such a reference property expresses a uni-directional (binary) …

  3. UML Class Diagram with Struct Defined Inside Class

    Sep 8, 2023 · When creating 1 UML class per «struct», I am sceptical that this actually improves the overall readability in the overall UML diagram. However, if this is demanded, would it look like the …

  4. In UML class diagrams, what are Boundary Classes, Control Classes, and ...

    Feb 27, 2022 · In the class diagram, there are model elements known as Boundary Class, Control Class, and Entity Class. However, I can't find a good definition of them, but I did find this site on UML …

  5. How to show usage of static methods UML Class Diagram

    Jan 7, 2018 · 31 How do i show the use of static methods in a UML class diagram? class A{ public static void test(){ } } class B{ public void b(){ A.test(); } } How would a class diagram look like, which shows …

  6. How to represent class instances in UML? - Stack Overflow

    Dec 27, 2015 · I have a class diagram for my application which consists of several compositions and aggregations. Now I want to have diagram based on the class diagram which shows class instances. …

  7. UML class diagram enum - Stack Overflow

    I am modeling a class diagram. An attribute of a class is an enumeration. How do I model this? Normally you do something like this: - name : string But how does one do this with an enum?

  8. UML relationships - dashed line vs solid line - Stack Overflow

    Mar 20, 2019 · Try to never use a dependency in a class diagram because it usually means that you aren't specific enough. Always aim for associations, realisations etc. Only use realisations (in my …

  9. What's the best way to generate a UML diagram from Python source …

    May 3, 2015 · A colleague is looking to generate UML class diagrams from heaps of Python source code. He's primarily interested in the inheritance relationships, and mildly interested in compositional …

  10. uml - How to represent an attribute's data type as an array of objects ...

    Dec 13, 2014 · How to represent an attribute's data type as an array of objects on class diagram? Asked 10 years, 11 months ago Modified 3 years ago Viewed 170k times