┌───────────────────────────────────────────────────────────────────────────────────────┐ │methodOne(...) │ ├───────────────────────────────────────────────────────────────────────────────────────┤ │Does what it says │ │-- │ │methodTwo(...) │ │.. │ │Does what it says │ │ │ │{{ │ │digraph G { │ │ margin=0 │ │ bgcolor="pink" │ │ node[shape=box; color=none; shape=plaintext; fontsize=12; nodesep=0.1; ranksep=0.1]│ │ subgraph cluster_0 { │ │ label="ClassOne" │ │ methodOne, methodTwo │ │ } │ │ subgraph cluster_1 { │ │ label="ClassTwo" │ │ methodThree │ │ } │ │ methodOne -> methodThree │ │ methodTwo -> methodThree │ │} │ │}} │ │ │ └───────────────────────────────────────────────────────────────────────────────────────┘