Skip to content

Commit

Permalink
preparing layout functionality as incubating feature (issue #34)
Browse files Browse the repository at this point in the history
  • Loading branch information
miho committed Jul 5, 2016
1 parent a3d5209 commit f23ba72
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of Michael Hoffer <[email protected]>.
*/
package eu.mihosoft.vrl.workflow;
package eu.mihosoft.vrl.workflow.incubating;

import eu.mihosoft.vrl.workflow.VFlowModel;

/**
* This interface describes a layout generator. A layout generator is used to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,14 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of Michael Hoffer <[email protected]>.
*/
package eu.mihosoft.vrl.workflow;
package eu.mihosoft.vrl.workflow.incubating;


import edu.uci.ics.jung.graph.util.Pair;
import eu.mihosoft.vrl.workflow.Connection;
import eu.mihosoft.vrl.workflow.Connections;
import eu.mihosoft.vrl.workflow.VFlowModel;
import eu.mihosoft.vrl.workflow.VNode;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of Michael Hoffer <[email protected]>.
*/
package eu.mihosoft.vrl.workflow;
package eu.mihosoft.vrl.workflow.incubating;

import cern.colt.Arrays;
import edu.uci.ics.jung.algorithms.layout.ISOMLayout;
Expand All @@ -42,6 +42,10 @@
import edu.uci.ics.jung.graph.DirectedGraph;
import edu.uci.ics.jung.graph.DirectedSparseGraph;
import edu.uci.ics.jung.graph.util.Pair;
import eu.mihosoft.vrl.workflow.Connection;
import eu.mihosoft.vrl.workflow.Connections;
import eu.mihosoft.vrl.workflow.VFlowModel;
import eu.mihosoft.vrl.workflow.VNode;
import java.awt.Dimension;
import java.awt.geom.Point2D;
import java.util.ArrayList;
Expand Down

0 comments on commit f23ba72

Please sign in to comment.