
es.tid.vntm.topology.elements.Path Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of network-emulator Show documentation
Show all versions of network-emulator Show documentation
Emulator of GMPLS-controlled transport Network
The newest version!
package es.tid.vntm.topology.elements;
import java.util.ArrayList;
public class Path {
//TODO change to enumeration with values working/protection
String pathType;
ArrayList links;
public String toString(){
String temp = "";
if (links!=null){
for (int i=0;i" + links.get(i).getDest() ;
}
return temp;
}
public Path(ArrayList links){
this.links = links;
}
/**
* @return the pathType
*/
public String getPathType() {
return pathType;
}
/**
* @param pathType the pathType to set
*/
public void setPathType(String pathType) {
this.pathType = pathType;
}
/**
* @return the links
*/
public ArrayList getLinks() {
return links;
}
/**
* @param links the links to set
*/
public void setLinks(ArrayList links) {
this.links = links;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy