diff --git a/js/ui/mxgraph/src/js/layout/hierarchical/stage/mxHierarchicalLayoutStage.js b/js/ui/mxgraph/src/js/layout/hierarchical/stage/mxHierarchicalLayoutStage.js new file mode 100644 index 0000000..605846b --- /dev/null +++ b/js/ui/mxgraph/src/js/layout/hierarchical/stage/mxHierarchicalLayoutStage.js @@ -0,0 +1,25 @@ +/** + * Copyright (c) 2006-2015, JGraph Ltd + * Copyright (c) 2006-2015, Gaudenz Alder + */ +/** + * Class: mxHierarchicalLayoutStage + * + * The specific layout interface for hierarchical layouts. It adds a + * run method with a parameter for the hierarchical layout model + * that is shared between the layout stages. + * + * Constructor: mxHierarchicalLayoutStage + * + * Constructs a new hierarchical layout stage. + */ +function mxHierarchicalLayoutStage() { }; + +/** + * Function: execute + * + * Takes the graph detail and configuration information within the facade + * and creates the resulting laid out graph within that facade for further + * use. + */ +mxHierarchicalLayoutStage.prototype.execute = function(parent) { };