jadex.bpmn.editor.model.visual.VNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-editor-bpmn Show documentation
Show all versions of jadex-editor-bpmn Show documentation
Editor for Business Process Model and Notation (BPMN).
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);
}
}