Add source and dest
This commit is contained in:
parent
0e1704bbcb
commit
e836f48216
1 changed files with 17 additions and 1 deletions
|
@ -26,9 +26,25 @@ public class MyGraph extends SingleGraph{
|
|||
// Assign grid
|
||||
this.grid=grid;
|
||||
|
||||
int i=0;
|
||||
int ll=this.grid.getGrid().size();
|
||||
// Build node
|
||||
for(Router r : this.grid.getGrid()){
|
||||
this.addNode(r.name);
|
||||
if(i==0){
|
||||
this.addNode(r.name).setAttribute("ui.label", "Source");
|
||||
}
|
||||
else{
|
||||
if(i==ll-1){
|
||||
this.addNode(r.name).setAttribute("ui.label", "Destination");
|
||||
|
||||
}
|
||||
else{
|
||||
this.addNode(r.name);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
i++;
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue