About 440,000 results
Open links in new tab
  1. What does a diamond sign signify in UML class diagrams?

    The great book GoF has usages of both of these two kinds of diagrams. I want to understand what does the diamond signify in the second case, and which one of these two gives a …

  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 …

  3. uml - How to represent an attribute's data type as an array of …

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

  4. oop - Explanation of the UML arrows - Stack Overflow

    Dec 9, 2009 · 345 I have recently been studying UML and drawing simple diagrams with ordinary plain arrows between classes, but I know it's not enough. There are plenty of other arrows: …

  5. 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 …

  6. constructor with parameters in UML class diagram

    How would you create an uml class diagram for constructors with parameters? For default constructors (no parameters) you do policyholder() for the diagram and in the pseudo-code …

  7. Shortcut for denoting or implying getters and setters in UML class ...

    Jan 27, 2015 · In a UML class diagram, if a class has 5 private attributes that need to be mutable and readable, the UML gets pretty ugly with 10 get/set methods even without any of the class' …

  8. 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 …

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

    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 …

  10. How to represent Callback in UML Class Diagram - Stack Overflow

    Dec 12, 2013 · A class diagram does not represent method functionality. Method functionality is visualized with a sequence or a Collaboration diagram. In your example, the sequence …