All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.tid.tedb.elements.Path Maven / Gradle / Ivy

The newest version!
package es.tid.tedb.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