org.jbpt.petri.INode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbpt-petri Show documentation
Show all versions of jbpt-petri Show documentation
The jBPT code library is a compendium of technologies that support research on design, execution, and evaluation of business processes.
The newest version!
package org.jbpt.petri;
import org.jbpt.hypergraph.abs.IVertex;
/**
* Interface to a Petri net node.
*
* @author Artem Polyvyanyy
*/
public interface INode extends IVertex {
/**
* Get label of this node.
*
* @return Label of this node.
*/
public String getLabel();
/**
* Set label of this node.
*
* @param label String to use as label of this node.
*/
public void setLabel(String label);
/**
* Clone this Petri net node.
*/
public INode clone();
}