jadex.bpmn.tools.ui.BreakpointMarker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-tools-bpmn Show documentation
Show all versions of jadex-tools-bpmn Show documentation
The Jadex tools bpmn package contains JCC plugins for Jadex BPMN components.
package jadex.bpmn.tools.ui;
import com.mxgraph.model.mxCell;
import com.mxgraph.model.mxGeometry;
import com.mxgraph.view.mxGraph;
/**
*
*/
public class BreakpointMarker extends mxCell
{
/** The graph where this element is used. */
protected mxGraph graph;
/**
* Creates a new element.
*
* @param graph The graph where this element is used.
* @param geometry Initial element geometry.
* @param style Initial style.
*/
public BreakpointMarker(mxGraph graph)
{
super(null, new mxGeometry(), BreakpointMarker.class.getSimpleName());
this.graph = graph;
setVertex(true);
setVisible(true);
}
/**
* Returns the graph.
* @return The graph.
*/
public mxGraph getGraph()
{
return graph;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy