de.uni.freiburg.iig.telematik.sepia.petrinet.timedNet.TimedTransition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SEPIA Show documentation
Show all versions of SEPIA Show documentation
SEPIA provides implementations for various types of Petri nets. Along Place/Transition-nets, it supports Petri nets with distinguishable token colors and defines coloured workflow nets, where coloured tokens are interpreted as data elements used during process execution. To support information flow analysis of processes, SEPIA defines so-called IF-Nets, tailored for security-oriented workflow modeling which enable users to assign security-levels (HIGH, LOW) to transitions, data elements and persons/agents participating in the process execution.
The newest version!
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package de.uni.freiburg.iig.telematik.sepia.petrinet.timedNet;
import de.uni.freiburg.iig.telematik.sepia.petrinet.timedNet.abstr.AbstractTimedTransition;
/**
*
* @author richard
*/
public class TimedTransition extends AbstractTimedTransition {
private static final long serialVersionUID = 2596908252141084555L;
public TimedTransition(String name, String label) {
super(name, label);
}
private TimedTransition(String name) {
super(name);
}
public TimedTransition(String name,String label, boolean isSilent){
super(name, label, isSilent);
}
@Override
protected TimedTransition newInstance(String name) {
return new TimedTransition(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy