All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.plantuml.posimo.data.txt Maven / Gradle / Ivy

@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 paths)
}
GraphvizSolver --> Cluster
GraphvizSolver *--> Path


'Clusterable --> Cluster : Parent



@enduml 




© 2015 - 2024 Weber Informatics LLC | Privacy Policy