Eclipse RCP - Combining table rows by drag and drop the arrows
问题 I am new be in RCP development. I want to create two tables with, each table contains different data. Data from two tables have either 1 to 1 , 1 to many or many to 1 relationship. And that can be done by drawing arrows between two tables. For example, **Row 1** **Row 2** R1 V1 R2 V1 R1 V2 R2 V2 R1 V3 R2 V3 I want to draw arrows from R1V1 to ( R2V1 and R2V3 ) or vice a versa. How can I show it graphically. How can I find that which rows are combined by arrows. Any help is appreciated. ---