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

graph.core.AbstractGraphAlgorithm Maven / Gradle / Ivy

The newest version!
package graph.core;

import graph.util.LinkedList;
import graph.util.List;

public abstract class AbstractGraphAlgorithm implements GraphAlgorithm {
	protected List parameterList; 

	public AbstractGraphAlgorithm() {
		parameterList = new LinkedList();
	}

	public List parameterList() {
		return parameterList;
	}
	
	protected void addParameter(Parameter parameter) {
		parameterList.insertLast(parameter);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy