summaryrefslogtreecommitdiff
path: root/src/net/sourceforge/plantuml/posimo/data.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/sourceforge/plantuml/posimo/data.txt')
-rw-r--r--src/net/sourceforge/plantuml/posimo/data.txt38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/net/sourceforge/plantuml/posimo/data.txt b/src/net/sourceforge/plantuml/posimo/data.txt
deleted file mode 100644
index 2fe8aec..0000000
--- a/src/net/sourceforge/plantuml/posimo/data.txt
+++ /dev/null
@@ -1,38 +0,0 @@
-@startuml
-interface Positionable {
- + Dimension2D getSize();
- + Point2D getPosition();
-}
-
-interface Clusterable {
- +Cluster getParent();
-}
-
-Positionable <|-- Clusterable
-
-class Cluster
-
-Cluster *-- Cluster : subclusters
-Clusterable <|.. Cluster
-Cluster *-- Block
-Clusterable <|.. Block
-
-Path *-- "2" Cluster
-Path --> Label : has one
-Positionable <|-- Label
-
-SimpleDrawer --> Cluster
-SimpleDrawer *--> Path
-
-class GraphvizSolver {
- + Dimension2D solve(Cluster root, Collection<Path> paths)
-}
-GraphvizSolver --> Cluster
-GraphvizSolver *--> Path
-
-
-'Clusterable --> Cluster : Parent
-
-
-
-@enduml