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

org.jbpt.petri.INode Maven / Gradle / Ivy

Go to download

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy