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

de.uni.freiburg.iig.telematik.jagal.ts.Event 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.labeled.abstr.AbstractEvent;


public class Event extends AbstractEvent{
	
	private static final long serialVersionUID = 1400285695561951287L;

	public Event(String name){
		super(name);
	}
	
	public Event(String name, String label){
		super(name, label);
	}
	
	public Event(String name, String label, boolean isLambdaEvent){
		super(name, label, isLambdaEvent);
	}
	
	@Override
	public Event clone(){
		return new Event(getName(), getLabel(), isLambdaEvent());
	}
	
	@Override
	public Event clone(int index){
		return new Event(getName() + index, getLabel(), isLambdaEvent());
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy