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

jadex.bpmn.editor.model.visual.VNode Maven / Gradle / Ivy

There is a newer version: 4.0.267
Show newest version
package jadex.bpmn.editor.model.visual;

import com.mxgraph.view.mxGraph;

/**
 *  This class represents a visual node.
 *
 */
public abstract class VNode extends VElement
{
	/**
	 *  Creates a new visual representation of a node.
	 *  
	 *  @param graph The BPMN graph.
	 *  @param style The style.
	 */
	public VNode(mxGraph graph, String style)
	{
		super(graph, style);
		setVertex(true);
		setVisible(true);
		setConnectable(true);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy