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

de.uni.freiburg.iig.telematik.jagal.ts.State Maven / Gradle / Ivy

Go to download

JAGAL provides implementations for directed graphs (weighted and unweighted) and various types of transition systems as well as utils for graph traversal and modification.

The newest version!
package de.uni.freiburg.iig.telematik.jagal.ts;


import de.uni.freiburg.iig.telematik.jagal.ts.abstr.AbstractState;


public class State extends AbstractState {
	
	private static final long serialVersionUID = 3148194296398299428L;

	public State(String name){
		super(name);
	}
	
	public State(String name, Object element) {
		super(name, element);
	}
	
}