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

org.jbpt.pm.AndGateway Maven / Gradle / Ivy

package org.jbpt.pm;

/**
 * Base class for an AND-Gateway in a process model.
 * @author Tobias Hoppe
 *
 */
public class AndGateway extends Gateway implements IAndGateway {

	/**
	 * Create a new {@link AndGateway} with an empty name.
	 */
	public AndGateway(){
		super();
	}

	/**
	 * Create a new {@link AndGateway} with the given name.
	 * @param name of this {@link AndGateway}
	 */
	public AndGateway(String name){
		super(name);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy