jadex.bpmn.editor.gui.layouts.LaneLayout 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.gui.layouts;
import com.mxgraph.layout.mxStackLayout;
import com.mxgraph.view.mxGraph;
public class LaneLayout extends mxStackLayout
{
public LaneLayout(mxGraph graph)
{
super(graph, false);
fill = true;
resizeParent = true;
}
}