routage-optimiste/structure/Router.java

51 lines
926 B
Java
Raw Permalink Normal View History

2016-03-14 18:02:24 +01:00
package structure;
import java.util.ArrayList;
import java.util.HashMap;
public class Router {
2016-03-18 11:16:47 +01:00
private static int id=-1;
public String name;
2016-03-14 18:02:24 +01:00
private HashMap<Router,Integer> links=new HashMap<>();
public Router() {
// TODO Auto-generated constructor stub
2016-03-18 11:16:47 +01:00
id++;
this.name=""+id;
2016-03-14 18:02:24 +01:00
}
2016-03-21 18:02:31 +01:00
public void resetLinks(){
this.links=new HashMap<>();
}
2016-03-14 18:02:24 +01:00
public void buildLink(Router router, int weight){
2016-03-21 18:02:31 +01:00
this.links.remove(router);
router.removeLink(this);
2016-03-14 18:02:24 +01:00
this.links.put(router, weight);
router.addLink(this, weight);
}
public void addLink(Router router, int weight){
this.links.put(router, weight);
}
public int getWeight(Router router){
return this.links.get(router);
}
2016-03-18 11:16:47 +01:00
public HashMap<Router, Integer> getLinks() {
return links;
}
2016-03-21 18:02:31 +01:00
public void removeLink(Router router){
this.links.remove(router);
}
2016-03-18 11:16:47 +01:00
public void setLinks(HashMap<Router, Integer> links) {
this.links = links;
}
2016-03-14 18:02:24 +01:00
}