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

de.uni.freiburg.iig.telematik.sepia.event.PlaceChangeEvent Maven / Gradle / Ivy

package de.uni.freiburg.iig.telematik.sepia.event;

import java.util.EventObject;

import de.uni.freiburg.iig.telematik.sepia.petrinet.abstr.AbstractPlace;


public class PlaceChangeEvent

> extends EventObject { private static final long serialVersionUID = -5415894461740664843L; public P place = null; public int affectedRelations = 0; public PlaceChangeEvent(P place) { super(place); this.place = place; } public PlaceChangeEvent(P place, int affectedRelations) { this(place); this.affectedRelations = affectedRelations; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy