Skip to content
Snippets Groups Projects
Commit c7511384 authored by Daniel Knorreck's avatar Daniel Knorreck
Browse files

No commit message

No commit message
parent 9f0980a1
No related branches found
No related tags found
No related merge requests found
......@@ -306,5 +306,13 @@ public class TMLArchitecture {
}
return false;
}
public ArrayList<HwLink> getLinkByBus(HwBus bus){
ArrayList<HwLink> tempList=new ArrayList<HwLink>();
for(HwLink link: hwlinks) {
if (link.bus==bus) tempList.add(link);
}
return tempList;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment