Implements a chain of link routers (objects implementing LinkRouter interface) so that a link passes through the sequence until it gets routed successfully.
Namespace: com.mindfusion.diagramming
Package: com.mindfusion.diagramming
SyntaxJava
Copy Code
|
|---|
public class CompositeRouter implements LinkRouter |
RemarksBy default diagram's LinkRouter is set to a CompositeRouter instance that chains PatternRouter and GridRouter. You can insert additional link routers into the Routers list, including custom implementations of LinkRouter if target diagram should favor some specific link paths.
Inheritance Hierarchyjava.lang.Object![]()
com.mindfusion.diagramming.CompositeRouter
See Also