Search
Factory.createDiagramLink Method (TableNode, TableNode)
See Also
 

Creates a new DiagramLink instance between the specified tables and adds it to the Links collection of the underlying diagram.

Namespace: com.mindfusion.diagramming
Package: com.mindfusion.diagramming

 Syntax

Java  Copy Code

public DiagramLink createDiagramLink (
    TableNode origin,
    TableNode destination
)

 Parameters

origin
The origin node.
destination
The destination node.

 Return Value

The newly created DiagramLink instance.

 Remarks

The method creates a link connecting the tables specified by origin and destination. For further customization of the link, use the methods of the DiagramLink class.

 See Also