com.mxgraph.layout.orthogonal.mxOrthogonalLayout Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jgraphx Show documentation
Show all versions of jgraphx Show documentation
JGraphX is a Java Swing diagramming (graph visualisation) library
/**
* Copyright (c) 2008-2009, JGraph Ltd
*/
package com.mxgraph.layout.orthogonal;
import com.mxgraph.layout.mxGraphLayout;
import com.mxgraph.layout.orthogonal.model.mxOrthogonalModel;
import com.mxgraph.view.mxGraph;
/**
*
*/
/**
*
*/
public class mxOrthogonalLayout extends mxGraphLayout
{
/**
*
*/
protected mxOrthogonalModel orthModel;
/**
* Whether or not to route the edges along grid lines only, if the grid
* is enabled. Default is false
*/
protected boolean routeToGrid = false;
/**
*
*/
public mxOrthogonalLayout(mxGraph graph)
{
super(graph);
orthModel = new mxOrthogonalModel(graph);
}
/**
*
*/
public void execute(Object parent)
{
// Create the rectangulation
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy