4.0.1 release
parent
5fe6f978ed
commit
7bb0ef2877
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
||||||
|
02-JUL-2019: 4.0.1
|
||||||
|
|
||||||
|
- Forces quotes around font names in CSS and SVG
|
||||||
|
- No longer prevents default for pen/touch events in mxMouseEvent
|
||||||
|
- Adds validation of color codes
|
||||||
|
- Fixes handling of Infinity in mxObjectCodec
|
||||||
|
- Add target for Chrome in mxEvent.addMouseWheelListener
|
||||||
|
- Removes scroll handler in mxOutline.destroy
|
||||||
|
- Adds mxStackLayout.allowGaps and gridSize
|
||||||
|
- Fixes possible NPE in mxGraph.sizeDidChange
|
||||||
|
|
||||||
11-MAR-2019: 4.0.0
|
11-MAR-2019: 4.0.0
|
||||||
|
|
||||||
- mxClient.IS_SVG is true for all non-VML browsers
|
- mxClient.IS_SVG is true for all non-VML browsers
|
||||||
|
|
|
@ -87,7 +87,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
|
||||||
|
|
||||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxGraphHandler.isDelayedSelection"></a>isDelayedSelection</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxGraphHandler.prototype.isDelayedSelection = function(</td><td class="PParameter prettyprint " nowrap>cell,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>me</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote><p>Hook to return true for delayed selections.</p></div></div></div>
|
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxGraphHandler.isDelayedSelection"></a>isDelayedSelection</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxGraphHandler.prototype.isDelayedSelection = function(</td><td class="PParameter prettyprint " nowrap>cell,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>me</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote><p>Hook to return true for delayed selections.</p></div></div></div>
|
||||||
|
|
||||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxGraphHandler.consumeMouseEvent"></a>consumeMouseEvent</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxGraphHandler.prototype.consumeMouseEvent = function(</td><td class="PParameter prettyprint " nowrap>evtName,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>me</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote><p>Consumes the given mouse event. NOTE: This may be used to enable click events for links in labels on iOS as follows as consuming the initial touchStart disables firing the subsequent click evnent on the link.</p><p><code> mxGraphHandler.prototype.consumeMouseEvent = function(evtName, me) { var source = mxEvent.getSource(me.getEvent());</p><p>if (!mxEvent.isTouchEvent(me.getEvent()) || source.nodeName != ‘A’) { me.consume(); } } </code></p></div></div></div>
|
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxGraphHandler.consumeMouseEvent"></a>consumeMouseEvent</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxGraphHandler.prototype.consumeMouseEvent = function(</td><td class="PParameter prettyprint " nowrap>evtName,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>me</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote><p>Consumes the given mouse event. NOTE: This may be used to enable click events for links in labels on iOS as follows as consuming the initial touchStart disables firing the subsequent click event on the link.</p><p><code> mxGraphHandler.prototype.consumeMouseEvent = function(evtName, me) { var source = mxEvent.getSource(me.getEvent());</p><p>if (!mxEvent.isTouchEvent(me.getEvent()) || source.nodeName != ‘A’) { me.consume(); } } </code></p></div></div></div>
|
||||||
|
|
||||||
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxGraphHandler.mouseDown"></a>mouseDown</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxGraphHandler.prototype.mouseDown = function(</td><td class="PParameter prettyprint " nowrap>sender,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>me</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote><p>Handles the event by selecing the given cell and creating a handle for it. By consuming the event all subsequent events of the gesture are redirected to this handler.</p></div></div></div>
|
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxGraphHandler.mouseDown"></a>mouseDown</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxGraphHandler.prototype.mouseDown = function(</td><td class="PParameter prettyprint " nowrap>sender,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>me</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote><p>Handles the event by selecing the given cell and creating a handle for it. By consuming the event all subsequent events of the gesture are redirected to this handler.</p></div></div></div>
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -11,13 +11,13 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id=Index><div class=IPageTitle>Function Index</div><div class=INavigationBar>$#! · 0-9 · <a href="Functions.html#A">A</a> · <a href="Functions2.html#B">B</a> · <a href="Functions3.html#C">C</a> · <a href="Functions4.html#D">D</a> · <a href="Functions5.html#E">E</a> · <a href="Functions6.html#F">F</a> · <a href="Functions7.html#G">G</a> · <a href="Functions8.html#H">H</a> · <a href="Functions9.html#I">I</a> · <a href="Functions10.html#J">J</a> · <a href="Functions10.html#K">K</a> · <a href="Functions10.html#L">L</a> · <a href="Functions11.html#M">M</a> · <a href="#N">N</a> · <a href="#O">O</a> · <a href="Functions13.html#P">P</a> · <a href="Functions14.html#Q">Q</a> · <a href="Functions15.html#R">R</a> · <a href="Functions16.html#S">S</a> · <a href="Functions17.html#T">T</a> · <a href="Functions18.html#U">U</a> · <a href="Functions19.html#V">V</a> · <a href="Functions19.html#W">W</a> · X · Y · <a href="Functions19.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="N"></a>N</td><td></td></tr><tr><td class=ISymbolPrefix id=IOnlySymbolPrefix> </td><td class=IEntry><a href="../files/util/mxUndoableEdit-js.html#mxUndoableEdit.notify" id=link1536 onMouseOver="ShowTip(event, 'tt1536', 'link1536')" onMouseOut="HideTip('tt1536')" class=ISymbol>notify</a>, <span class=IParent>mxUndoableEdit</span></td></tr><tr><td class=IHeading><a name="O"></a>O</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix> </td><td class=IEntry><a href="../files/layout/mxCompactTreeLayout-js.html#mxCompactTreeLayout.offset" id=link1537 onMouseOver="ShowTip(event, 'tt1537', 'link1537')" onMouseOut="HideTip('tt1537')" class=ISymbol>offset</a>, <span class=IParent>mxCompactTreeLayout</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/io/mxRootChangeCodec-js.html#mxRootChangeCodec.onEncode" id=link1538 onMouseOver="ShowTip(event, 'tt1538', 'link1538')" onMouseOut="HideTip('tt1538')" class=ISymbol>onEncode</a>, <span class=IParent>mxRootChangeCodec</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>onInit</span><div class=ISubIndex><a href="../files/model/mxCell-js.html#mxCell.onInit" id=link1539 onMouseOver="ShowTip(event, 'tt1539', 'link1539')" onMouseOut="HideTip('tt1539')" class=IParent>mxCell</a><a href="../files/editor/mxEditor-js.html#mxEditor.onInit" id=link1540 onMouseOver="ShowTip(event, 'tt1540', 'link1540')" onMouseOut="HideTip('tt1540')" class=IParent>mxEditor</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>open</span><div class=ISubIndex><a href="../files/editor/mxEditor-js.html#mxEditor.open" id=link1541 onMouseOver="ShowTip(event, 'tt1541', 'link1541')" onMouseOut="HideTip('tt1541')" class=IParent>mxEditor</a><a href="../files/view/mxPrintPreview-js.html#mxPrintPreview.open" id=link1542 onMouseOver="ShowTip(event, 'tt1542', 'link1542')" onMouseOut="HideTip('tt1542')" class=IParent>mxPrintPreview</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.orderCells" id=link1543 onMouseOver="ShowTip(event, 'tt1543', 'link1543')" onMouseOut="HideTip('tt1543')" class=ISymbol>orderCells</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/view/mxEdgeStyle-js.html#mxEdgeStyle.OrthConnector" id=link1544 onMouseOver="ShowTip(event, 'tt1544', 'link1544')" onMouseOut="HideTip('tt1544')" class=ISymbol>OrthConnector</a>, <span class=IParent>mxEdgeStyle</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix> </td><td class=IEntry><a href="../files/view/mxOutline-js.html#mxOutline.outline" id=link1545 onMouseOver="ShowTip(event, 'tt1545', 'link1545')" onMouseOut="HideTip('tt1545')" class=ISymbol>outline</a>, <span class=IParent>mxOutline</span></td></tr></table>
|
<div id=Index><div class=IPageTitle>Function Index</div><div class=INavigationBar>$#! · 0-9 · <a href="Functions.html#A">A</a> · <a href="Functions2.html#B">B</a> · <a href="Functions3.html#C">C</a> · <a href="Functions4.html#D">D</a> · <a href="Functions5.html#E">E</a> · <a href="Functions6.html#F">F</a> · <a href="Functions7.html#G">G</a> · <a href="Functions8.html#H">H</a> · <a href="Functions9.html#I">I</a> · <a href="Functions10.html#J">J</a> · <a href="Functions10.html#K">K</a> · <a href="Functions10.html#L">L</a> · <a href="Functions11.html#M">M</a> · <a href="#N">N</a> · <a href="#O">O</a> · <a href="Functions13.html#P">P</a> · <a href="Functions14.html#Q">Q</a> · <a href="Functions15.html#R">R</a> · <a href="Functions16.html#S">S</a> · <a href="Functions17.html#T">T</a> · <a href="Functions18.html#U">U</a> · <a href="Functions19.html#V">V</a> · <a href="Functions19.html#W">W</a> · X · Y · <a href="Functions19.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="N"></a>N</td><td></td></tr><tr><td class=ISymbolPrefix id=IOnlySymbolPrefix> </td><td class=IEntry><a href="../files/util/mxUndoableEdit-js.html#mxUndoableEdit.notify" id=link1537 onMouseOver="ShowTip(event, 'tt1537', 'link1537')" onMouseOut="HideTip('tt1537')" class=ISymbol>notify</a>, <span class=IParent>mxUndoableEdit</span></td></tr><tr><td class=IHeading><a name="O"></a>O</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix> </td><td class=IEntry><a href="../files/layout/mxCompactTreeLayout-js.html#mxCompactTreeLayout.offset" id=link1538 onMouseOver="ShowTip(event, 'tt1538', 'link1538')" onMouseOut="HideTip('tt1538')" class=ISymbol>offset</a>, <span class=IParent>mxCompactTreeLayout</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/io/mxRootChangeCodec-js.html#mxRootChangeCodec.onEncode" id=link1539 onMouseOver="ShowTip(event, 'tt1539', 'link1539')" onMouseOut="HideTip('tt1539')" class=ISymbol>onEncode</a>, <span class=IParent>mxRootChangeCodec</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>onInit</span><div class=ISubIndex><a href="../files/model/mxCell-js.html#mxCell.onInit" id=link1540 onMouseOver="ShowTip(event, 'tt1540', 'link1540')" onMouseOut="HideTip('tt1540')" class=IParent>mxCell</a><a href="../files/editor/mxEditor-js.html#mxEditor.onInit" id=link1541 onMouseOver="ShowTip(event, 'tt1541', 'link1541')" onMouseOut="HideTip('tt1541')" class=IParent>mxEditor</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>open</span><div class=ISubIndex><a href="../files/editor/mxEditor-js.html#mxEditor.open" id=link1542 onMouseOver="ShowTip(event, 'tt1542', 'link1542')" onMouseOut="HideTip('tt1542')" class=IParent>mxEditor</a><a href="../files/view/mxPrintPreview-js.html#mxPrintPreview.open" id=link1543 onMouseOver="ShowTip(event, 'tt1543', 'link1543')" onMouseOut="HideTip('tt1543')" class=IParent>mxPrintPreview</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.orderCells" id=link1544 onMouseOver="ShowTip(event, 'tt1544', 'link1544')" onMouseOut="HideTip('tt1544')" class=ISymbol>orderCells</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/view/mxEdgeStyle-js.html#mxEdgeStyle.OrthConnector" id=link1545 onMouseOver="ShowTip(event, 'tt1545', 'link1545')" onMouseOut="HideTip('tt1545')" class=ISymbol>OrthConnector</a>, <span class=IParent>mxEdgeStyle</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix> </td><td class=IEntry><a href="../files/view/mxOutline-js.html#mxOutline.outline" id=link1546 onMouseOver="ShowTip(event, 'tt1546', 'link1546')" onMouseOut="HideTip('tt1546')" class=ISymbol>outline</a>, <span class=IParent>mxOutline</span></td></tr></table>
|
||||||
<!--START_ND_TOOLTIPS-->
|
<!--START_ND_TOOLTIPS-->
|
||||||
<div class=CToolTip id="tt1536"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxUndoableEdit.prototype.notify = function()</td></tr></table></blockquote>Hook to notify any listeners of the changes after an undo or redo has been carried out. </div></div><!--END_ND_TOOLTIPS-->
|
<div class=CToolTip id="tt1537"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxUndoableEdit.prototype.notify = function()</td></tr></table></blockquote>Hook to notify any listeners of the changes after an undo or redo has been carried out. </div></div><!--END_ND_TOOLTIPS-->
|
||||||
|
|
||||||
|
|
||||||
<!--START_ND_TOOLTIPS-->
|
<!--START_ND_TOOLTIPS-->
|
||||||
<div class=CToolTip id="tt1537"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxCompactTreeLayout.prototype.offset = function(</td><td class="PParameter prettyprint " nowrap>p1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>p2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>a1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>a2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>b1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>b2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote></div></div><div class=CToolTip id="tt1538"><div class=CFunction>Encodes the child recursively.</div></div><div class=CToolTip id="tt1539"><div class=CFunction>Called from within the constructor.</div></div><div class=CToolTip id="tt1540"><div class=CFunction>Called from within the constructor. </div></div><div class=CToolTip id="tt1541"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxEditor.prototype.open = function (</td><td class="PParameter prettyprint " nowrap>filename</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Opens the specified file synchronously and parses it using readGraphModel. </div></div><div class=CToolTip id="tt1542"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxPrintPreview.prototype.open = function(</td><td class="PParameter prettyprint " nowrap>css,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>targetWindow,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>forcePageBreaks,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>keepOpen</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Shows the print preview window. </div></div><div class=CToolTip id="tt1543"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxGraph.prototype.orderCells = function(</td><td class="PParameter prettyprint " nowrap>back,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>cells</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Moves the given cells to the front or back. </div></div><div class=CToolTip id="tt1544"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>OrthConnector: function(</td><td class="PParameter prettyprint " nowrap>state,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>source,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>target,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>points,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>result</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Implements a local orthogonal router between the given cells.</div></div><div class=CToolTip id="tt1545"><div class=CFunction>Reference to the mxGraph that renders the outline.</div></div><!--END_ND_TOOLTIPS-->
|
<div class=CToolTip id="tt1538"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxCompactTreeLayout.prototype.offset = function(</td><td class="PParameter prettyprint " nowrap>p1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>p2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>a1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>a2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>b1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>b2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote></div></div><div class=CToolTip id="tt1539"><div class=CFunction>Encodes the child recursively.</div></div><div class=CToolTip id="tt1540"><div class=CFunction>Called from within the constructor.</div></div><div class=CToolTip id="tt1541"><div class=CFunction>Called from within the constructor. </div></div><div class=CToolTip id="tt1542"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxEditor.prototype.open = function (</td><td class="PParameter prettyprint " nowrap>filename</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Opens the specified file synchronously and parses it using readGraphModel. </div></div><div class=CToolTip id="tt1543"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxPrintPreview.prototype.open = function(</td><td class="PParameter prettyprint " nowrap>css,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>targetWindow,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>forcePageBreaks,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>keepOpen</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Shows the print preview window. </div></div><div class=CToolTip id="tt1544"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxGraph.prototype.orderCells = function(</td><td class="PParameter prettyprint " nowrap>back,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>cells</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Moves the given cells to the front or back. </div></div><div class=CToolTip id="tt1545"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>OrthConnector: function(</td><td class="PParameter prettyprint " nowrap>state,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>source,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>target,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>points,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>result</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Implements a local orthogonal router between the given cells.</div></div><div class=CToolTip id="tt1546"><div class=CFunction>Reference to the mxGraph that renders the outline.</div></div><!--END_ND_TOOLTIPS-->
|
||||||
|
|
||||||
</div><!--Index-->
|
</div><!--Index-->
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -11,9 +11,9 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id=Index><div class=IPageTitle>Function Index</div><div class=INavigationBar>$#! · 0-9 · <a href="Functions.html#A">A</a> · <a href="Functions2.html#B">B</a> · <a href="Functions3.html#C">C</a> · <a href="Functions4.html#D">D</a> · <a href="Functions5.html#E">E</a> · <a href="Functions6.html#F">F</a> · <a href="Functions7.html#G">G</a> · <a href="Functions8.html#H">H</a> · <a href="Functions9.html#I">I</a> · <a href="Functions10.html#J">J</a> · <a href="Functions10.html#K">K</a> · <a href="Functions10.html#L">L</a> · <a href="Functions11.html#M">M</a> · <a href="Functions12.html#N">N</a> · <a href="Functions12.html#O">O</a> · <a href="Functions13.html#P">P</a> · <a href="#Q">Q</a> · <a href="Functions15.html#R">R</a> · <a href="Functions16.html#S">S</a> · <a href="Functions17.html#T">T</a> · <a href="Functions18.html#U">U</a> · <a href="Functions19.html#V">V</a> · <a href="Functions19.html#W">W</a> · X · Y · <a href="Functions19.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="Q"></a>Q</td><td></td></tr><tr><td class=ISymbolPrefix id=IOnlySymbolPrefix> </td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link1616 onMouseOver="ShowTip(event, 'tt1616', 'link1616')" onMouseOut="HideTip('tt1616')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link1617 onMouseOver="ShowTip(event, 'tt1617', 'link1617')" onMouseOut="HideTip('tt1617')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link1618 onMouseOver="ShowTip(event, 'tt1618', 'link1618')" onMouseOut="HideTip('tt1618')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
|
<div id=Index><div class=IPageTitle>Function Index</div><div class=INavigationBar>$#! · 0-9 · <a href="Functions.html#A">A</a> · <a href="Functions2.html#B">B</a> · <a href="Functions3.html#C">C</a> · <a href="Functions4.html#D">D</a> · <a href="Functions5.html#E">E</a> · <a href="Functions6.html#F">F</a> · <a href="Functions7.html#G">G</a> · <a href="Functions8.html#H">H</a> · <a href="Functions9.html#I">I</a> · <a href="Functions10.html#J">J</a> · <a href="Functions10.html#K">K</a> · <a href="Functions10.html#L">L</a> · <a href="Functions11.html#M">M</a> · <a href="Functions12.html#N">N</a> · <a href="Functions12.html#O">O</a> · <a href="Functions13.html#P">P</a> · <a href="#Q">Q</a> · <a href="Functions15.html#R">R</a> · <a href="Functions16.html#S">S</a> · <a href="Functions17.html#T">T</a> · <a href="Functions18.html#U">U</a> · <a href="Functions19.html#V">V</a> · <a href="Functions19.html#W">W</a> · X · Y · <a href="Functions19.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="Q"></a>Q</td><td></td></tr><tr><td class=ISymbolPrefix id=IOnlySymbolPrefix> </td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link1617 onMouseOver="ShowTip(event, 'tt1617', 'link1617')" onMouseOut="HideTip('tt1617')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link1618 onMouseOver="ShowTip(event, 'tt1618', 'link1618')" onMouseOut="HideTip('tt1618')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link1619 onMouseOver="ShowTip(event, 'tt1619', 'link1619')" onMouseOut="HideTip('tt1619')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
|
||||||
<!--START_ND_TOOLTIPS-->
|
<!--START_ND_TOOLTIPS-->
|
||||||
<div class=CToolTip id="tt1616"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxAbstractCanvas2D.prototype.quadTo = function(</td><td class="PParameter prettyprint " nowrap>x1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>x2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><div class=CToolTip id="tt1617"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxVmlCanvas2D.prototype.quadTo = function(</td><td class="PParameter prettyprint " nowrap>x1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>x2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Replaces quadratic curve with bezier curve in VML.</div></div><div class=CToolTip id="tt1618"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxXmlCanvas2D.prototype.quadTo = function(</td><td class="PParameter prettyprint " nowrap>x1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>x2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><!--END_ND_TOOLTIPS-->
|
<div class=CToolTip id="tt1617"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxAbstractCanvas2D.prototype.quadTo = function(</td><td class="PParameter prettyprint " nowrap>x1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>x2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><div class=CToolTip id="tt1618"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxVmlCanvas2D.prototype.quadTo = function(</td><td class="PParameter prettyprint " nowrap>x1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>x2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Replaces quadratic curve with bezier curve in VML.</div></div><div class=CToolTip id="tt1619"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxXmlCanvas2D.prototype.quadTo = function(</td><td class="PParameter prettyprint " nowrap>x1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>x2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><!--END_ND_TOOLTIPS-->
|
||||||
|
|
||||||
</div><!--Index-->
|
</div><!--Index-->
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -11,13 +11,13 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! · 0-9 · <a href="General.html#A">A</a> · <a href="General2.html#B">B</a> · <a href="General3.html#C">C</a> · <a href="General4.html#D">D</a> · <a href="General5.html#E">E</a> · <a href="General6.html#F">F</a> · <a href="General7.html#G">G</a> · <a href="General8.html#H">H</a> · <a href="General9.html#I">I</a> · <a href="#J">J</a> · <a href="#K">K</a> · <a href="General11.html#L">L</a> · <a href="General12.html#M">M</a> · <a href="General13.html#N">N</a> · <a href="General13.html#O">O</a> · <a href="General14.html#P">P</a> · <a href="General15.html#Q">Q</a> · <a href="General16.html#R">R</a> · <a href="General17.html#S">S</a> · <a href="General18.html#T">T</a> · <a href="General19.html#U">U</a> · <a href="General20.html#V">V</a> · <a href="General21.html#W">W</a> · <a href="General21.html#X">X</a> · <a href="General21.html#Y">Y</a> · <a href="General21.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="J"></a>J</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix> </td><td class=IEntry><a href="../files/layout/hierarchical/stage/mxCoordinateAssignment-js.html#mxCoordinateAssignment.jettyPositions" id=link1952 onMouseOver="ShowTip(event, 'tt1952', 'link1952')" onMouseOut="HideTip('tt1952')" class=ISymbol>jettyPositions</a>, <span class=IParent>mxCoordinateAssignment</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix> </td><td class=IEntry><a href="../files/layout/mxCompactTreeLayout-js.html#mxCompactTreeLayout.join" id=link1953 onMouseOver="ShowTip(event, 'tt1953', 'link1953')" onMouseOut="HideTip('tt1953')" class=ISymbol>join</a>, <span class=IParent>mxCompactTreeLayout</span></td></tr><tr><td class=IHeading><a name="K"></a>K</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix> </td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.keepEdgesInBackground" id=link1954 onMouseOver="ShowTip(event, 'tt1954', 'link1954')" onMouseOut="HideTip('tt1954')" class=ISymbol>keepEdgesInBackground</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.keepEdgesInForeground" id=link1955 onMouseOver="ShowTip(event, 'tt1955', 'link1955')" onMouseOut="HideTip('tt1955')" class=ISymbol>keepEdgesInForeground</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/layout/mxStackLayout-js.html#mxStackLayout.keepFirstLocation" id=link1956 onMouseOver="ShowTip(event, 'tt1956', 'link1956')" onMouseOut="HideTip('tt1956')" class=ISymbol>keepFirstLocation</a>, <span class=IParent>mxStackLayout</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/handler/mxCellHighlight-js.html#mxCellHighlight.keepOnTop" id=link1957 onMouseOver="ShowTip(event, 'tt1957', 'link1957')" onMouseOut="HideTip('tt1957')" class=ISymbol>keepOnTop</a>, <span class=IParent>mxCellHighlight</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.keepSelectionVisibleOnZoom" id=link1958 onMouseOver="ShowTip(event, 'tt1958', 'link1958')" onMouseOut="HideTip('tt1958')" class=ISymbol>keepSelectionVisibleOnZoom</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/handler/mxKeyHandler-js.html#mxKeyHandler.keyDown" id=link1959 onMouseOver="ShowTip(event, 'tt1959', 'link1959')" onMouseOut="HideTip('tt1959')" class=ISymbol>keyDown</a>, <span class=IParent>mxKeyHandler</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix> </td><td class=IEntry><a href="../files/editor/mxEditor-js.html#mxEditor.keyHandler" id=link1960 onMouseOver="ShowTip(event, 'tt1960', 'link1960')" onMouseOut="HideTip('tt1960')" class=ISymbol>keyHandler</a>, <span class=IParent>mxEditor</span></td></tr></table>
|
<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! · 0-9 · <a href="General.html#A">A</a> · <a href="General2.html#B">B</a> · <a href="General3.html#C">C</a> · <a href="General4.html#D">D</a> · <a href="General5.html#E">E</a> · <a href="General6.html#F">F</a> · <a href="General7.html#G">G</a> · <a href="General8.html#H">H</a> · <a href="General9.html#I">I</a> · <a href="#J">J</a> · <a href="#K">K</a> · <a href="General11.html#L">L</a> · <a href="General12.html#M">M</a> · <a href="General13.html#N">N</a> · <a href="General13.html#O">O</a> · <a href="General14.html#P">P</a> · <a href="General15.html#Q">Q</a> · <a href="General16.html#R">R</a> · <a href="General17.html#S">S</a> · <a href="General18.html#T">T</a> · <a href="General19.html#U">U</a> · <a href="General20.html#V">V</a> · <a href="General21.html#W">W</a> · <a href="General21.html#X">X</a> · <a href="General21.html#Y">Y</a> · <a href="General21.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="J"></a>J</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix> </td><td class=IEntry><a href="../files/layout/hierarchical/stage/mxCoordinateAssignment-js.html#mxCoordinateAssignment.jettyPositions" id=link1955 onMouseOver="ShowTip(event, 'tt1955', 'link1955')" onMouseOut="HideTip('tt1955')" class=ISymbol>jettyPositions</a>, <span class=IParent>mxCoordinateAssignment</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix> </td><td class=IEntry><a href="../files/layout/mxCompactTreeLayout-js.html#mxCompactTreeLayout.join" id=link1956 onMouseOver="ShowTip(event, 'tt1956', 'link1956')" onMouseOut="HideTip('tt1956')" class=ISymbol>join</a>, <span class=IParent>mxCompactTreeLayout</span></td></tr><tr><td class=IHeading><a name="K"></a>K</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix> </td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.keepEdgesInBackground" id=link1957 onMouseOver="ShowTip(event, 'tt1957', 'link1957')" onMouseOut="HideTip('tt1957')" class=ISymbol>keepEdgesInBackground</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.keepEdgesInForeground" id=link1958 onMouseOver="ShowTip(event, 'tt1958', 'link1958')" onMouseOut="HideTip('tt1958')" class=ISymbol>keepEdgesInForeground</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/layout/mxStackLayout-js.html#mxStackLayout.keepFirstLocation" id=link1959 onMouseOver="ShowTip(event, 'tt1959', 'link1959')" onMouseOut="HideTip('tt1959')" class=ISymbol>keepFirstLocation</a>, <span class=IParent>mxStackLayout</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/handler/mxCellHighlight-js.html#mxCellHighlight.keepOnTop" id=link1960 onMouseOver="ShowTip(event, 'tt1960', 'link1960')" onMouseOut="HideTip('tt1960')" class=ISymbol>keepOnTop</a>, <span class=IParent>mxCellHighlight</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.keepSelectionVisibleOnZoom" id=link1961 onMouseOver="ShowTip(event, 'tt1961', 'link1961')" onMouseOut="HideTip('tt1961')" class=ISymbol>keepSelectionVisibleOnZoom</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/handler/mxKeyHandler-js.html#mxKeyHandler.keyDown" id=link1962 onMouseOver="ShowTip(event, 'tt1962', 'link1962')" onMouseOut="HideTip('tt1962')" class=ISymbol>keyDown</a>, <span class=IParent>mxKeyHandler</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix> </td><td class=IEntry><a href="../files/editor/mxEditor-js.html#mxEditor.keyHandler" id=link1963 onMouseOver="ShowTip(event, 'tt1963', 'link1963')" onMouseOut="HideTip('tt1963')" class=ISymbol>keyHandler</a>, <span class=IParent>mxEditor</span></td></tr></table>
|
||||||
<!--START_ND_TOOLTIPS-->
|
<!--START_ND_TOOLTIPS-->
|
||||||
<div class=CToolTip id="tt1952"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxCoordinateAssignment.prototype.jettyPositions</td></tr></table></blockquote>Map of internal edges and (x,y) pair of positions of the start and end jetty for that edge where it connects to the source and target vertices. </div></div><div class=CToolTip id="tt1953"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxCompactTreeLayout.prototype.join = function(</td><td class="PParameter prettyprint " nowrap>node</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote></div></div><!--END_ND_TOOLTIPS-->
|
<div class=CToolTip id="tt1955"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxCoordinateAssignment.prototype.jettyPositions</td></tr></table></blockquote>Map of internal edges and (x,y) pair of positions of the start and end jetty for that edge where it connects to the source and target vertices. </div></div><div class=CToolTip id="tt1956"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxCompactTreeLayout.prototype.join = function(</td><td class="PParameter prettyprint " nowrap>node</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote></div></div><!--END_ND_TOOLTIPS-->
|
||||||
|
|
||||||
|
|
||||||
<!--START_ND_TOOLTIPS-->
|
<!--START_ND_TOOLTIPS-->
|
||||||
<div class=CToolTip id="tt1954"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxGraph.prototype.keepEdgesInBackground</td></tr></table></blockquote>Specifies if edges should appear in the background regardless of their order in the model. </div></div><div class=CToolTip id="tt1955"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxGraph.prototype.keepEdgesInForeground</td></tr></table></blockquote>Specifies if edges should appear in the foreground regardless of their order in the model. </div></div><div class=CToolTip id="tt1956"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxStackLayout.prototype.keepFirstLocation</td></tr></table></blockquote>Boolean indicating if the location of the first cell should be kept, that is, it will not be moved to x0 or y0.</div></div><div class=CToolTip id="tt1957"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxCellHighlight.prototype.keepOnTop</td></tr></table></blockquote>Specifies if the highlights should appear on top of everything else in the overlay pane. </div></div><div class=CToolTip id="tt1958"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxGraph.prototype.keepSelectionVisibleOnZoom</td></tr></table></blockquote>Specifies if the viewport should automatically contain the selection cells after a zoom operation. </div></div><div class=CToolTip id="tt1959"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxKeyHandler.prototype.keyDown = function(</td><td class="PParameter prettyprint " nowrap>evt</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Handles the event by invoking the function bound to the respective keystroke if isEnabledForEvent returns true for the given event and if isEventIgnored returns false, except for escape for which isEventIgnored is not invoked.</div></div><div class=CToolTip id="tt1960"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxEditor.prototype.keyHandler</td></tr></table></blockquote>Holds a mxDefaultKeyHandler for handling keyboard events. </div></div><!--END_ND_TOOLTIPS-->
|
<div class=CToolTip id="tt1957"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxGraph.prototype.keepEdgesInBackground</td></tr></table></blockquote>Specifies if edges should appear in the background regardless of their order in the model. </div></div><div class=CToolTip id="tt1958"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxGraph.prototype.keepEdgesInForeground</td></tr></table></blockquote>Specifies if edges should appear in the foreground regardless of their order in the model. </div></div><div class=CToolTip id="tt1959"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxStackLayout.prototype.keepFirstLocation</td></tr></table></blockquote>Boolean indicating if the location of the first cell should be kept, that is, it will not be moved to x0 or y0.</div></div><div class=CToolTip id="tt1960"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxCellHighlight.prototype.keepOnTop</td></tr></table></blockquote>Specifies if the highlights should appear on top of everything else in the overlay pane. </div></div><div class=CToolTip id="tt1961"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxGraph.prototype.keepSelectionVisibleOnZoom</td></tr></table></blockquote>Specifies if the viewport should automatically contain the selection cells after a zoom operation. </div></div><div class=CToolTip id="tt1962"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxKeyHandler.prototype.keyDown = function(</td><td class="PParameter prettyprint " nowrap>evt</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Handles the event by invoking the function bound to the respective keystroke if isEnabledForEvent returns true for the given event and if isEventIgnored returns false, except for escape for which isEventIgnored is not invoked.</div></div><div class=CToolTip id="tt1963"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxEditor.prototype.keyHandler</td></tr></table></blockquote>Holds a mxDefaultKeyHandler for handling keyboard events. </div></div><!--END_ND_TOOLTIPS-->
|
||||||
|
|
||||||
</div><!--Index-->
|
</div><!--Index-->
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -11,9 +11,9 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! · 0-9 · <a href="General.html#A">A</a> · <a href="General2.html#B">B</a> · <a href="General3.html#C">C</a> · <a href="General4.html#D">D</a> · <a href="General5.html#E">E</a> · <a href="General6.html#F">F</a> · <a href="General7.html#G">G</a> · <a href="General8.html#H">H</a> · <a href="General9.html#I">I</a> · <a href="General10.html#J">J</a> · <a href="General10.html#K">K</a> · <a href="General11.html#L">L</a> · <a href="General12.html#M">M</a> · <a href="General13.html#N">N</a> · <a href="General13.html#O">O</a> · <a href="General14.html#P">P</a> · <a href="#Q">Q</a> · <a href="General16.html#R">R</a> · <a href="General17.html#S">S</a> · <a href="General18.html#T">T</a> · <a href="General19.html#U">U</a> · <a href="General20.html#V">V</a> · <a href="General21.html#W">W</a> · <a href="General21.html#X">X</a> · <a href="General21.html#Y">Y</a> · <a href="General21.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="Q"></a>Q</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix> </td><td class=IEntry><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadOp" id=link2691 onMouseOver="ShowTip(event, 'tt2691', 'link2691')" onMouseOut="HideTip('tt2691')" class=ISymbol>quadOp</a>, <span class=IParent>mxAbstractCanvas2D</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix> </td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link2692 onMouseOver="ShowTip(event, 'tt2692', 'link2692')" onMouseOut="HideTip('tt2692')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link2693 onMouseOver="ShowTip(event, 'tt2693', 'link2693')" onMouseOut="HideTip('tt2693')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2694 onMouseOver="ShowTip(event, 'tt2694', 'link2694')" onMouseOut="HideTip('tt2694')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
|
<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! · 0-9 · <a href="General.html#A">A</a> · <a href="General2.html#B">B</a> · <a href="General3.html#C">C</a> · <a href="General4.html#D">D</a> · <a href="General5.html#E">E</a> · <a href="General6.html#F">F</a> · <a href="General7.html#G">G</a> · <a href="General8.html#H">H</a> · <a href="General9.html#I">I</a> · <a href="General10.html#J">J</a> · <a href="General10.html#K">K</a> · <a href="General11.html#L">L</a> · <a href="General12.html#M">M</a> · <a href="General13.html#N">N</a> · <a href="General13.html#O">O</a> · <a href="General14.html#P">P</a> · <a href="#Q">Q</a> · <a href="General16.html#R">R</a> · <a href="General17.html#S">S</a> · <a href="General18.html#T">T</a> · <a href="General19.html#U">U</a> · <a href="General20.html#V">V</a> · <a href="General21.html#W">W</a> · <a href="General21.html#X">X</a> · <a href="General21.html#Y">Y</a> · <a href="General21.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="Q"></a>Q</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix> </td><td class=IEntry><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadOp" id=link2694 onMouseOver="ShowTip(event, 'tt2694', 'link2694')" onMouseOut="HideTip('tt2694')" class=ISymbol>quadOp</a>, <span class=IParent>mxAbstractCanvas2D</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix> </td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link2695 onMouseOver="ShowTip(event, 'tt2695', 'link2695')" onMouseOut="HideTip('tt2695')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link2696 onMouseOver="ShowTip(event, 'tt2696', 'link2696')" onMouseOut="HideTip('tt2696')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2697 onMouseOver="ShowTip(event, 'tt2697', 'link2697')" onMouseOut="HideTip('tt2697')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
|
||||||
<!--START_ND_TOOLTIPS-->
|
<!--START_ND_TOOLTIPS-->
|
||||||
<div class=CToolTip id="tt2691"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxAbstractCanvas2D.prototype.quadOp</td></tr></table></blockquote>Contains the string used for quadratic paths. </div></div><div class=CToolTip id="tt2692"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxAbstractCanvas2D.prototype.quadTo = function(</td><td class="PParameter prettyprint " nowrap>x1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>x2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><div class=CToolTip id="tt2693"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxVmlCanvas2D.prototype.quadTo = function(</td><td class="PParameter prettyprint " nowrap>x1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>x2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Replaces quadratic curve with bezier curve in VML.</div></div><div class=CToolTip id="tt2694"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxXmlCanvas2D.prototype.quadTo = function(</td><td class="PParameter prettyprint " nowrap>x1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>x2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><!--END_ND_TOOLTIPS-->
|
<div class=CToolTip id="tt2694"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td class="prettyprint">mxAbstractCanvas2D.prototype.quadOp</td></tr></table></blockquote>Contains the string used for quadratic paths. </div></div><div class=CToolTip id="tt2695"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxAbstractCanvas2D.prototype.quadTo = function(</td><td class="PParameter prettyprint " nowrap>x1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>x2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><div class=CToolTip id="tt2696"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxVmlCanvas2D.prototype.quadTo = function(</td><td class="PParameter prettyprint " nowrap>x1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>x2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Replaces quadratic curve with bezier curve in VML.</div></div><div class=CToolTip id="tt2697"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class="PBeforeParameters prettyprint "nowrap>mxXmlCanvas2D.prototype.quadTo = function(</td><td class="PParameter prettyprint " nowrap>x1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y1,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>x2,</td></tr><tr><td></td><td class="PParameter prettyprint " nowrap>y2</td><td class="PAfterParameters prettyprint "nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><!--END_ND_TOOLTIPS-->
|
||||||
|
|
||||||
</div><!--Index-->
|
</div><!--Index-->
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,35 +1,5 @@
|
||||||
var indexSectionsWithContent = {
|
var indexSectionsWithContent = {
|
||||||
"General": {
|
"Classes": {
|
||||||
"Symbols": false,
|
|
||||||
"Numbers": false,
|
|
||||||
"A": true,
|
|
||||||
"B": true,
|
|
||||||
"C": true,
|
|
||||||
"D": true,
|
|
||||||
"E": true,
|
|
||||||
"F": true,
|
|
||||||
"G": true,
|
|
||||||
"H": true,
|
|
||||||
"I": true,
|
|
||||||
"J": true,
|
|
||||||
"K": true,
|
|
||||||
"L": true,
|
|
||||||
"M": true,
|
|
||||||
"N": true,
|
|
||||||
"O": true,
|
|
||||||
"P": true,
|
|
||||||
"Q": true,
|
|
||||||
"R": true,
|
|
||||||
"S": true,
|
|
||||||
"T": true,
|
|
||||||
"U": true,
|
|
||||||
"V": true,
|
|
||||||
"W": true,
|
|
||||||
"X": true,
|
|
||||||
"Y": true,
|
|
||||||
"Z": true
|
|
||||||
},
|
|
||||||
"Cookies": {
|
|
||||||
"Symbols": false,
|
"Symbols": false,
|
||||||
"Numbers": false,
|
"Numbers": false,
|
||||||
"A": false,
|
"A": false,
|
||||||
|
@ -54,69 +24,9 @@ var indexSectionsWithContent = {
|
||||||
"T": false,
|
"T": false,
|
||||||
"U": false,
|
"U": false,
|
||||||
"V": false,
|
"V": false,
|
||||||
"W": false,
|
|
||||||
"X": false,
|
|
||||||
"Y": false,
|
|
||||||
"Z": false
|
|
||||||
},
|
|
||||||
"Functions": {
|
|
||||||
"Symbols": false,
|
|
||||||
"Numbers": false,
|
|
||||||
"A": true,
|
|
||||||
"B": true,
|
|
||||||
"C": true,
|
|
||||||
"D": true,
|
|
||||||
"E": true,
|
|
||||||
"F": true,
|
|
||||||
"G": true,
|
|
||||||
"H": true,
|
|
||||||
"I": true,
|
|
||||||
"J": true,
|
|
||||||
"K": true,
|
|
||||||
"L": true,
|
|
||||||
"M": true,
|
|
||||||
"N": true,
|
|
||||||
"O": true,
|
|
||||||
"P": true,
|
|
||||||
"Q": true,
|
|
||||||
"R": true,
|
|
||||||
"S": true,
|
|
||||||
"T": true,
|
|
||||||
"U": true,
|
|
||||||
"V": true,
|
|
||||||
"W": true,
|
"W": true,
|
||||||
"X": false,
|
"X": false,
|
||||||
"Y": false,
|
"Y": false,
|
||||||
"Z": true
|
|
||||||
},
|
|
||||||
"Files": {
|
|
||||||
"Symbols": false,
|
|
||||||
"Numbers": false,
|
|
||||||
"A": true,
|
|
||||||
"B": false,
|
|
||||||
"C": false,
|
|
||||||
"D": false,
|
|
||||||
"E": false,
|
|
||||||
"F": false,
|
|
||||||
"G": false,
|
|
||||||
"H": false,
|
|
||||||
"I": false,
|
|
||||||
"J": false,
|
|
||||||
"K": false,
|
|
||||||
"L": false,
|
|
||||||
"M": true,
|
|
||||||
"N": false,
|
|
||||||
"O": false,
|
|
||||||
"P": false,
|
|
||||||
"Q": false,
|
|
||||||
"R": false,
|
|
||||||
"S": false,
|
|
||||||
"T": false,
|
|
||||||
"U": false,
|
|
||||||
"V": false,
|
|
||||||
"W": false,
|
|
||||||
"X": false,
|
|
||||||
"Y": false,
|
|
||||||
"Z": false
|
"Z": false
|
||||||
},
|
},
|
||||||
"Events": {
|
"Events": {
|
||||||
|
@ -149,6 +59,36 @@ var indexSectionsWithContent = {
|
||||||
"Y": false,
|
"Y": false,
|
||||||
"Z": false
|
"Z": false
|
||||||
},
|
},
|
||||||
|
"Cookies": {
|
||||||
|
"Symbols": false,
|
||||||
|
"Numbers": false,
|
||||||
|
"A": false,
|
||||||
|
"B": false,
|
||||||
|
"C": false,
|
||||||
|
"D": false,
|
||||||
|
"E": false,
|
||||||
|
"F": false,
|
||||||
|
"G": false,
|
||||||
|
"H": false,
|
||||||
|
"I": false,
|
||||||
|
"J": false,
|
||||||
|
"K": false,
|
||||||
|
"L": false,
|
||||||
|
"M": true,
|
||||||
|
"N": false,
|
||||||
|
"O": false,
|
||||||
|
"P": false,
|
||||||
|
"Q": false,
|
||||||
|
"R": false,
|
||||||
|
"S": false,
|
||||||
|
"T": false,
|
||||||
|
"U": false,
|
||||||
|
"V": false,
|
||||||
|
"W": false,
|
||||||
|
"X": false,
|
||||||
|
"Y": false,
|
||||||
|
"Z": false
|
||||||
|
},
|
||||||
"Variables": {
|
"Variables": {
|
||||||
"Symbols": false,
|
"Symbols": false,
|
||||||
"Numbers": false,
|
"Numbers": false,
|
||||||
|
@ -179,10 +119,70 @@ var indexSectionsWithContent = {
|
||||||
"Y": true,
|
"Y": true,
|
||||||
"Z": true
|
"Z": true
|
||||||
},
|
},
|
||||||
"Classes": {
|
"Functions": {
|
||||||
"Symbols": false,
|
"Symbols": false,
|
||||||
"Numbers": false,
|
"Numbers": false,
|
||||||
"A": false,
|
"A": true,
|
||||||
|
"B": true,
|
||||||
|
"C": true,
|
||||||
|
"D": true,
|
||||||
|
"E": true,
|
||||||
|
"F": true,
|
||||||
|
"G": true,
|
||||||
|
"H": true,
|
||||||
|
"I": true,
|
||||||
|
"J": true,
|
||||||
|
"K": true,
|
||||||
|
"L": true,
|
||||||
|
"M": true,
|
||||||
|
"N": true,
|
||||||
|
"O": true,
|
||||||
|
"P": true,
|
||||||
|
"Q": true,
|
||||||
|
"R": true,
|
||||||
|
"S": true,
|
||||||
|
"T": true,
|
||||||
|
"U": true,
|
||||||
|
"V": true,
|
||||||
|
"W": true,
|
||||||
|
"X": false,
|
||||||
|
"Y": false,
|
||||||
|
"Z": true
|
||||||
|
},
|
||||||
|
"General": {
|
||||||
|
"Symbols": false,
|
||||||
|
"Numbers": false,
|
||||||
|
"A": true,
|
||||||
|
"B": true,
|
||||||
|
"C": true,
|
||||||
|
"D": true,
|
||||||
|
"E": true,
|
||||||
|
"F": true,
|
||||||
|
"G": true,
|
||||||
|
"H": true,
|
||||||
|
"I": true,
|
||||||
|
"J": true,
|
||||||
|
"K": true,
|
||||||
|
"L": true,
|
||||||
|
"M": true,
|
||||||
|
"N": true,
|
||||||
|
"O": true,
|
||||||
|
"P": true,
|
||||||
|
"Q": true,
|
||||||
|
"R": true,
|
||||||
|
"S": true,
|
||||||
|
"T": true,
|
||||||
|
"U": true,
|
||||||
|
"V": true,
|
||||||
|
"W": true,
|
||||||
|
"X": true,
|
||||||
|
"Y": true,
|
||||||
|
"Z": true
|
||||||
|
},
|
||||||
|
"Files": {
|
||||||
|
"Symbols": false,
|
||||||
|
"Numbers": false,
|
||||||
|
"A": true,
|
||||||
"B": false,
|
"B": false,
|
||||||
"C": false,
|
"C": false,
|
||||||
"D": false,
|
"D": false,
|
||||||
|
@ -204,7 +204,7 @@ var indexSectionsWithContent = {
|
||||||
"T": false,
|
"T": false,
|
||||||
"U": false,
|
"U": false,
|
||||||
"V": false,
|
"V": false,
|
||||||
"W": true,
|
"W": false,
|
||||||
"X": false,
|
"X": false,
|
||||||
"Y": false,
|
"Y": false,
|
||||||
"Z": false
|
"Z": false
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -9,7 +9,7 @@
|
||||||
<h1>mxGraph User Manual – JavaScript Client</h1>
|
<h1>mxGraph User Manual – JavaScript Client</h1>
|
||||||
<br/>
|
<br/>
|
||||||
<br/>
|
<br/>
|
||||||
<p>mxGraph Version 4.0.0 – 11. March 2019</p>
|
<p>mxGraph Version 4.0.1 – 02. July 2019</p>
|
||||||
<p>Copyright (c) JGraph Ltd 2006-2017</p>
|
<p>Copyright (c) JGraph Ltd 2006-2017</p>
|
||||||
<br/>
|
<br/>
|
||||||
<p>All rights reserved. No part of this publication may be
|
<p>All rights reserved. No part of this publication may be
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<h1>JGraphX (JGraph 6) User Manual</h1>
|
<h1>JGraphX (JGraph 6) User Manual</h1>
|
||||||
<br/>
|
<br/>
|
||||||
<br/>
|
<br/>
|
||||||
<p>JGraphX Version 4.0.0 – 11. March 2019</p>
|
<p>JGraphX Version 4.0.1 – 02. July 2019</p>
|
||||||
<p>Copyright (c) JGraph Ltd 2006-2017</p>
|
<p>Copyright (c) JGraph Ltd 2006-2017</p>
|
||||||
<br/>
|
<br/>
|
||||||
<p>All rights reserved. No part of this publication may be
|
<p>All rights reserved. No part of this publication may be
|
||||||
|
|
|
@ -1,4 +1,64 @@
|
||||||
var indexSectionsWithContent = {
|
var indexSectionsWithContent = {
|
||||||
|
"Variables": {
|
||||||
|
"Symbols": false,
|
||||||
|
"Numbers": false,
|
||||||
|
"A": true,
|
||||||
|
"B": true,
|
||||||
|
"C": true,
|
||||||
|
"D": true,
|
||||||
|
"E": true,
|
||||||
|
"F": true,
|
||||||
|
"G": true,
|
||||||
|
"H": true,
|
||||||
|
"I": true,
|
||||||
|
"J": false,
|
||||||
|
"K": false,
|
||||||
|
"L": true,
|
||||||
|
"M": true,
|
||||||
|
"N": true,
|
||||||
|
"O": true,
|
||||||
|
"P": true,
|
||||||
|
"Q": false,
|
||||||
|
"R": true,
|
||||||
|
"S": true,
|
||||||
|
"T": true,
|
||||||
|
"U": true,
|
||||||
|
"V": true,
|
||||||
|
"W": true,
|
||||||
|
"X": true,
|
||||||
|
"Y": true,
|
||||||
|
"Z": false
|
||||||
|
},
|
||||||
|
"Functions": {
|
||||||
|
"Symbols": false,
|
||||||
|
"Numbers": false,
|
||||||
|
"A": true,
|
||||||
|
"B": true,
|
||||||
|
"C": true,
|
||||||
|
"D": true,
|
||||||
|
"E": true,
|
||||||
|
"F": true,
|
||||||
|
"G": true,
|
||||||
|
"H": false,
|
||||||
|
"I": true,
|
||||||
|
"J": false,
|
||||||
|
"K": false,
|
||||||
|
"L": true,
|
||||||
|
"M": true,
|
||||||
|
"N": false,
|
||||||
|
"O": true,
|
||||||
|
"P": true,
|
||||||
|
"Q": false,
|
||||||
|
"R": true,
|
||||||
|
"S": true,
|
||||||
|
"T": true,
|
||||||
|
"U": true,
|
||||||
|
"V": true,
|
||||||
|
"W": true,
|
||||||
|
"X": false,
|
||||||
|
"Y": false,
|
||||||
|
"Z": false
|
||||||
|
},
|
||||||
"Files": {
|
"Files": {
|
||||||
"Symbols": false,
|
"Symbols": false,
|
||||||
"Numbers": false,
|
"Numbers": false,
|
||||||
|
@ -59,66 +119,6 @@ var indexSectionsWithContent = {
|
||||||
"Y": true,
|
"Y": true,
|
||||||
"Z": false
|
"Z": false
|
||||||
},
|
},
|
||||||
"Classes": {
|
|
||||||
"Symbols": false,
|
|
||||||
"Numbers": false,
|
|
||||||
"A": false,
|
|
||||||
"B": false,
|
|
||||||
"C": false,
|
|
||||||
"D": false,
|
|
||||||
"E": false,
|
|
||||||
"F": false,
|
|
||||||
"G": false,
|
|
||||||
"H": false,
|
|
||||||
"I": false,
|
|
||||||
"J": false,
|
|
||||||
"K": false,
|
|
||||||
"L": false,
|
|
||||||
"M": true,
|
|
||||||
"N": false,
|
|
||||||
"O": false,
|
|
||||||
"P": false,
|
|
||||||
"Q": false,
|
|
||||||
"R": false,
|
|
||||||
"S": false,
|
|
||||||
"T": false,
|
|
||||||
"U": false,
|
|
||||||
"V": false,
|
|
||||||
"W": false,
|
|
||||||
"X": false,
|
|
||||||
"Y": false,
|
|
||||||
"Z": false
|
|
||||||
},
|
|
||||||
"Variables": {
|
|
||||||
"Symbols": false,
|
|
||||||
"Numbers": false,
|
|
||||||
"A": true,
|
|
||||||
"B": true,
|
|
||||||
"C": true,
|
|
||||||
"D": true,
|
|
||||||
"E": true,
|
|
||||||
"F": true,
|
|
||||||
"G": true,
|
|
||||||
"H": true,
|
|
||||||
"I": true,
|
|
||||||
"J": false,
|
|
||||||
"K": false,
|
|
||||||
"L": true,
|
|
||||||
"M": true,
|
|
||||||
"N": true,
|
|
||||||
"O": true,
|
|
||||||
"P": true,
|
|
||||||
"Q": false,
|
|
||||||
"R": true,
|
|
||||||
"S": true,
|
|
||||||
"T": true,
|
|
||||||
"U": true,
|
|
||||||
"V": true,
|
|
||||||
"W": true,
|
|
||||||
"X": true,
|
|
||||||
"Y": true,
|
|
||||||
"Z": false
|
|
||||||
},
|
|
||||||
"Interfaces": {
|
"Interfaces": {
|
||||||
"Symbols": false,
|
"Symbols": false,
|
||||||
"Numbers": false,
|
"Numbers": false,
|
||||||
|
@ -149,32 +149,32 @@ var indexSectionsWithContent = {
|
||||||
"Y": false,
|
"Y": false,
|
||||||
"Z": false
|
"Z": false
|
||||||
},
|
},
|
||||||
"Functions": {
|
"Classes": {
|
||||||
"Symbols": false,
|
"Symbols": false,
|
||||||
"Numbers": false,
|
"Numbers": false,
|
||||||
"A": true,
|
"A": false,
|
||||||
"B": true,
|
"B": false,
|
||||||
"C": true,
|
"C": false,
|
||||||
"D": true,
|
"D": false,
|
||||||
"E": true,
|
"E": false,
|
||||||
"F": true,
|
"F": false,
|
||||||
"G": true,
|
"G": false,
|
||||||
"H": false,
|
"H": false,
|
||||||
"I": true,
|
"I": false,
|
||||||
"J": false,
|
"J": false,
|
||||||
"K": false,
|
"K": false,
|
||||||
"L": true,
|
"L": false,
|
||||||
"M": true,
|
"M": true,
|
||||||
"N": false,
|
"N": false,
|
||||||
"O": true,
|
"O": false,
|
||||||
"P": true,
|
"P": false,
|
||||||
"Q": false,
|
"Q": false,
|
||||||
"R": true,
|
"R": false,
|
||||||
"S": true,
|
"S": false,
|
||||||
"T": true,
|
"T": false,
|
||||||
"U": true,
|
"U": false,
|
||||||
"V": true,
|
"V": false,
|
||||||
"W": true,
|
"W": false,
|
||||||
"X": false,
|
"X": false,
|
||||||
"Y": false,
|
"Y": false,
|
||||||
"Z": false
|
"Z": false
|
||||||
|
|
|
@ -277,8 +277,8 @@ Public Member Functions</h2></td></tr>
|
||||||
</table><table class="memberdecls">
|
</table><table class="memberdecls">
|
||||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
|
||||||
Public Attributes</h2></td></tr>
|
Public Attributes</h2></td></tr>
|
||||||
<tr class="memitem:a12b4a8dcf881951589ccca36c7ebfccb"><td class="memItemLeft" align="right" valign="top">const String </td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">VERSION</a> = "4.0.0"</td></tr>
|
<tr class="memitem:a12b4a8dcf881951589ccca36c7ebfccb"><td class="memItemLeft" align="right" valign="top">const String </td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">VERSION</a> = "4.0.1"</td></tr>
|
||||||
<tr class="memdesc:a12b4a8dcf881951589ccca36c7ebfccb"><td class="mdescLeft"> </td><td class="mdescRight">Holds the version number of this release. Current version is 4.0.0. <a href="#a12b4a8dcf881951589ccca36c7ebfccb">More...</a><br /></td></tr>
|
<tr class="memdesc:a12b4a8dcf881951589ccca36c7ebfccb"><td class="mdescLeft"> </td><td class="mdescRight">Holds the version number of this release. Current version is 4.0.1. <a href="#a12b4a8dcf881951589ccca36c7ebfccb">More...</a><br /></td></tr>
|
||||||
<tr class="separator:a12b4a8dcf881951589ccca36c7ebfccb"><td class="memSeparator" colspan="2"> </td></tr>
|
<tr class="separator:a12b4a8dcf881951589ccca36c7ebfccb"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
</table><table class="memberdecls">
|
</table><table class="memberdecls">
|
||||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
|
||||||
|
@ -3890,12 +3890,12 @@ Properties</h2></td></tr>
|
||||||
<div class="memproto">
|
<div class="memproto">
|
||||||
<table class="memname">
|
<table class="memname">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="memname">const String com.mxgraph.mxGraph.VERSION = "4.0.0"</td>
|
<td class="memname">const String com.mxgraph.mxGraph.VERSION = "4.0.1"</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div><div class="memdoc">
|
</div><div class="memdoc">
|
||||||
|
|
||||||
<p>Holds the version number of this release. Current version is 4.0.0. </p>
|
<p>Holds the version number of this release. Current version is 4.0.1. </p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -15,9 +15,9 @@ namespace com.mxgraph
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Holds the version number of this release. Current version
|
/// Holds the version number of this release. Current version
|
||||||
/// is 4.0.0.
|
/// is 4.0.1.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public const String VERSION = "4.0.0";
|
public const String VERSION = "4.0.1";
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Holds the model that contains the cells to be displayed.
|
/// Holds the model that contains the cells to be displayed.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>mxGraph 4.0.0</title>
|
<title>mxGraph 4.0.1</title>
|
||||||
<link rel="stylesheet" href="docs/css/manual-styles.css">
|
<link rel="stylesheet" href="docs/css/manual-styles.css">
|
||||||
<link rel="stylesheet" href="docs/css/manual-colors.css">
|
<link rel="stylesheet" href="docs/css/manual-colors.css">
|
||||||
</head>
|
</head>
|
||||||
|
@ -9,12 +9,12 @@
|
||||||
<center>
|
<center>
|
||||||
<img src="docs/images/mxgraph_logo.gif" alt="mxGraph"/><br/>
|
<img src="docs/images/mxgraph_logo.gif" alt="mxGraph"/><br/>
|
||||||
<font size="-1"><i>
|
<font size="-1"><i>
|
||||||
Version 4.0.0 – 11. March 2019
|
Version 4.0.1 – 02. July 2019
|
||||||
</i></font>
|
</i></font>
|
||||||
</center>
|
</center>
|
||||||
<br/>
|
<br/>
|
||||||
<br/>
|
<br/>
|
||||||
<h1>mxGraph 4.0.0</h1>
|
<h1>mxGraph 4.0.1</h1>
|
||||||
<p>
|
<p>
|
||||||
mxGraph is a JavaScript diagramming library that enables interactive graph
|
mxGraph is a JavaScript diagramming library that enables interactive graph
|
||||||
and charting applications to be quickly created that run natively in any
|
and charting applications to be quickly created that run natively in any
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<project name="mxgraph" default="all" basedir=".">
|
<project name="mxgraph" default="all" basedir=".">
|
||||||
|
|
||||||
<property name="product.name" value="mxGraph"/>
|
<property name="product.name" value="mxGraph"/>
|
||||||
<property name="product.version" value="4.0.0"/>
|
<property name="product.version" value="4.0.1"/>
|
||||||
<property name="all.jar" value="mxgraph-all.jar"/>
|
<property name="all.jar" value="mxgraph-all.jar"/>
|
||||||
<property name="core.jar" value="mxgraph-core.jar"/>
|
<property name="core.jar" value="mxgraph-core.jar"/>
|
||||||
<property name="swing.jar" value="mxgraph-swing.jar"/>
|
<property name="swing.jar" value="mxgraph-swing.jar"/>
|
||||||
|
|
|
@ -1,261 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!-- NewPage -->
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
|
||||||
<title>All Classes (mxGraph 4.0.0 API Specification)</title>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
||||||
<meta name="date" content="2019-03-11">
|
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
|
||||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
|
||||||
<script type="text/javascript" src="script.js"></script>
|
|
||||||
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
|
|
||||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
|
|
||||||
<!--[if IE]>
|
|
||||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
<script type="text/javascript" src="jquery/jquery-1.10.2.js"></script>
|
|
||||||
<script type="text/javascript" src="jquery/jquery-ui.js"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1 class="bar">All Classes</h1>
|
|
||||||
<div class="indexContainer">
|
|
||||||
<ul>
|
|
||||||
<li><a href="com/mxgraph/util/svg/AbstractParser.html" title="class in com.mxgraph.util.svg" target="classFrame">AbstractParser</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/AWTPathProducer.html" title="class in com.mxgraph.util.svg" target="classFrame">AWTPathProducer</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/AWTPolygonProducer.html" title="class in com.mxgraph.util.svg" target="classFrame">AWTPolygonProducer</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/AWTPolylineProducer.html" title="class in com.mxgraph.util.svg" target="classFrame">AWTPolylineProducer</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/CSSConstants.html" title="interface in com.mxgraph.util.svg" target="classFrame"><span class="interfaceName">CSSConstants</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/DefaultErrorHandler.html" title="class in com.mxgraph.util.svg" target="classFrame">DefaultErrorHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/ErrorHandler.html" title="interface in com.mxgraph.util.svg" target="classFrame"><span class="interfaceName">ErrorHandler</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/ExtendedGeneralPath.html" title="class in com.mxgraph.util.svg" target="classFrame">ExtendedGeneralPath</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/ExtendedPathIterator.html" title="interface in com.mxgraph.util.svg" target="classFrame"><span class="interfaceName">ExtendedPathIterator</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxActorShape.html" title="class in com.mxgraph.shape" target="classFrame">mxActorShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis" target="classFrame">mxAnalysisGraph</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxAnimation.html" title="class in com.mxgraph.swing.util" target="classFrame">mxAnimation</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxArrowShape.html" title="class in com.mxgraph.shape" target="classFrame">mxArrowShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxBase64.html" title="class in com.mxgraph.util" target="classFrame">mxBase64</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxBasicCanvas.html" title="class in com.mxgraph.canvas" target="classFrame">mxBasicCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxBasicShape.html" title="class in com.mxgraph.shape" target="classFrame">mxBasicShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxCell.html" title="class in com.mxgraph.model" target="classFrame">mxCell</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxCellCodec.html" title="class in com.mxgraph.io" target="classFrame">mxCellCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/view/mxCellEditor.html" title="class in com.mxgraph.swing.view" target="classFrame">mxCellEditor</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxCellHandler.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxCellHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxCellMarker.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxCellMarker</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxCellOverlay.html" title="class in com.mxgraph.swing.util" target="classFrame">mxCellOverlay</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxCellPath.html" title="class in com.mxgraph.model" target="classFrame">mxCellPath</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxCellRenderer.html" title="class in com.mxgraph.util" target="classFrame">mxCellRenderer</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxCellRenderer.CanvasFactory.html" title="class in com.mxgraph.util" target="classFrame">mxCellRenderer.CanvasFactory</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view" target="classFrame">mxCellState</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/view/mxCellStatePreview.html" title="class in com.mxgraph.swing.view" target="classFrame">mxCellStatePreview</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxCellTracker.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxCellTracker</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxChildChangeCodec.html" title="class in com.mxgraph.io" target="classFrame">mxChildChangeCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxCircleLayout.html" title="class in com.mxgraph.layout" target="classFrame">mxCircleLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxCloudShape.html" title="class in com.mxgraph.shape" target="classFrame">mxCloudShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxCodec.html" title="class in com.mxgraph.io" target="classFrame">mxCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxCodecRegistry.html" title="class in com.mxgraph.io" target="classFrame">mxCodecRegistry</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxCompactTreeLayout.html" title="class in com.mxgraph.layout" target="classFrame">mxCompactTreeLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxCompactTreeLayout.Polygon.html" title="class in com.mxgraph.layout" target="classFrame">mxCompactTreeLayout.Polygon</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxCompactTreeLayout.Polyline.html" title="class in com.mxgraph.layout" target="classFrame">mxCompactTreeLayout.Polyline</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html" title="class in com.mxgraph.layout" target="classFrame">mxCompactTreeLayout.TreeNode</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxConnectionConstraint.html" title="class in com.mxgraph.view" target="classFrame">mxConnectionConstraint</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxConnectionHandler.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxConnectionHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxConnectorShape.html" title="class in com.mxgraph.shape" target="classFrame">mxConnectorShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxConnectPreview.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxConnectPreview</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxConstantCostFunction.html" title="class in com.mxgraph.analysis" target="classFrame">mxConstantCostFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxConstants.html" title="class in com.mxgraph.util" target="classFrame">mxConstants</a></li>
|
|
||||||
<li><a href="com/mxgraph/costfunction/mxConstCostFunction.html" title="class in com.mxgraph.costfunction" target="classFrame">mxConstCostFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html" title="class in com.mxgraph.layout.hierarchical.stage" target="classFrame">mxCoordinateAssignment</a></li>
|
|
||||||
<li><a href="com/mxgraph/costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction" target="classFrame">mxCostFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxCurve.html" title="class in com.mxgraph.util" target="classFrame">mxCurve</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxCurveLabelShape.html" title="class in com.mxgraph.shape" target="classFrame">mxCurveLabelShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxCurveShape.html" title="class in com.mxgraph.shape" target="classFrame">mxCurveShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxCylinderShape.html" title="class in com.mxgraph.shape" target="classFrame">mxCylinderShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxDefaultTextShape.html" title="class in com.mxgraph.shape" target="classFrame">mxDefaultTextShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxDistanceCostFunction.html" title="class in com.mxgraph.analysis" target="classFrame">mxDistanceCostFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/reader/mxDomOutputParser.html" title="class in com.mxgraph.reader" target="classFrame">mxDomOutputParser</a></li>
|
|
||||||
<li><a href="com/mxgraph/reader/mxDomOutputParser.IElementHandler.html" title="interface in com.mxgraph.reader" target="classFrame"><span class="interfaceName">mxDomOutputParser.IElementHandler</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxDomUtils.html" title="class in com.mxgraph.util" target="classFrame">mxDomUtils</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxDoubleEllipseShape.html" title="class in com.mxgraph.shape" target="classFrame">mxDoubleEllipseShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxDoubleRectangleShape.html" title="class in com.mxgraph.shape" target="classFrame">mxDoubleRectangleShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/costfunction/mxDoubleValCostFunction.html" title="class in com.mxgraph.costfunction" target="classFrame">mxDoubleValCostFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxEdgeHandler.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxEdgeHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxEdgeLabelLayout.html" title="class in com.mxgraph.layout" target="classFrame">mxEdgeLabelLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxEdgeStyle.html" title="class in com.mxgraph.view" target="classFrame">mxEdgeStyle</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html" title="interface in com.mxgraph.view" target="classFrame"><span class="interfaceName">mxEdgeStyle.mxEdgeStyleFunction</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxElbowEdgeHandler.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxElbowEdgeHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxEllipseShape.html" title="class in com.mxgraph.shape" target="classFrame">mxEllipseShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxEvent.html" title="class in com.mxgraph.util" target="classFrame">mxEvent</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxEventObject.html" title="class in com.mxgraph.util" target="classFrame">mxEventObject</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxEventSource.html" title="class in com.mxgraph.util" target="classFrame">mxEventSource</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxEventSource.mxIEventListener.html" title="interface in com.mxgraph.util" target="classFrame"><span class="interfaceName">mxEventSource.mxIEventListener</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxFastOrganicLayout.html" title="class in com.mxgraph.layout" target="classFrame">mxFastOrganicLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis" target="classFrame">mxFibonacciHeap</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis" target="classFrame">mxFibonacciHeap.Node</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxGdCodec.html" title="class in com.mxgraph.io" target="classFrame">mxGdCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxGdCodec.mxGDParseState.html" title="enum in com.mxgraph.io" target="classFrame">mxGdCodec.mxGDParseState</a></li>
|
|
||||||
<li><a href="com/mxgraph/generatorfunction/mxGeneratorConstFunction.html" title="class in com.mxgraph.generatorfunction" target="classFrame">mxGeneratorConstFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction" target="classFrame">mxGeneratorFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/generatorfunction/mxGeneratorRandomFunction.html" title="class in com.mxgraph.generatorfunction" target="classFrame">mxGeneratorRandomFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/generatorfunction/mxGeneratorRandomIntFunction.html" title="class in com.mxgraph.generatorfunction" target="classFrame">mxGeneratorRandomIntFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxGenericChangeCodec.html" title="class in com.mxgraph.io" target="classFrame">mxGenericChangeCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGeometry.html" title="class in com.mxgraph.model" target="classFrame">mxGeometry</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view" target="classFrame">mxGraph</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxGraph.mxICellVisitor.html" title="interface in com.mxgraph.view" target="classFrame"><span class="interfaceName">mxGraph.mxICellVisitor</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html" title="class in com.mxgraph.layout.hierarchical.model" target="classFrame">mxGraphAbstractHierarchyCell</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.html" title="class in com.mxgraph.swing.util" target="classFrame">mxGraphActions</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.DeleteAction.html" title="class in com.mxgraph.swing.util" target="classFrame">mxGraphActions.DeleteAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.DrillAction.html" title="class in com.mxgraph.swing.util" target="classFrame">mxGraphActions.DrillAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.EditAction.html" title="class in com.mxgraph.swing.util" target="classFrame">mxGraphActions.EditAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.FoldAction.html" title="class in com.mxgraph.swing.util" target="classFrame">mxGraphActions.FoldAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.GroupAction.html" title="class in com.mxgraph.swing.util" target="classFrame">mxGraphActions.GroupAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.LayerAction.html" title="class in com.mxgraph.swing.util" target="classFrame">mxGraphActions.LayerAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html" title="class in com.mxgraph.swing.util" target="classFrame">mxGraphActions.RemoveFromParentAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.SelectAction.html" title="class in com.mxgraph.swing.util" target="classFrame">mxGraphActions.SelectAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.UngroupAction.html" title="class in com.mxgraph.swing.util" target="classFrame">mxGraphActions.UngroupAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html" title="class in com.mxgraph.swing.util" target="classFrame">mxGraphActions.UpdateGroupBoundsAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.ZoomAction.html" title="class in com.mxgraph.swing.util" target="classFrame">mxGraphActions.ZoomAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis" target="classFrame">mxGraphAnalysis</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/mxGraphComponent.html" title="class in com.mxgraph.swing" target="classFrame">mxGraphComponent</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html" title="class in com.mxgraph.swing" target="classFrame">mxGraphComponent.mxMouseRedirector</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis" target="classFrame">mxGraphGenerator</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxGraphHandler.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxGraphHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html" title="class in com.mxgraph.layout.hierarchical.model" target="classFrame">mxGraphHierarchyEdge</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html" title="class in com.mxgraph.layout.hierarchical.model" target="classFrame">mxGraphHierarchyModel</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html" title="interface in com.mxgraph.layout.hierarchical.model" target="classFrame"><span class="interfaceName">mxGraphHierarchyModel.CellVisitor</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html" title="class in com.mxgraph.layout.hierarchical.model" target="classFrame">mxGraphHierarchyNode</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html" title="class in com.mxgraph.layout.hierarchical.model" target="classFrame">mxGraphHierarchyRank</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxGraphics2DCanvas.html" title="class in com.mxgraph.canvas" target="classFrame">mxGraphics2DCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxGraphicsCanvas2D.html" title="class in com.mxgraph.canvas" target="classFrame">mxGraphicsCanvas2D</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxGraphLayout.html" title="class in com.mxgraph.layout" target="classFrame">mxGraphLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.html" title="class in com.mxgraph.model" target="classFrame">mxGraphModel</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.Filter.html" title="interface in com.mxgraph.model" target="classFrame"><span class="interfaceName">mxGraphModel.Filter</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxChildChange.html" title="class in com.mxgraph.model" target="classFrame">mxGraphModel.mxChildChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxCollapseChange.html" title="class in com.mxgraph.model" target="classFrame">mxGraphModel.mxCollapseChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxGeometryChange.html" title="class in com.mxgraph.model" target="classFrame">mxGraphModel.mxGeometryChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxRootChange.html" title="class in com.mxgraph.model" target="classFrame">mxGraphModel.mxRootChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxStyleChange.html" title="class in com.mxgraph.model" target="classFrame">mxGraphModel.mxStyleChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxTerminalChange.html" title="class in com.mxgraph.model" target="classFrame">mxGraphModel.mxTerminalChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxValueChange.html" title="class in com.mxgraph.model" target="classFrame">mxGraphModel.mxValueChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxVisibleChange.html" title="class in com.mxgraph.model" target="classFrame">mxGraphModel.mxVisibleChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/mxGraphOutline.html" title="class in com.mxgraph.swing" target="classFrame">mxGraphOutline</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxGraphProperties.html" title="class in com.mxgraph.analysis" target="classFrame">mxGraphProperties</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis" target="classFrame">mxGraphProperties.GraphType</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxGraphSelectionModel.html" title="class in com.mxgraph.view" target="classFrame">mxGraphSelectionModel</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html" title="class in com.mxgraph.view" target="classFrame">mxGraphSelectionModel.mxSelectionChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxGraphStructure.html" title="class in com.mxgraph.analysis" target="classFrame">mxGraphStructure</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphTransferable.html" title="class in com.mxgraph.swing.util" target="classFrame">mxGraphTransferable</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxGraphTransferHandler.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxGraphTransferHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxGraphView.html" title="class in com.mxgraph.view" target="classFrame">mxGraphView</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxGraphView.mxCurrentRootChange.html" title="class in com.mxgraph.view" target="classFrame">mxGraphView.mxCurrentRootChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/reader/mxGraphViewImageReader.html" title="class in com.mxgraph.reader" target="classFrame">mxGraphViewImageReader</a></li>
|
|
||||||
<li><a href="com/mxgraph/reader/mxGraphViewReader.html" title="class in com.mxgraph.reader" target="classFrame">mxGraphViewReader</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxHexagonShape.html" title="class in com.mxgraph.shape" target="classFrame">mxHexagonShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html" title="class in com.mxgraph.layout.hierarchical" target="classFrame">mxHierarchicalLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html" title="interface in com.mxgraph.layout.hierarchical.stage" target="classFrame"><span class="interfaceName">mxHierarchicalLayoutStage</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxHtmlCanvas.html" title="class in com.mxgraph.canvas" target="classFrame">mxHtmlCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxHtmlColor.html" title="class in com.mxgraph.util" target="classFrame">mxHtmlColor</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxHtmlTextShape.html" title="class in com.mxgraph.shape" target="classFrame">mxHtmlTextShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxICanvas.html" title="interface in com.mxgraph.canvas" target="classFrame"><span class="interfaceName">mxICanvas</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxICanvas2D.html" title="interface in com.mxgraph.canvas" target="classFrame"><span class="interfaceName">mxICanvas2D</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxICell.html" title="interface in com.mxgraph.model" target="classFrame"><span class="interfaceName">mxICell</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/view/mxICellEditor.html" title="interface in com.mxgraph.swing.view" target="classFrame"><span class="interfaceName">mxICellEditor</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxICellOverlay.html" title="interface in com.mxgraph.swing.util" target="classFrame"><span class="interfaceName">mxICellOverlay</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis" target="classFrame"><span class="interfaceName">mxICostFunction</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxIGraphLayout.html" title="interface in com.mxgraph.layout" target="classFrame"><span class="interfaceName">mxIGraphLayout</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxIGraphModel.html" title="interface in com.mxgraph.model" target="classFrame"><span class="interfaceName">mxIGraphModel</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html" title="class in com.mxgraph.model" target="classFrame">mxIGraphModel.mxAtomicGraphModelChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxImage.html" title="class in com.mxgraph.util" target="classFrame">mxImage</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxImageBundle.html" title="class in com.mxgraph.util" target="classFrame">mxImageBundle</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxImageCanvas.html" title="class in com.mxgraph.canvas" target="classFrame">mxImageCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxImageShape.html" title="class in com.mxgraph.shape" target="classFrame">mxImageShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxIMarker.html" title="interface in com.mxgraph.shape" target="classFrame"><span class="interfaceName">mxIMarker</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxInsertHandler.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxInsertHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/view/mxInteractiveCanvas.html" title="class in com.mxgraph.swing.view" target="classFrame">mxInteractiveCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxIShape.html" title="interface in com.mxgraph.shape" target="classFrame"><span class="interfaceName">mxIShape</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxITextShape.html" title="interface in com.mxgraph.shape" target="classFrame"><span class="interfaceName">mxITextShape</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxKeyboardHandler.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxKeyboardHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxLabelShape.html" title="class in com.mxgraph.shape" target="classFrame">mxLabelShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxLayoutManager.html" title="class in com.mxgraph.view" target="classFrame">mxLayoutManager</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxLightweightLabel.html" title="class in com.mxgraph.util" target="classFrame">mxLightweightLabel</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxLine.html" title="class in com.mxgraph.util" target="classFrame">mxLine</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxLineShape.html" title="class in com.mxgraph.shape" target="classFrame">mxLineShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxMarkerRegistry.html" title="class in com.mxgraph.shape" target="classFrame">mxMarkerRegistry</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html" title="class in com.mxgraph.layout.hierarchical.stage" target="classFrame">mxMedianHybridCrossingReduction</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html" title="class in com.mxgraph.layout.hierarchical.stage" target="classFrame">mxMinimumCycleRemover</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxModelCodec.html" title="class in com.mxgraph.io" target="classFrame">mxModelCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxMorphing.html" title="class in com.mxgraph.swing.util" target="classFrame">mxMorphing</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxMouseAdapter.html" title="class in com.mxgraph.swing.util" target="classFrame">mxMouseAdapter</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxMovePreview.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxMovePreview</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxMultiplicity.html" title="class in com.mxgraph.view" target="classFrame">mxMultiplicity</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxObjectCodec.html" title="class in com.mxgraph.io" target="classFrame">mxObjectCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxOrganicLayout.html" title="class in com.mxgraph.layout" target="classFrame">mxOrganicLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html" title="class in com.mxgraph.layout.orthogonal" target="classFrame">mxOrthogonalLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html" title="class in com.mxgraph.layout.orthogonal.model" target="classFrame">mxOrthogonalModel</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxPanningHandler.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxPanningHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxParallelEdgeLayout.html" title="class in com.mxgraph.layout" target="classFrame">mxParallelEdgeLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxPartitionLayout.html" title="class in com.mxgraph.layout" target="classFrame">mxPartitionLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxPerimeter.html" title="class in com.mxgraph.view" target="classFrame">mxPerimeter</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html" title="interface in com.mxgraph.view" target="classFrame"><span class="interfaceName">mxPerimeter.mxPerimeterFunction</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngEncodeParam.html" title="class in com.mxgraph.util.png" target="classFrame">mxPngEncodeParam</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngEncodeParam.Gray.html" title="class in com.mxgraph.util.png" target="classFrame">mxPngEncodeParam.Gray</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngEncodeParam.Palette.html" title="class in com.mxgraph.util.png" target="classFrame">mxPngEncodeParam.Palette</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngEncodeParam.RGB.html" title="class in com.mxgraph.util.png" target="classFrame">mxPngEncodeParam.RGB</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngImageEncoder.html" title="class in com.mxgraph.util.png" target="classFrame">mxPngImageEncoder</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html" title="class in com.mxgraph.util.png" target="classFrame">mxPngSuggestedPaletteEntry</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngTextDecoder.html" title="class in com.mxgraph.util.png" target="classFrame">mxPngTextDecoder</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxPoint.html" title="class in com.mxgraph.util" target="classFrame">mxPoint</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/orthogonal/model/mxPointPair.html" title="class in com.mxgraph.layout.orthogonal.model" target="classFrame">mxPointPair</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/orthogonal/model/mxPointSequence.html" title="class in com.mxgraph.layout.orthogonal.model" target="classFrame">mxPointSequence</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxRectangle.html" title="class in com.mxgraph.util" target="classFrame">mxRectangle</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxRectangleShape.html" title="class in com.mxgraph.shape" target="classFrame">mxRectangleShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxResources.html" title="class in com.mxgraph.util" target="classFrame">mxResources</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxRhombusShape.html" title="class in com.mxgraph.shape" target="classFrame">mxRhombusShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxRootChangeCodec.html" title="class in com.mxgraph.io" target="classFrame">mxRootChangeCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxRotationHandler.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxRotationHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxRubberband.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxRubberband</a></li>
|
|
||||||
<li><a href="com/mxgraph/reader/mxSaxOutputHandler.html" title="class in com.mxgraph.reader" target="classFrame">mxSaxOutputHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html" title="interface in com.mxgraph.reader" target="classFrame"><span class="interfaceName">mxSaxOutputHandler.IElementHandler</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/orthogonal/model/mxSegment.html" title="class in com.mxgraph.layout.orthogonal.model" target="classFrame">mxSegment</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxSelectionCellsHandler.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxSelectionCellsHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxSpline.html" title="class in com.mxgraph.util" target="classFrame">mxSpline</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxSpline1D.html" title="class in com.mxgraph.util" target="classFrame">mxSpline1D</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxStackLayout.html" title="class in com.mxgraph.layout" target="classFrame">mxStackLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxStencil.html" title="class in com.mxgraph.shape" target="classFrame">mxStencil</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxStencilRegistry.html" title="class in com.mxgraph.shape" target="classFrame">mxStencilRegistry</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxStencilShape.html" title="class in com.mxgraph.shape" target="classFrame">mxStencilShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxStyleRegistry.html" title="class in com.mxgraph.view" target="classFrame">mxStyleRegistry</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxStylesheet.html" title="class in com.mxgraph.view" target="classFrame">mxStylesheet</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxStylesheetCodec.html" title="class in com.mxgraph.io" target="classFrame">mxStylesheetCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxStyleUtils.html" title="class in com.mxgraph.util" target="classFrame">mxStyleUtils</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxSvgCanvas.html" title="class in com.mxgraph.canvas" target="classFrame">mxSvgCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxSwimlaneManager.html" title="class in com.mxgraph.view" target="classFrame">mxSwimlaneManager</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxSwimlaneShape.html" title="class in com.mxgraph.shape" target="classFrame">mxSwimlaneShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxSwingConstants.html" title="class in com.mxgraph.swing.util" target="classFrame">mxSwingConstants</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxTemporaryCellStates.html" title="class in com.mxgraph.view" target="classFrame">mxTemporaryCellStates</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxTerminalChangeCodec.html" title="class in com.mxgraph.io" target="classFrame">mxTerminalChangeCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxTraversal.html" title="class in com.mxgraph.analysis" target="classFrame">mxTraversal</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxTriangleShape.html" title="class in com.mxgraph.shape" target="classFrame">mxTriangleShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxUndoableEdit.html" title="class in com.mxgraph.util" target="classFrame">mxUndoableEdit</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html" title="interface in com.mxgraph.util" target="classFrame"><span class="interfaceName">mxUndoableEdit.mxUndoableChange</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxUndoManager.html" title="class in com.mxgraph.util" target="classFrame">mxUndoManager</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxUnionFind.html" title="class in com.mxgraph.analysis" target="classFrame">mxUnionFind</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxUtils.html" title="class in com.mxgraph.util" target="classFrame">mxUtils</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxVertexHandler.html" title="class in com.mxgraph.swing.handler" target="classFrame">mxVertexHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxVmlCanvas.html" title="class in com.mxgraph.canvas" target="classFrame">mxVmlCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxXmlUtils.html" title="class in com.mxgraph.util" target="classFrame">mxXmlUtils</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/NormalizingReader.html" title="class in com.mxgraph.util.svg" target="classFrame">NormalizingReader</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/NumberParser.html" title="class in com.mxgraph.util.svg" target="classFrame">NumberParser</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/ParseException.html" title="class in com.mxgraph.util.svg" target="classFrame">ParseException</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/Parser.html" title="interface in com.mxgraph.util.svg" target="classFrame"><span class="interfaceName">Parser</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/PathHandler.html" title="interface in com.mxgraph.util.svg" target="classFrame"><span class="interfaceName">PathHandler</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/PathParser.html" title="class in com.mxgraph.util.svg" target="classFrame">PathParser</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/PointsHandler.html" title="interface in com.mxgraph.util.svg" target="classFrame"><span class="interfaceName">PointsHandler</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/PointsParser.html" title="class in com.mxgraph.util.svg" target="classFrame">PointsParser</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/ShapeProducer.html" title="interface in com.mxgraph.util.svg" target="classFrame"><span class="interfaceName">ShapeProducer</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/StringNormalizingReader.html" title="class in com.mxgraph.util.svg" target="classFrame">StringNormalizingReader</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/StructuralException.html" title="class in com.mxgraph.analysis" target="classFrame">StructuralException</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,261 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!-- NewPage -->
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
|
||||||
<title>All Classes (mxGraph 4.0.0 API Specification)</title>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
||||||
<meta name="date" content="2019-03-11">
|
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
|
||||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
|
||||||
<script type="text/javascript" src="script.js"></script>
|
|
||||||
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
|
|
||||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
|
|
||||||
<!--[if IE]>
|
|
||||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
<script type="text/javascript" src="jquery/jquery-1.10.2.js"></script>
|
|
||||||
<script type="text/javascript" src="jquery/jquery-ui.js"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1 class="bar">All Classes</h1>
|
|
||||||
<div class="indexContainer">
|
|
||||||
<ul>
|
|
||||||
<li><a href="com/mxgraph/util/svg/AbstractParser.html" title="class in com.mxgraph.util.svg">AbstractParser</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/AWTPathProducer.html" title="class in com.mxgraph.util.svg">AWTPathProducer</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/AWTPolygonProducer.html" title="class in com.mxgraph.util.svg">AWTPolygonProducer</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/AWTPolylineProducer.html" title="class in com.mxgraph.util.svg">AWTPolylineProducer</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/CSSConstants.html" title="interface in com.mxgraph.util.svg"><span class="interfaceName">CSSConstants</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/DefaultErrorHandler.html" title="class in com.mxgraph.util.svg">DefaultErrorHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/ErrorHandler.html" title="interface in com.mxgraph.util.svg"><span class="interfaceName">ErrorHandler</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/ExtendedGeneralPath.html" title="class in com.mxgraph.util.svg">ExtendedGeneralPath</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/ExtendedPathIterator.html" title="interface in com.mxgraph.util.svg"><span class="interfaceName">ExtendedPathIterator</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxActorShape.html" title="class in com.mxgraph.shape">mxActorShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxAnimation.html" title="class in com.mxgraph.swing.util">mxAnimation</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxArrowShape.html" title="class in com.mxgraph.shape">mxArrowShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxBase64.html" title="class in com.mxgraph.util">mxBase64</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxBasicCanvas.html" title="class in com.mxgraph.canvas">mxBasicCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxCell.html" title="class in com.mxgraph.model">mxCell</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxCellCodec.html" title="class in com.mxgraph.io">mxCellCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/view/mxCellEditor.html" title="class in com.mxgraph.swing.view">mxCellEditor</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxCellHandler.html" title="class in com.mxgraph.swing.handler">mxCellHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxCellMarker.html" title="class in com.mxgraph.swing.handler">mxCellMarker</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxCellOverlay.html" title="class in com.mxgraph.swing.util">mxCellOverlay</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxCellPath.html" title="class in com.mxgraph.model">mxCellPath</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxCellRenderer.html" title="class in com.mxgraph.util">mxCellRenderer</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxCellRenderer.CanvasFactory.html" title="class in com.mxgraph.util">mxCellRenderer.CanvasFactory</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/view/mxCellStatePreview.html" title="class in com.mxgraph.swing.view">mxCellStatePreview</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxCellTracker.html" title="class in com.mxgraph.swing.handler">mxCellTracker</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxChildChangeCodec.html" title="class in com.mxgraph.io">mxChildChangeCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxCircleLayout.html" title="class in com.mxgraph.layout">mxCircleLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxCloudShape.html" title="class in com.mxgraph.shape">mxCloudShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxCodec.html" title="class in com.mxgraph.io">mxCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxCodecRegistry.html" title="class in com.mxgraph.io">mxCodecRegistry</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxCompactTreeLayout.html" title="class in com.mxgraph.layout">mxCompactTreeLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxCompactTreeLayout.Polygon.html" title="class in com.mxgraph.layout">mxCompactTreeLayout.Polygon</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxCompactTreeLayout.Polyline.html" title="class in com.mxgraph.layout">mxCompactTreeLayout.Polyline</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html" title="class in com.mxgraph.layout">mxCompactTreeLayout.TreeNode</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxConnectionConstraint.html" title="class in com.mxgraph.view">mxConnectionConstraint</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxConnectionHandler.html" title="class in com.mxgraph.swing.handler">mxConnectionHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxConnectorShape.html" title="class in com.mxgraph.shape">mxConnectorShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxConnectPreview.html" title="class in com.mxgraph.swing.handler">mxConnectPreview</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxConstantCostFunction.html" title="class in com.mxgraph.analysis">mxConstantCostFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxConstants.html" title="class in com.mxgraph.util">mxConstants</a></li>
|
|
||||||
<li><a href="com/mxgraph/costfunction/mxConstCostFunction.html" title="class in com.mxgraph.costfunction">mxConstCostFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html" title="class in com.mxgraph.layout.hierarchical.stage">mxCoordinateAssignment</a></li>
|
|
||||||
<li><a href="com/mxgraph/costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxCurve.html" title="class in com.mxgraph.util">mxCurve</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxCurveLabelShape.html" title="class in com.mxgraph.shape">mxCurveLabelShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxCurveShape.html" title="class in com.mxgraph.shape">mxCurveShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxCylinderShape.html" title="class in com.mxgraph.shape">mxCylinderShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxDefaultTextShape.html" title="class in com.mxgraph.shape">mxDefaultTextShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxDistanceCostFunction.html" title="class in com.mxgraph.analysis">mxDistanceCostFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/reader/mxDomOutputParser.html" title="class in com.mxgraph.reader">mxDomOutputParser</a></li>
|
|
||||||
<li><a href="com/mxgraph/reader/mxDomOutputParser.IElementHandler.html" title="interface in com.mxgraph.reader"><span class="interfaceName">mxDomOutputParser.IElementHandler</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxDomUtils.html" title="class in com.mxgraph.util">mxDomUtils</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxDoubleEllipseShape.html" title="class in com.mxgraph.shape">mxDoubleEllipseShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxDoubleRectangleShape.html" title="class in com.mxgraph.shape">mxDoubleRectangleShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/costfunction/mxDoubleValCostFunction.html" title="class in com.mxgraph.costfunction">mxDoubleValCostFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxEdgeHandler.html" title="class in com.mxgraph.swing.handler">mxEdgeHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxEdgeLabelLayout.html" title="class in com.mxgraph.layout">mxEdgeLabelLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxEdgeStyle.html" title="class in com.mxgraph.view">mxEdgeStyle</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html" title="interface in com.mxgraph.view"><span class="interfaceName">mxEdgeStyle.mxEdgeStyleFunction</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxElbowEdgeHandler.html" title="class in com.mxgraph.swing.handler">mxElbowEdgeHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxEllipseShape.html" title="class in com.mxgraph.shape">mxEllipseShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxEvent.html" title="class in com.mxgraph.util">mxEvent</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxEventObject.html" title="class in com.mxgraph.util">mxEventObject</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxEventSource.html" title="class in com.mxgraph.util">mxEventSource</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxEventSource.mxIEventListener.html" title="interface in com.mxgraph.util"><span class="interfaceName">mxEventSource.mxIEventListener</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxFastOrganicLayout.html" title="class in com.mxgraph.layout">mxFastOrganicLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxGdCodec.html" title="class in com.mxgraph.io">mxGdCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxGdCodec.mxGDParseState.html" title="enum in com.mxgraph.io">mxGdCodec.mxGDParseState</a></li>
|
|
||||||
<li><a href="com/mxgraph/generatorfunction/mxGeneratorConstFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorConstFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/generatorfunction/mxGeneratorRandomFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorRandomFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/generatorfunction/mxGeneratorRandomIntFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorRandomIntFunction</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxGenericChangeCodec.html" title="class in com.mxgraph.io">mxGenericChangeCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGeometry.html" title="class in com.mxgraph.model">mxGeometry</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxGraph.mxICellVisitor.html" title="interface in com.mxgraph.view"><span class="interfaceName">mxGraph.mxICellVisitor</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html" title="class in com.mxgraph.layout.hierarchical.model">mxGraphAbstractHierarchyCell</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.html" title="class in com.mxgraph.swing.util">mxGraphActions</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.DeleteAction.html" title="class in com.mxgraph.swing.util">mxGraphActions.DeleteAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.DrillAction.html" title="class in com.mxgraph.swing.util">mxGraphActions.DrillAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.EditAction.html" title="class in com.mxgraph.swing.util">mxGraphActions.EditAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.FoldAction.html" title="class in com.mxgraph.swing.util">mxGraphActions.FoldAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.GroupAction.html" title="class in com.mxgraph.swing.util">mxGraphActions.GroupAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.LayerAction.html" title="class in com.mxgraph.swing.util">mxGraphActions.LayerAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html" title="class in com.mxgraph.swing.util">mxGraphActions.RemoveFromParentAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.SelectAction.html" title="class in com.mxgraph.swing.util">mxGraphActions.SelectAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.UngroupAction.html" title="class in com.mxgraph.swing.util">mxGraphActions.UngroupAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html" title="class in com.mxgraph.swing.util">mxGraphActions.UpdateGroupBoundsAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphActions.ZoomAction.html" title="class in com.mxgraph.swing.util">mxGraphActions.ZoomAction</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/mxGraphComponent.html" title="class in com.mxgraph.swing">mxGraphComponent</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html" title="class in com.mxgraph.swing">mxGraphComponent.mxMouseRedirector</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxGraphHandler.html" title="class in com.mxgraph.swing.handler">mxGraphHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html" title="class in com.mxgraph.layout.hierarchical.model">mxGraphHierarchyEdge</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html" title="class in com.mxgraph.layout.hierarchical.model">mxGraphHierarchyModel</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html" title="interface in com.mxgraph.layout.hierarchical.model"><span class="interfaceName">mxGraphHierarchyModel.CellVisitor</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html" title="class in com.mxgraph.layout.hierarchical.model">mxGraphHierarchyNode</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html" title="class in com.mxgraph.layout.hierarchical.model">mxGraphHierarchyRank</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxGraphics2DCanvas.html" title="class in com.mxgraph.canvas">mxGraphics2DCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxGraphicsCanvas2D.html" title="class in com.mxgraph.canvas">mxGraphicsCanvas2D</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxGraphLayout.html" title="class in com.mxgraph.layout">mxGraphLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.html" title="class in com.mxgraph.model">mxGraphModel</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.Filter.html" title="interface in com.mxgraph.model"><span class="interfaceName">mxGraphModel.Filter</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxChildChange.html" title="class in com.mxgraph.model">mxGraphModel.mxChildChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxCollapseChange.html" title="class in com.mxgraph.model">mxGraphModel.mxCollapseChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxGeometryChange.html" title="class in com.mxgraph.model">mxGraphModel.mxGeometryChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxRootChange.html" title="class in com.mxgraph.model">mxGraphModel.mxRootChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxStyleChange.html" title="class in com.mxgraph.model">mxGraphModel.mxStyleChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxTerminalChange.html" title="class in com.mxgraph.model">mxGraphModel.mxTerminalChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxValueChange.html" title="class in com.mxgraph.model">mxGraphModel.mxValueChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxGraphModel.mxVisibleChange.html" title="class in com.mxgraph.model">mxGraphModel.mxVisibleChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/mxGraphOutline.html" title="class in com.mxgraph.swing">mxGraphOutline</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxGraphProperties.html" title="class in com.mxgraph.analysis">mxGraphProperties</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxGraphSelectionModel.html" title="class in com.mxgraph.view">mxGraphSelectionModel</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html" title="class in com.mxgraph.view">mxGraphSelectionModel.mxSelectionChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxGraphStructure.html" title="class in com.mxgraph.analysis">mxGraphStructure</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxGraphTransferable.html" title="class in com.mxgraph.swing.util">mxGraphTransferable</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxGraphTransferHandler.html" title="class in com.mxgraph.swing.handler">mxGraphTransferHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxGraphView.html" title="class in com.mxgraph.view">mxGraphView</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxGraphView.mxCurrentRootChange.html" title="class in com.mxgraph.view">mxGraphView.mxCurrentRootChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/reader/mxGraphViewImageReader.html" title="class in com.mxgraph.reader">mxGraphViewImageReader</a></li>
|
|
||||||
<li><a href="com/mxgraph/reader/mxGraphViewReader.html" title="class in com.mxgraph.reader">mxGraphViewReader</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxHexagonShape.html" title="class in com.mxgraph.shape">mxHexagonShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html" title="class in com.mxgraph.layout.hierarchical">mxHierarchicalLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html" title="interface in com.mxgraph.layout.hierarchical.stage"><span class="interfaceName">mxHierarchicalLayoutStage</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxHtmlCanvas.html" title="class in com.mxgraph.canvas">mxHtmlCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxHtmlColor.html" title="class in com.mxgraph.util">mxHtmlColor</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxHtmlTextShape.html" title="class in com.mxgraph.shape">mxHtmlTextShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxICanvas.html" title="interface in com.mxgraph.canvas"><span class="interfaceName">mxICanvas</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxICanvas2D.html" title="interface in com.mxgraph.canvas"><span class="interfaceName">mxICanvas2D</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxICell.html" title="interface in com.mxgraph.model"><span class="interfaceName">mxICell</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/view/mxICellEditor.html" title="interface in com.mxgraph.swing.view"><span class="interfaceName">mxICellEditor</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxICellOverlay.html" title="interface in com.mxgraph.swing.util"><span class="interfaceName">mxICellOverlay</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis"><span class="interfaceName">mxICostFunction</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxIGraphLayout.html" title="interface in com.mxgraph.layout"><span class="interfaceName">mxIGraphLayout</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxIGraphModel.html" title="interface in com.mxgraph.model"><span class="interfaceName">mxIGraphModel</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html" title="class in com.mxgraph.model">mxIGraphModel.mxAtomicGraphModelChange</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxImage.html" title="class in com.mxgraph.util">mxImage</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxImageBundle.html" title="class in com.mxgraph.util">mxImageBundle</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxImageCanvas.html" title="class in com.mxgraph.canvas">mxImageCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxImageShape.html" title="class in com.mxgraph.shape">mxImageShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxIMarker.html" title="interface in com.mxgraph.shape"><span class="interfaceName">mxIMarker</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxInsertHandler.html" title="class in com.mxgraph.swing.handler">mxInsertHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/view/mxInteractiveCanvas.html" title="class in com.mxgraph.swing.view">mxInteractiveCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxIShape.html" title="interface in com.mxgraph.shape"><span class="interfaceName">mxIShape</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxITextShape.html" title="interface in com.mxgraph.shape"><span class="interfaceName">mxITextShape</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxKeyboardHandler.html" title="class in com.mxgraph.swing.handler">mxKeyboardHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxLabelShape.html" title="class in com.mxgraph.shape">mxLabelShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxLayoutManager.html" title="class in com.mxgraph.view">mxLayoutManager</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxLightweightLabel.html" title="class in com.mxgraph.util">mxLightweightLabel</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxLine.html" title="class in com.mxgraph.util">mxLine</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxLineShape.html" title="class in com.mxgraph.shape">mxLineShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxMarkerRegistry.html" title="class in com.mxgraph.shape">mxMarkerRegistry</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html" title="class in com.mxgraph.layout.hierarchical.stage">mxMedianHybridCrossingReduction</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html" title="class in com.mxgraph.layout.hierarchical.stage">mxMinimumCycleRemover</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxModelCodec.html" title="class in com.mxgraph.io">mxModelCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxMorphing.html" title="class in com.mxgraph.swing.util">mxMorphing</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxMouseAdapter.html" title="class in com.mxgraph.swing.util">mxMouseAdapter</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxMovePreview.html" title="class in com.mxgraph.swing.handler">mxMovePreview</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxMultiplicity.html" title="class in com.mxgraph.view">mxMultiplicity</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxObjectCodec.html" title="class in com.mxgraph.io">mxObjectCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxOrganicLayout.html" title="class in com.mxgraph.layout">mxOrganicLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html" title="class in com.mxgraph.layout.orthogonal">mxOrthogonalLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html" title="class in com.mxgraph.layout.orthogonal.model">mxOrthogonalModel</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxPanningHandler.html" title="class in com.mxgraph.swing.handler">mxPanningHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxParallelEdgeLayout.html" title="class in com.mxgraph.layout">mxParallelEdgeLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxPartitionLayout.html" title="class in com.mxgraph.layout">mxPartitionLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxPerimeter.html" title="class in com.mxgraph.view">mxPerimeter</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html" title="interface in com.mxgraph.view"><span class="interfaceName">mxPerimeter.mxPerimeterFunction</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngEncodeParam.html" title="class in com.mxgraph.util.png">mxPngEncodeParam</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngEncodeParam.Gray.html" title="class in com.mxgraph.util.png">mxPngEncodeParam.Gray</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngEncodeParam.Palette.html" title="class in com.mxgraph.util.png">mxPngEncodeParam.Palette</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngEncodeParam.RGB.html" title="class in com.mxgraph.util.png">mxPngEncodeParam.RGB</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngImageEncoder.html" title="class in com.mxgraph.util.png">mxPngImageEncoder</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html" title="class in com.mxgraph.util.png">mxPngSuggestedPaletteEntry</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/png/mxPngTextDecoder.html" title="class in com.mxgraph.util.png">mxPngTextDecoder</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxPoint.html" title="class in com.mxgraph.util">mxPoint</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/orthogonal/model/mxPointPair.html" title="class in com.mxgraph.layout.orthogonal.model">mxPointPair</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/orthogonal/model/mxPointSequence.html" title="class in com.mxgraph.layout.orthogonal.model">mxPointSequence</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxRectangle.html" title="class in com.mxgraph.util">mxRectangle</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxRectangleShape.html" title="class in com.mxgraph.shape">mxRectangleShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxResources.html" title="class in com.mxgraph.util">mxResources</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxRhombusShape.html" title="class in com.mxgraph.shape">mxRhombusShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxRootChangeCodec.html" title="class in com.mxgraph.io">mxRootChangeCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxRotationHandler.html" title="class in com.mxgraph.swing.handler">mxRotationHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxRubberband.html" title="class in com.mxgraph.swing.handler">mxRubberband</a></li>
|
|
||||||
<li><a href="com/mxgraph/reader/mxSaxOutputHandler.html" title="class in com.mxgraph.reader">mxSaxOutputHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html" title="interface in com.mxgraph.reader"><span class="interfaceName">mxSaxOutputHandler.IElementHandler</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/orthogonal/model/mxSegment.html" title="class in com.mxgraph.layout.orthogonal.model">mxSegment</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxSelectionCellsHandler.html" title="class in com.mxgraph.swing.handler">mxSelectionCellsHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxSpline.html" title="class in com.mxgraph.util">mxSpline</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxSpline1D.html" title="class in com.mxgraph.util">mxSpline1D</a></li>
|
|
||||||
<li><a href="com/mxgraph/layout/mxStackLayout.html" title="class in com.mxgraph.layout">mxStackLayout</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxStencil.html" title="class in com.mxgraph.shape">mxStencil</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxStencilRegistry.html" title="class in com.mxgraph.shape">mxStencilRegistry</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxStencilShape.html" title="class in com.mxgraph.shape">mxStencilShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxStyleRegistry.html" title="class in com.mxgraph.view">mxStyleRegistry</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxStylesheet.html" title="class in com.mxgraph.view">mxStylesheet</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxStylesheetCodec.html" title="class in com.mxgraph.io">mxStylesheetCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxStyleUtils.html" title="class in com.mxgraph.util">mxStyleUtils</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxSvgCanvas.html" title="class in com.mxgraph.canvas">mxSvgCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxSwimlaneManager.html" title="class in com.mxgraph.view">mxSwimlaneManager</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxSwimlaneShape.html" title="class in com.mxgraph.shape">mxSwimlaneShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/util/mxSwingConstants.html" title="class in com.mxgraph.swing.util">mxSwingConstants</a></li>
|
|
||||||
<li><a href="com/mxgraph/view/mxTemporaryCellStates.html" title="class in com.mxgraph.view">mxTemporaryCellStates</a></li>
|
|
||||||
<li><a href="com/mxgraph/io/mxTerminalChangeCodec.html" title="class in com.mxgraph.io">mxTerminalChangeCodec</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxTraversal.html" title="class in com.mxgraph.analysis">mxTraversal</a></li>
|
|
||||||
<li><a href="com/mxgraph/shape/mxTriangleShape.html" title="class in com.mxgraph.shape">mxTriangleShape</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxUndoableEdit.html" title="class in com.mxgraph.util">mxUndoableEdit</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html" title="interface in com.mxgraph.util"><span class="interfaceName">mxUndoableEdit.mxUndoableChange</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxUndoManager.html" title="class in com.mxgraph.util">mxUndoManager</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxUtils.html" title="class in com.mxgraph.util">mxUtils</a></li>
|
|
||||||
<li><a href="com/mxgraph/swing/handler/mxVertexHandler.html" title="class in com.mxgraph.swing.handler">mxVertexHandler</a></li>
|
|
||||||
<li><a href="com/mxgraph/canvas/mxVmlCanvas.html" title="class in com.mxgraph.canvas">mxVmlCanvas</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/mxXmlUtils.html" title="class in com.mxgraph.util">mxXmlUtils</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/NormalizingReader.html" title="class in com.mxgraph.util.svg">NormalizingReader</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/NumberParser.html" title="class in com.mxgraph.util.svg">NumberParser</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/ParseException.html" title="class in com.mxgraph.util.svg">ParseException</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/Parser.html" title="interface in com.mxgraph.util.svg"><span class="interfaceName">Parser</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/PathHandler.html" title="interface in com.mxgraph.util.svg"><span class="interfaceName">PathHandler</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/PathParser.html" title="class in com.mxgraph.util.svg">PathParser</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/PointsHandler.html" title="interface in com.mxgraph.util.svg"><span class="interfaceName">PointsHandler</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/PointsParser.html" title="class in com.mxgraph.util.svg">PointsParser</a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/ShapeProducer.html" title="interface in com.mxgraph.util.svg"><span class="interfaceName">ShapeProducer</span></a></li>
|
|
||||||
<li><a href="com/mxgraph/util/svg/StringNormalizingReader.html" title="class in com.mxgraph.util.svg">StringNormalizingReader</a></li>
|
|
||||||
<li><a href="com/mxgraph/analysis/StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>StructuralException (mxGraph 4.0.0 API Specification)</title>
|
<title>StructuralException (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../script.js"></script>
|
<script type="text/javascript" src="../../../script.js"></script>
|
||||||
|
@ -14,34 +14,39 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="StructuralException (mxGraph 4.0.0 API Specification)";
|
parent.document.title="StructuralException (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/StructuralException.html">Use</a></li>
|
<li><a href="class-use/StructuralException.html">Use</a></li>
|
||||||
|
@ -50,19 +55,11 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li>Next Class</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/StructuralException.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="StructuralException.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -91,7 +88,7 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li>Nested | </li>
|
<li>Nested | </li>
|
||||||
<li>Field | </li>
|
<li>Field | </li>
|
||||||
<li><a href="#constructor.summary">Constr</a> | </li>
|
<li><a href="#constructor.summary">Constr</a> | </li>
|
||||||
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li>
|
<li><a href="#method.summary">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="subNavList">
|
<ul class="subNavList">
|
||||||
<li>Detail: </li>
|
<li>Detail: </li>
|
||||||
|
@ -100,7 +97,7 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li>Method</li>
|
<li>Method</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -110,9 +107,12 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></div>
|
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">com.mxgraph.analysis</a></div>
|
||||||
<h2 title="Class StructuralException" class="title">Class StructuralException</h2>
|
<h2 title="Class StructuralException" class="title">Class StructuralException</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="contentContainer">
|
<div class="contentContainer">
|
||||||
|
@ -155,46 +155,50 @@ extends java.lang.Exception</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.summary">
|
<li class="blockList"><a id="constructor.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Summary</h3>
|
<h3>Constructor Summary</h3>
|
||||||
<table class="memberSummary" summary="Constructor Summary table, listing constructors, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Constructor</th>
|
<th class="colFirst" scope="col">Constructor</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/StructuralException.html#StructuralException-java.lang.String-">StructuralException</a></span>​(java.lang.String message)</code></th>
|
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.lang.String)">StructuralException</a></span>​(java.lang.String message)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.summary">
|
<li class="blockList"><a id="method.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Summary</h3>
|
<h3>Method Summary</h3>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
|
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Throwable">
|
||||||
<!-- -->
|
|
||||||
</a>
|
|
||||||
<h3>Methods inherited from class java.lang.Object</h3>
|
|
||||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="blockList">
|
|
||||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Throwable">
|
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Methods inherited from class java.lang.Throwable</h3>
|
<h3>Methods inherited from class java.lang.Throwable</h3>
|
||||||
<code>addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</code></li>
|
<code>addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</code></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class java.lang.Object</h3>
|
||||||
|
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -202,12 +206,13 @@ extends java.lang.Exception</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.detail">
|
<li class="blockList"><a id="constructor.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Detail</h3>
|
<h3>Constructor Detail</h3>
|
||||||
<a name="StructuralException-java.lang.String-">
|
<a id="<init>(java.lang.String)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
|
@ -218,21 +223,25 @@ extends java.lang.Exception</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/StructuralException.html">Use</a></li>
|
<li><a href="class-use/StructuralException.html">Use</a></li>
|
||||||
|
@ -241,19 +250,11 @@ extends java.lang.Exception</pre>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li>Next Class</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/StructuralException.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="StructuralException.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -276,7 +277,7 @@ extends java.lang.Exception</pre>
|
||||||
<li>Nested | </li>
|
<li>Nested | </li>
|
||||||
<li>Field | </li>
|
<li>Field | </li>
|
||||||
<li><a href="#constructor.summary">Constr</a> | </li>
|
<li><a href="#constructor.summary">Constr</a> | </li>
|
||||||
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li>
|
<li><a href="#method.summary">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="subNavList">
|
<ul class="subNavList">
|
||||||
<li>Detail: </li>
|
<li>Detail: </li>
|
||||||
|
@ -285,11 +286,13 @@ extends java.lang.Exception</pre>
|
||||||
<li>Method</li>
|
<li>Method</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/StructuralException.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../StructuralException.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/StructuralException.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="StructuralException.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,14 +92,17 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.StructuralException" class="title">Uses of Class<br>com.mxgraph.analysis.StructuralException</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.StructuralException" class="title">Uses of Class<br>com.mxgraph.analysis.StructuralException</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">
|
<div class="classUseContainer">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<table class="useSummary" summary="Use table, listing packages, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Packages that use <a href="../../../../com/mxgraph/analysis/StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Packages that use <a href="../StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Package</th>
|
<th class="colFirst" scope="col">Package</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
|
@ -120,12 +120,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</li>
|
</li>
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="com.mxgraph.analysis">
|
<li class="blockList">
|
||||||
|
<section role="region"><a id="com.mxgraph.analysis">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Uses of <a href="../../../../com/mxgraph/analysis/StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a> in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></h3>
|
<h3>Uses of <a href="../StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a> in <a href="../package-summary.html">com.mxgraph.analysis</a></h3>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> that throw <a href="../../../../com/mxgraph/analysis/StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> that throw <a href="../StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -133,8 +134,8 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static java.util.List<java.util.Map<java.lang.Object,java.lang.Object>></code></td>
|
<td class="colFirst"><code>static java.util.List<java.util.Map<java.lang.Object,​java.lang.Object>></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxTraversal.html#bellmanFord-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-">bellmanFord</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../mxTraversal.html#bellmanFord(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object)">bellmanFord</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object startVertex)</code></th>
|
java.lang.Object startVertex)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Implements the Bellman-Ford shortest path from startVertex to all vertices.</div>
|
<div class="block">Implements the Bellman-Ford shortest path from startVertex to all vertices.</div>
|
||||||
|
@ -142,24 +143,24 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxTraversal.html#dijkstra-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-java.lang.Object-com.mxgraph.view.mxGraph.mxICellVisitor-">dijkstra</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../mxTraversal.html#dijkstra(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object,java.lang.Object,com.mxgraph.view.mxGraph.mxICellVisitor)">dijkstra</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object startVertex,
|
java.lang.Object startVertex,
|
||||||
java.lang.Object endVertex,
|
java.lang.Object endVertex,
|
||||||
<a href="../../../../com/mxgraph/view/mxGraph.mxICellVisitor.html" title="interface in com.mxgraph.view">mxGraph.mxICellVisitor</a> visitor)</code></th>
|
<a href="../../view/mxGraph.mxICellVisitor.html" title="interface in com.mxgraph.view">mxGraph.mxICellVisitor</a> visitor)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Implements the Dijkstra's shortest path from startVertex to endVertex.</div>
|
<div class="block">Implements the Dijkstra's shortest path from startVertex to endVertex.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static java.util.ArrayList<java.lang.Object[][]></code></td>
|
<td class="colFirst"><code>static java.util.ArrayList<java.lang.Object[][]></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxTraversal.html#floydRoyWarshall-com.mxgraph.analysis.mxAnalysisGraph-">floydRoyWarshall</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../mxTraversal.html#floydRoyWarshall(com.mxgraph.analysis.mxAnalysisGraph)">floydRoyWarshall</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Implements the Floyd-Roy-Warshall (aka WFI) shortest path algorithm between all vertices.</div>
|
<div class="block">Implements the Floyd-Roy-Warshall (aka WFI) shortest path algorithm between all vertices.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getKnightTour-com.mxgraph.analysis.mxAnalysisGraph-int-int-int-">getKnightTour</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getKnightTour(com.mxgraph.analysis.mxAnalysisGraph,int,int,int)">getKnightTour</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim,
|
int yDim,
|
||||||
int startVertexValue)</code></th>
|
int startVertexValue)</code></th>
|
||||||
|
@ -167,17 +168,17 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#getSinkVertices-com.mxgraph.analysis.mxAnalysisGraph-">getSinkVertices</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#getSinkVertices(com.mxgraph.analysis.mxAnalysisGraph)">getSinkVertices</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#getSourceVertices-com.mxgraph.analysis.mxAnalysisGraph-">getSourceVertices</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#getSourceVertices(com.mxgraph.analysis.mxAnalysisGraph)">getSourceVertices</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxTraversal.html#getWFIPath-com.mxgraph.analysis.mxAnalysisGraph-java.util.ArrayList-java.lang.Object-java.lang.Object-">getWFIPath</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../mxTraversal.html#getWFIPath(com.mxgraph.analysis.mxAnalysisGraph,java.util.ArrayList,java.lang.Object,java.lang.Object)">getWFIPath</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.util.ArrayList<java.lang.Object[][]> FWIresult,
|
java.util.ArrayList<java.lang.Object[][]> FWIresult,
|
||||||
java.lang.Object startVertex,
|
java.lang.Object startVertex,
|
||||||
java.lang.Object targetVertex)</code></th>
|
java.lang.Object targetVertex)</code></th>
|
||||||
|
@ -187,7 +188,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#makeTreeDirected-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-">makeTreeDirected</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#makeTreeDirected(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object)">makeTreeDirected</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object startVertex)</code></th>
|
java.lang.Object startVertex)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Makes a tree graph directed from the source to the leaves</div>
|
<div class="block">Makes a tree graph directed from the source to the leaves</div>
|
||||||
|
@ -195,54 +196,50 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#oneSpanningTree-com.mxgraph.analysis.mxAnalysisGraph-boolean-boolean-">oneSpanningTree</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#oneSpanningTree(com.mxgraph.analysis.mxAnalysisGraph,boolean,boolean)">oneSpanningTree</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
boolean forceConnected,
|
boolean forceConnected,
|
||||||
boolean forceSimple)</code></th>
|
boolean forceSimple)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static int</code></td>
|
<td class="colFirst"><code>static int</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#regularity-com.mxgraph.analysis.mxAnalysisGraph-">regularity</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#regularity(com.mxgraph.analysis.mxAnalysisGraph)">regularity</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/StructuralException.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../StructuralException.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/StructuralException.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="StructuralException.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -259,11 +256,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxAnalysisGraph.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxAnalysisGraph.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,14 +92,17 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.mxAnalysisGraph" class="title">Uses of Class<br>com.mxgraph.analysis.mxAnalysisGraph</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.mxAnalysisGraph" class="title">Uses of Class<br>com.mxgraph.analysis.mxAnalysisGraph</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">
|
<div class="classUseContainer">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<table class="useSummary" summary="Use table, listing packages, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Packages that use <a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Packages that use <a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Package</th>
|
<th class="colFirst" scope="col">Package</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
|
@ -120,12 +120,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</li>
|
</li>
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="com.mxgraph.analysis">
|
<li class="blockList">
|
||||||
|
<section role="region"><a id="com.mxgraph.analysis">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Uses of <a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></h3>
|
<h3>Uses of <a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> in <a href="../package-summary.html">com.mxgraph.analysis</a></h3>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -134,14 +135,14 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static boolean</code></td>
|
<td class="colFirst"><code>static boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#areConnected-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-java.lang.Object-">areConnected</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#areConnected(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object,java.lang.Object)">areConnected</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object sourceVertex,
|
java.lang.Object sourceVertex,
|
||||||
java.lang.Object targetVertex)</code></th>
|
java.lang.Object targetVertex)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static java.util.List<java.util.Map<java.lang.Object,java.lang.Object>></code></td>
|
<td class="colFirst"><code>static java.util.List<java.util.Map<java.lang.Object,​java.lang.Object>></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxTraversal.html#bellmanFord-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-">bellmanFord</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../mxTraversal.html#bellmanFord(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object)">bellmanFord</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object startVertex)</code></th>
|
java.lang.Object startVertex)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Implements the Bellman-Ford shortest path from startVertex to all vertices.</div>
|
<div class="block">Implements the Bellman-Ford shortest path from startVertex to all vertices.</div>
|
||||||
|
@ -149,9 +150,9 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxTraversal.html#bfs-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-com.mxgraph.view.mxGraph.mxICellVisitor-">bfs</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../mxTraversal.html#bfs(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object,com.mxgraph.view.mxGraph.mxICellVisitor)">bfs</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object startVertex,
|
java.lang.Object startVertex,
|
||||||
<a href="../../../../com/mxgraph/view/mxGraph.mxICellVisitor.html" title="interface in com.mxgraph.view">mxGraph.mxICellVisitor</a> visitor)</code></th>
|
<a href="../../view/mxGraph.mxICellVisitor.html" title="interface in com.mxgraph.view">mxGraph.mxICellVisitor</a> visitor)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Implements a recursive breadth first search starting from the specified
|
<div class="block">Implements a recursive breadth first search starting from the specified
|
||||||
cell.</div>
|
cell.</div>
|
||||||
|
@ -159,16 +160,16 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#complementaryGraph-com.mxgraph.analysis.mxAnalysisGraph-">complementaryGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#complementaryGraph(com.mxgraph.analysis.mxAnalysisGraph)">complementaryGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Makes the complement of <b>aGraph</b></div>
|
<div class="block">Makes the complement of <b>aGraph</b></div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxTraversal.html#dfs-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-com.mxgraph.view.mxGraph.mxICellVisitor-">dfs</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../mxTraversal.html#dfs(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object,com.mxgraph.view.mxGraph.mxICellVisitor)">dfs</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object startVertex,
|
java.lang.Object startVertex,
|
||||||
<a href="../../../../com/mxgraph/view/mxGraph.mxICellVisitor.html" title="interface in com.mxgraph.view">mxGraph.mxICellVisitor</a> visitor)</code></th>
|
<a href="../../view/mxGraph.mxICellVisitor.html" title="interface in com.mxgraph.view">mxGraph.mxICellVisitor</a> visitor)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Implements a recursive depth first search starting from the specified
|
<div class="block">Implements a recursive depth first search starting from the specified
|
||||||
cell.</div>
|
cell.</div>
|
||||||
|
@ -176,93 +177,93 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxTraversal.html#dijkstra-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-java.lang.Object-com.mxgraph.view.mxGraph.mxICellVisitor-">dijkstra</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../mxTraversal.html#dijkstra(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object,java.lang.Object,com.mxgraph.view.mxGraph.mxICellVisitor)">dijkstra</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object startVertex,
|
java.lang.Object startVertex,
|
||||||
java.lang.Object endVertex,
|
java.lang.Object endVertex,
|
||||||
<a href="../../../../com/mxgraph/view/mxGraph.mxICellVisitor.html" title="interface in com.mxgraph.view">mxGraph.mxICellVisitor</a> visitor)</code></th>
|
<a href="../../view/mxGraph.mxICellVisitor.html" title="interface in com.mxgraph.view">mxGraph.mxICellVisitor</a> visitor)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Implements the Dijkstra's shortest path from startVertex to endVertex.</div>
|
<div class="block">Implements the Dijkstra's shortest path from startVertex to endVertex.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static java.util.ArrayList<java.lang.Object[][]></code></td>
|
<td class="colFirst"><code>static java.util.ArrayList<java.lang.Object[][]></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxTraversal.html#floydRoyWarshall-com.mxgraph.analysis.mxAnalysisGraph-">floydRoyWarshall</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../mxTraversal.html#floydRoyWarshall(com.mxgraph.analysis.mxAnalysisGraph)">floydRoyWarshall</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Implements the Floyd-Roy-Warshall (aka WFI) shortest path algorithm between all vertices.</div>
|
<div class="block">Implements the Floyd-Roy-Warshall (aka WFI) shortest path algorithm between all vertices.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getBipartiteGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getBipartiteGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getBipartiteGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getBipartiteGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVerticesGroup1,
|
int numVerticesGroup1,
|
||||||
int numVerticesGroup2)</code></th>
|
int numVerticesGroup2)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getCompleteBipartiteGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getCompleteBipartiteGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getCompleteBipartiteGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getCompleteBipartiteGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVerticesGroup1,
|
int numVerticesGroup1,
|
||||||
int numVerticesGroup2)</code></th>
|
int numVerticesGroup2)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getCompleteGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">getCompleteGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getCompleteGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">getCompleteGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</code></th>
|
int numVertices)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static java.lang.Object</code></td>
|
<td class="colFirst"><code>static java.lang.Object</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#getConnectingEdge-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-java.lang.Object-">getConnectingEdge</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#getConnectingEdge(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object,java.lang.Object)">getConnectingEdge</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object vertexOne,
|
java.lang.Object vertexOne,
|
||||||
java.lang.Object vertexTwo)</code></th>
|
java.lang.Object vertexTwo)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#getCutEdges-com.mxgraph.analysis.mxAnalysisGraph-">getCutEdges</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#getCutEdges(com.mxgraph.analysis.mxAnalysisGraph)">getCutEdges</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#getCutVertices-com.mxgraph.analysis.mxAnalysisGraph-">getCutVertices</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#getCutVertices(com.mxgraph.analysis.mxAnalysisGraph)">getCutVertices</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static java.lang.Object</code></td>
|
<td class="colFirst"><code>static java.lang.Object</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#getDirectedLeaf-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-">getDirectedLeaf</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#getDirectedLeaf(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object)">getDirectedLeaf</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object parent)</code></th>
|
java.lang.Object parent)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getFriendshipWindmillGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getFriendshipWindmillGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getFriendshipWindmillGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getFriendshipWindmillGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numBranches,
|
int numBranches,
|
||||||
int branchSize)</code></th>
|
int branchSize)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static java.lang.Object[][]</code></td>
|
<td class="colFirst"><code>static java.lang.Object[][]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#getGraphComponents-com.mxgraph.analysis.mxAnalysisGraph-">getGraphComponents</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#getGraphComponents(com.mxgraph.analysis.mxAnalysisGraph)">getGraphComponents</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getGridGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getGridGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getGridGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getGridGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numColumns,
|
int numColumns,
|
||||||
int numRows)</code></th>
|
int numRows)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getKingGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getKingGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getKingGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getKingGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim)</code></th>
|
int yDim)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getKingMoveVertexes-com.mxgraph.analysis.mxAnalysisGraph-int-int-int-int-">getKingMoveVertexes</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getKingMoveVertexes(com.mxgraph.analysis.mxAnalysisGraph,int,int,int,int)">getKingMoveVertexes</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim,
|
int yDim,
|
||||||
int xCoord,
|
int xCoord,
|
||||||
|
@ -271,14 +272,14 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getKnightGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getKnightGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getKnightGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getKnightGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim)</code></th>
|
int yDim)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getKnightMoveVertexes-com.mxgraph.analysis.mxAnalysisGraph-int-int-int-int-">getKnightMoveVertexes</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getKnightMoveVertexes(com.mxgraph.analysis.mxAnalysisGraph,int,int,int,int)">getKnightMoveVertexes</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim,
|
int yDim,
|
||||||
int xCoord,
|
int xCoord,
|
||||||
|
@ -287,7 +288,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getKnightTour-com.mxgraph.analysis.mxAnalysisGraph-int-int-int-">getKnightTour</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getKnightTour(com.mxgraph.analysis.mxAnalysisGraph,int,int,int)">getKnightTour</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim,
|
int yDim,
|
||||||
int startVertexValue)</code></th>
|
int startVertexValue)</code></th>
|
||||||
|
@ -295,37 +296,37 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static java.lang.Object</code></td>
|
<td class="colFirst"><code>static java.lang.Object</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#getLowestDegreeVertex-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object:A-">getLowestDegreeVertex</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#getLowestDegreeVertex(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object%5B%5D)">getLowestDegreeVertex</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object[] omitVertex)</code></th>
|
java.lang.Object[] omitVertex)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>java.lang.Double</code></td>
|
<td class="colFirst"><code>java.lang.Double</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getNewEdgeValue-com.mxgraph.analysis.mxAnalysisGraph-">getNewEdgeValue</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getNewEdgeValue(com.mxgraph.analysis.mxAnalysisGraph)">getNewEdgeValue</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Creates a new edge value based on graph properties in mxAnalysisGraph.</div>
|
<div class="block">Creates a new edge value based on graph properties in mxAnalysisGraph.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getNullGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">getNullGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getNullGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">getNullGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</code></th>
|
int numVertices)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getPathGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">getPathGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getPathGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">getPathGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</code></th>
|
int numVertices)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getPetersenGraph-com.mxgraph.analysis.mxAnalysisGraph-">getPetersenGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getPetersenGraph(com.mxgraph.analysis.mxAnalysisGraph)">getPetersenGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getSimpleRandomGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-boolean-boolean-boolean-">getSimpleRandomGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getSimpleRandomGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int,boolean,boolean,boolean)">getSimpleRandomGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numNodes,
|
int numNodes,
|
||||||
int numEdges,
|
int numEdges,
|
||||||
boolean allowSelfLoops,
|
boolean allowSelfLoops,
|
||||||
|
@ -337,7 +338,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getSimpleRandomTree-com.mxgraph.analysis.mxAnalysisGraph-int-">getSimpleRandomTree</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getSimpleRandomTree(com.mxgraph.analysis.mxAnalysisGraph,int)">getSimpleRandomTree</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int vertexCount)</code></th>
|
int vertexCount)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Generates a random tree graph</div>
|
<div class="block">Generates a random tree graph</div>
|
||||||
|
@ -345,29 +346,29 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#getSinkVertices-com.mxgraph.analysis.mxAnalysisGraph-">getSinkVertices</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#getSinkVertices(com.mxgraph.analysis.mxAnalysisGraph)">getSinkVertices</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#getSourceVertices-com.mxgraph.analysis.mxAnalysisGraph-">getSourceVertices</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#getSourceVertices(com.mxgraph.analysis.mxAnalysisGraph)">getSourceVertices</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getStarGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">getStarGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getStarGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">getStarGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</code></th>
|
int numVertices)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static java.lang.Object</code></td>
|
<td class="colFirst"><code>static java.lang.Object</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#getVertexWithValue-com.mxgraph.analysis.mxAnalysisGraph-int-">getVertexWithValue</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#getVertexWithValue(com.mxgraph.analysis.mxAnalysisGraph,int)">getVertexWithValue</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int value)</code></th>
|
int value)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
<td class="colFirst"><code>static java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxTraversal.html#getWFIPath-com.mxgraph.analysis.mxAnalysisGraph-java.util.ArrayList-java.lang.Object-java.lang.Object-">getWFIPath</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxTraversal.</span><code><span class="memberNameLink"><a href="../mxTraversal.html#getWFIPath(com.mxgraph.analysis.mxAnalysisGraph,java.util.ArrayList,java.lang.Object,java.lang.Object)">getWFIPath</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.util.ArrayList<java.lang.Object[][]> FWIresult,
|
java.util.ArrayList<java.lang.Object[][]> FWIresult,
|
||||||
java.lang.Object startVertex,
|
java.lang.Object startVertex,
|
||||||
java.lang.Object targetVertex)</code></th>
|
java.lang.Object targetVertex)</code></th>
|
||||||
|
@ -377,80 +378,80 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getWheelGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">getWheelGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getWheelGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">getWheelGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</code></th>
|
int numVertices)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#getWindmillGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getWindmillGraph</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#getWindmillGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getWindmillGraph</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numBranches,
|
int numBranches,
|
||||||
int branchSize)</code></th>
|
int branchSize)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static int</code></td>
|
<td class="colFirst"><code>static int</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#indegree-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-">indegree</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#indegree(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object)">indegree</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object vertex)</code></th>
|
java.lang.Object vertex)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static boolean</code></td>
|
<td class="colFirst"><code>static boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#isBiconnected-com.mxgraph.analysis.mxAnalysisGraph-">isBiconnected</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#isBiconnected(com.mxgraph.analysis.mxAnalysisGraph)">isBiconnected</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static boolean</code></td>
|
<td class="colFirst"><code>static boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#isConnected-com.mxgraph.analysis.mxAnalysisGraph-">isConnected</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#isConnected(com.mxgraph.analysis.mxAnalysisGraph)">isConnected</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static boolean</code></td>
|
<td class="colFirst"><code>static boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#isCutEdge-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-">isCutEdge</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#isCutEdge(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object)">isCutEdge</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object edge)</code></th>
|
java.lang.Object edge)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static boolean</code></td>
|
<td class="colFirst"><code>static boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#isCutVertex-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-">isCutVertex</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#isCutVertex(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object)">isCutVertex</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object vertex)</code></th>
|
java.lang.Object vertex)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static boolean</code></td>
|
<td class="colFirst"><code>static boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#isCyclicDirected-com.mxgraph.analysis.mxAnalysisGraph-">isCyclicDirected</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#isCyclicDirected(com.mxgraph.analysis.mxAnalysisGraph)">isCyclicDirected</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static boolean</code></td>
|
<td class="colFirst"><code>static boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#isCyclicUndirected-com.mxgraph.analysis.mxAnalysisGraph-">isCyclicUndirected</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#isCyclicUndirected(com.mxgraph.analysis.mxAnalysisGraph)">isCyclicUndirected</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static boolean</code></td>
|
<td class="colFirst"><code>static boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#isSimple-com.mxgraph.analysis.mxAnalysisGraph-">isSimple</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#isSimple(com.mxgraph.analysis.mxAnalysisGraph)">isSimple</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static boolean</code></td>
|
<td class="colFirst"><code>static boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#isTree-com.mxgraph.analysis.mxAnalysisGraph-">isTree</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#isTree(com.mxgraph.analysis.mxAnalysisGraph)">isTree</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#makeConnected-com.mxgraph.analysis.mxAnalysisGraph-">makeConnected</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#makeConnected(com.mxgraph.analysis.mxAnalysisGraph)">makeConnected</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Makes the graph connected</div>
|
<div class="block">Makes the graph connected</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#makeSimple-com.mxgraph.analysis.mxAnalysisGraph-">makeSimple</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#makeSimple(com.mxgraph.analysis.mxAnalysisGraph)">makeSimple</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#makeTreeDirected-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-">makeTreeDirected</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#makeTreeDirected(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object)">makeTreeDirected</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object startVertex)</code></th>
|
java.lang.Object startVertex)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Makes a tree graph directed from the source to the leaves</div>
|
<div class="block">Makes a tree graph directed from the source to the leaves</div>
|
||||||
|
@ -458,25 +459,25 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#oneSpanningTree-com.mxgraph.analysis.mxAnalysisGraph-boolean-boolean-">oneSpanningTree</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#oneSpanningTree(com.mxgraph.analysis.mxAnalysisGraph,boolean,boolean)">oneSpanningTree</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
boolean forceConnected,
|
boolean forceConnected,
|
||||||
boolean forceSimple)</code></th>
|
boolean forceSimple)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static int</code></td>
|
<td class="colFirst"><code>static int</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#outdegree-com.mxgraph.analysis.mxAnalysisGraph-java.lang.Object-">outdegree</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#outdegree(com.mxgraph.analysis.mxAnalysisGraph,java.lang.Object)">outdegree</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
java.lang.Object vertex)</code></th>
|
java.lang.Object vertex)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static int</code></td>
|
<td class="colFirst"><code>static int</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#regularity-com.mxgraph.analysis.mxAnalysisGraph-">regularity</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#regularity(com.mxgraph.analysis.mxAnalysisGraph)">regularity</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#setBipartiteGraphSpacing-com.mxgraph.analysis.mxAnalysisGraph-int-int-double-double-">setBipartiteGraphSpacing</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#setBipartiteGraphSpacing(com.mxgraph.analysis.mxAnalysisGraph,int,int,double,double)">setBipartiteGraphSpacing</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVerticesGroup1,
|
int numVerticesGroup1,
|
||||||
int numVerticesGroup2,
|
int numVerticesGroup2,
|
||||||
double vertexSpacing,
|
double vertexSpacing,
|
||||||
|
@ -487,7 +488,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html#setDefaultGraphStyle-com.mxgraph.analysis.mxAnalysisGraph-boolean-">setDefaultGraphStyle</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphStructure.</span><code><span class="memberNameLink"><a href="../mxGraphStructure.html#setDefaultGraphStyle(com.mxgraph.analysis.mxAnalysisGraph,boolean)">setDefaultGraphStyle</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
boolean resetEdgeValues)</code></th>
|
boolean resetEdgeValues)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Sets the style of the graph to that as in GraphEditor</div>
|
<div class="block">Sets the style of the graph to that as in GraphEditor</div>
|
||||||
|
@ -495,7 +496,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#setGridGraphSpacing-com.mxgraph.analysis.mxAnalysisGraph-double-double-int-int-">setGridGraphSpacing</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#setGridGraphSpacing(com.mxgraph.analysis.mxAnalysisGraph,double,double,int,int)">setGridGraphSpacing</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
double xSpacing,
|
double xSpacing,
|
||||||
double ySpacing,
|
double ySpacing,
|
||||||
int numColumns,
|
int numColumns,
|
||||||
|
@ -506,7 +507,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#setPathGraphSpacing-com.mxgraph.analysis.mxAnalysisGraph-double-">setPathGraphSpacing</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#setPathGraphSpacing(com.mxgraph.analysis.mxAnalysisGraph,double)">setPathGraphSpacing</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
double spacing)</code></th>
|
double spacing)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Sets the physical spacing between vertices in a path graph.</div>
|
<div class="block">Sets the physical spacing between vertices in a path graph.</div>
|
||||||
|
@ -514,7 +515,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#setStarGraphLayout-com.mxgraph.analysis.mxAnalysisGraph-double-">setStarGraphLayout</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#setStarGraphLayout(com.mxgraph.analysis.mxAnalysisGraph,double)">setStarGraphLayout</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
double graphSize)</code></th>
|
double graphSize)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Sets the physical size of a star graph.</div>
|
<div class="block">Sets the physical size of a star graph.</div>
|
||||||
|
@ -522,7 +523,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html#setWindmillGraphLayout-com.mxgraph.analysis.mxAnalysisGraph-int-int-double-">setWindmillGraphLayout</a></span>​(<a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphGenerator.</span><code><span class="memberNameLink"><a href="../mxGraphGenerator.html#setWindmillGraphLayout(com.mxgraph.analysis.mxAnalysisGraph,int,int,double)">setWindmillGraphLayout</a></span>​(<a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numBranches,
|
int numBranches,
|
||||||
int numVerticesInBranch,
|
int numVerticesInBranch,
|
||||||
double graphSize)</code></th>
|
double graphSize)</code></th>
|
||||||
|
@ -532,42 +533,38 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxAnalysisGraph.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxAnalysisGraph.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxAnalysisGraph.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -584,11 +581,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxConstantCostFunction.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxConstantCostFunction.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxConstantCostFunction.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxConstantCostFunction.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,41 +92,39 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.mxConstantCostFunction" class="title">Uses of Class<br>com.mxgraph.analysis.mxConstantCostFunction</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.mxConstantCostFunction" class="title">Uses of Class<br>com.mxgraph.analysis.mxConstantCostFunction</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">No usage of com.mxgraph.analysis.mxConstantCostFunction</div>
|
<div class="classUseContainer">No usage of com.mxgraph.analysis.mxConstantCostFunction</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxConstantCostFunction.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxConstantCostFunction.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxConstantCostFunction.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxConstantCostFunction.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -146,11 +141,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxDistanceCostFunction.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxDistanceCostFunction.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxDistanceCostFunction.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxDistanceCostFunction.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,41 +92,39 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction" class="title">Uses of Class<br>com.mxgraph.analysis.mxDistanceCostFunction</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction" class="title">Uses of Class<br>com.mxgraph.analysis.mxDistanceCostFunction</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">No usage of com.mxgraph.analysis.mxDistanceCostFunction</div>
|
<div class="classUseContainer">No usage of com.mxgraph.analysis.mxDistanceCostFunction</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxDistanceCostFunction.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxDistanceCostFunction.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxDistanceCostFunction.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxDistanceCostFunction.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -146,11 +141,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxFibonacciHeap.Node.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,14 +92,17 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node" class="title">Uses of Class<br>com.mxgraph.analysis.mxFibonacciHeap.Node</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node" class="title">Uses of Class<br>com.mxgraph.analysis.mxFibonacciHeap.Node</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">
|
<div class="classUseContainer">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<table class="useSummary" summary="Use table, listing packages, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Packages that use <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Packages that use <a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Package</th>
|
<th class="colFirst" scope="col">Package</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
|
@ -120,12 +120,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</li>
|
</li>
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="com.mxgraph.analysis">
|
<li class="blockList">
|
||||||
|
<section role="region"><a id="com.mxgraph.analysis">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Uses of <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></h3>
|
<h3>Uses of <a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> in <a href="../package-summary.html">com.mxgraph.analysis</a></h3>
|
||||||
<table class="useSummary" summary="Use table, listing fields, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Fields in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> declared as <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Fields in <a href="../package-summary.html">com.mxgraph.analysis</a> declared as <a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Field</th>
|
<th class="colSecond" scope="col">Field</th>
|
||||||
|
@ -133,14 +134,14 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
<td class="colFirst"><code>protected <a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html#min">min</a></span></code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../mxFibonacciHeap.html#min">min</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table class="useSummary" summary="Use table, listing fields, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Fields in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> with type parameters of type <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Fields in <a href="../package-summary.html">com.mxgraph.analysis</a> with type parameters of type <a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Field</th>
|
<th class="colSecond" scope="col">Field</th>
|
||||||
|
@ -148,16 +149,16 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected java.util.Map<java.lang.Object,<a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a>></code></td>
|
<td class="colFirst"><code>protected java.util.Map<java.lang.Object,​<a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a>></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html#nodes">nodes</a></span></code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../mxFibonacciHeap.html#nodes">nodes</a></span></code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Maps from elements to nodes</div>
|
<div class="block">Maps from elements to nodes</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> that return <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> that return <a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -165,31 +166,31 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
<td class="colFirst"><code><a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html#getNode-java.lang.Object-boolean-">getNode</a></span>​(java.lang.Object element,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../mxFibonacciHeap.html#getNode(java.lang.Object,boolean)">getNode</a></span>​(java.lang.Object element,
|
||||||
boolean create)</code></th>
|
boolean create)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the node that represents element.</div>
|
<div class="block">Returns the node that represents element.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
<td class="colFirst"><code><a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html#min--">min</a></span>()</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../mxFibonacciHeap.html#min()">min</a></span>()</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the smallest element in the heap.</div>
|
<div class="block">Returns the smallest element in the heap.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
<td class="colFirst"><code><a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html#removeMin--">removeMin</a></span>()</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../mxFibonacciHeap.html#removeMin()">removeMin</a></span>()</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Removes the smallest element from the heap.</div>
|
<div class="block">Removes the smallest element from the heap.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -198,22 +199,22 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected void</code></td>
|
<td class="colFirst"><code>protected void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html#cascadingCut-com.mxgraph.analysis.mxFibonacciHeap.Node-">cascadingCut</a></span>​(<a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../mxFibonacciHeap.html#cascadingCut(com.mxgraph.analysis.mxFibonacciHeap.Node)">cascadingCut</a></span>​(<a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Performs a cascading cut operation.</div>
|
<div class="block">Performs a cascading cut operation.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>protected void</code></td>
|
<td class="colFirst"><code>protected void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html#cut-com.mxgraph.analysis.mxFibonacciHeap.Node-com.mxgraph.analysis.mxFibonacciHeap.Node-">cut</a></span>​(<a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../mxFibonacciHeap.html#cut(com.mxgraph.analysis.mxFibonacciHeap.Node,com.mxgraph.analysis.mxFibonacciHeap.Node)">cut</a></span>​(<a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x,
|
||||||
<a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y)</code></th>
|
<a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">The reverse of the link operation: removes x from the child list of y.</div>
|
<div class="block">The reverse of the link operation: removes x from the child list of y.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html#decreaseKey-com.mxgraph.analysis.mxFibonacciHeap.Node-double-">decreaseKey</a></span>​(<a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../mxFibonacciHeap.html#decreaseKey(com.mxgraph.analysis.mxFibonacciHeap.Node,double)">decreaseKey</a></span>​(<a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x,
|
||||||
double k)</code></th>
|
double k)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Decreases the key value for a heap node, given the new value to take on.</div>
|
<div class="block">Decreases the key value for a heap node, given the new value to take on.</div>
|
||||||
|
@ -221,14 +222,14 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html#delete-com.mxgraph.analysis.mxFibonacciHeap.Node-">delete</a></span>​(<a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../mxFibonacciHeap.html#delete(com.mxgraph.analysis.mxFibonacciHeap.Node)">delete</a></span>​(<a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Deletes a node from the heap given the reference to the node.</div>
|
<div class="block">Deletes a node from the heap given the reference to the node.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html#insert-com.mxgraph.analysis.mxFibonacciHeap.Node-double-">insert</a></span>​(<a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> node,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../mxFibonacciHeap.html#insert(com.mxgraph.analysis.mxFibonacciHeap.Node,double)">insert</a></span>​(<a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> node,
|
||||||
double key)</code></th>
|
double key)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Inserts a new data element into the heap.</div>
|
<div class="block">Inserts a new data element into the heap.</div>
|
||||||
|
@ -236,50 +237,46 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>protected void</code></td>
|
<td class="colFirst"><code>protected void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html#link-com.mxgraph.analysis.mxFibonacciHeap.Node-com.mxgraph.analysis.mxFibonacciHeap.Node-">link</a></span>​(<a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../mxFibonacciHeap.html#link(com.mxgraph.analysis.mxFibonacciHeap.Node,com.mxgraph.analysis.mxFibonacciHeap.Node)">link</a></span>​(<a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y,
|
||||||
<a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x)</code></th>
|
<a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Make node y a child of node x.</div>
|
<div class="block">Make node y a child of node x.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxFibonacciHeap.Node.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -296,11 +293,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxFibonacciHeap.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxFibonacciHeap.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxFibonacciHeap.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,14 +92,17 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap" class="title">Uses of Class<br>com.mxgraph.analysis.mxFibonacciHeap</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap" class="title">Uses of Class<br>com.mxgraph.analysis.mxFibonacciHeap</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">
|
<div class="classUseContainer">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<table class="useSummary" summary="Use table, listing packages, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Packages that use <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Packages that use <a href="../mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Package</th>
|
<th class="colFirst" scope="col">Package</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
|
@ -120,12 +120,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</li>
|
</li>
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="com.mxgraph.analysis">
|
<li class="blockList">
|
||||||
|
<section role="region"><a id="com.mxgraph.analysis">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Uses of <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></h3>
|
<h3>Uses of <a href="../mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> in <a href="../package-summary.html">com.mxgraph.analysis</a></h3>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> that return <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> that return <a href="../mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -133,24 +134,24 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></code></td>
|
<td class="colFirst"><code>protected <a href="../mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html#createPriorityQueue--">createPriorityQueue</a></span>()</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../mxGraphAnalysis.html#createPriorityQueue()">createPriorityQueue</a></span>()</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Hook for subclassers to provide a custom fibonacci heap.</div>
|
<div class="block">Hook for subclassers to provide a custom fibonacci heap.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></code></td>
|
<td class="colFirst"><code>static <a href="../mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html#union-com.mxgraph.analysis.mxFibonacciHeap-com.mxgraph.analysis.mxFibonacciHeap-">union</a></span>​(<a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h1,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../mxFibonacciHeap.html#union(com.mxgraph.analysis.mxFibonacciHeap,com.mxgraph.analysis.mxFibonacciHeap)">union</a></span>​(<a href="../mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h1,
|
||||||
<a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h2)</code></th>
|
<a href="../mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h2)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Joins two Fibonacci heaps into a new one.</div>
|
<div class="block">Joins two Fibonacci heaps into a new one.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -158,51 +159,47 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static <a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></code></td>
|
<td class="colFirst"><code>static <a href="../mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html#union-com.mxgraph.analysis.mxFibonacciHeap-com.mxgraph.analysis.mxFibonacciHeap-">union</a></span>​(<a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h1,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxFibonacciHeap.</span><code><span class="memberNameLink"><a href="../mxFibonacciHeap.html#union(com.mxgraph.analysis.mxFibonacciHeap,com.mxgraph.analysis.mxFibonacciHeap)">union</a></span>​(<a href="../mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h1,
|
||||||
<a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h2)</code></th>
|
<a href="../mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h2)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Joins two Fibonacci heaps into a new one.</div>
|
<div class="block">Joins two Fibonacci heaps into a new one.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxFibonacciHeap.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxFibonacciHeap.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxFibonacciHeap.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -219,11 +216,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxGraphAnalysis.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxGraphAnalysis.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphAnalysis.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,14 +92,17 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis" class="title">Uses of Class<br>com.mxgraph.analysis.mxGraphAnalysis</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis" class="title">Uses of Class<br>com.mxgraph.analysis.mxGraphAnalysis</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">
|
<div class="classUseContainer">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<table class="useSummary" summary="Use table, listing packages, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Packages that use <a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Packages that use <a href="../mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Package</th>
|
<th class="colFirst" scope="col">Package</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
|
@ -120,12 +120,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</li>
|
</li>
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="com.mxgraph.analysis">
|
<li class="blockList">
|
||||||
|
<section role="region"><a id="com.mxgraph.analysis">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Uses of <a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a> in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></h3>
|
<h3>Uses of <a href="../mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a> in <a href="../package-summary.html">com.mxgraph.analysis</a></h3>
|
||||||
<table class="useSummary" summary="Use table, listing fields, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Fields in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> declared as <a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Fields in <a href="../package-summary.html">com.mxgraph.analysis</a> declared as <a href="../mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Field</th>
|
<th class="colSecond" scope="col">Field</th>
|
||||||
|
@ -133,16 +134,16 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected static <a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></code></td>
|
<td class="colFirst"><code>protected static <a href="../mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html#instance">instance</a></span></code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../mxGraphAnalysis.html#instance">instance</a></span></code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Holds the shared instance of this class.</div>
|
<div class="block">Holds the shared instance of this class.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> that return <a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> that return <a href="../mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -150,14 +151,14 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static <a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></code></td>
|
<td class="colFirst"><code>static <a href="../mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html#getInstance--">getInstance</a></span>()</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../mxGraphAnalysis.html#getInstance()">getInstance</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -166,49 +167,45 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html#setInstance-com.mxgraph.analysis.mxGraphAnalysis-">setInstance</a></span>​(<a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a> instance)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../mxGraphAnalysis.html#setInstance(com.mxgraph.analysis.mxGraphAnalysis)">setInstance</a></span>​(<a href="../mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a> instance)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Sets the shared instance of this class.</div>
|
<div class="block">Sets the shared instance of this class.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxGraphAnalysis.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxGraphAnalysis.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphAnalysis.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -225,11 +222,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxGraphGenerator.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxGraphGenerator.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphGenerator.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,14 +92,17 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.mxGraphGenerator" class="title">Uses of Class<br>com.mxgraph.analysis.mxGraphGenerator</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.mxGraphGenerator" class="title">Uses of Class<br>com.mxgraph.analysis.mxGraphGenerator</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">
|
<div class="classUseContainer">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<table class="useSummary" summary="Use table, listing packages, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Packages that use <a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Packages that use <a href="../mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Package</th>
|
<th class="colFirst" scope="col">Package</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
|
@ -120,12 +120,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</li>
|
</li>
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="com.mxgraph.analysis">
|
<li class="blockList">
|
||||||
|
<section role="region"><a id="com.mxgraph.analysis">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Uses of <a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a> in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></h3>
|
<h3>Uses of <a href="../mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a> in <a href="../package-summary.html">com.mxgraph.analysis</a></h3>
|
||||||
<table class="useSummary" summary="Use table, listing fields, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Fields in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> declared as <a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Fields in <a href="../package-summary.html">com.mxgraph.analysis</a> declared as <a href="../mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Field</th>
|
<th class="colSecond" scope="col">Field</th>
|
||||||
|
@ -133,14 +134,14 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected <a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></code></td>
|
<td class="colFirst"><code>protected <a href="../mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxAnalysisGraph.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html#generator">generator</a></span></code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxAnalysisGraph.</span><code><span class="memberNameLink"><a href="../mxAnalysisGraph.html#generator">generator</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> that return <a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> that return <a href="../mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -148,14 +149,14 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></code></td>
|
<td class="colFirst"><code><a href="../mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxAnalysisGraph.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html#getGenerator--">getGenerator</a></span>()</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxAnalysisGraph.</span><code><span class="memberNameLink"><a href="../mxAnalysisGraph.html#getGenerator()">getGenerator</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -164,47 +165,43 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxAnalysisGraph.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxAnalysisGraph.html#setGenerator-com.mxgraph.analysis.mxGraphGenerator-">setGenerator</a></span>​(<a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a> generator)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxAnalysisGraph.</span><code><span class="memberNameLink"><a href="../mxAnalysisGraph.html#setGenerator(com.mxgraph.analysis.mxGraphGenerator)">setGenerator</a></span>​(<a href="../mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a> generator)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxGraphGenerator.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxGraphGenerator.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphGenerator.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -221,11 +218,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxGraphProperties.GraphType.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphProperties.GraphType.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,14 +92,17 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType" class="title">Uses of Class<br>com.mxgraph.analysis.mxGraphProperties.GraphType</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType" class="title">Uses of Class<br>com.mxgraph.analysis.mxGraphProperties.GraphType</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">
|
<div class="classUseContainer">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<table class="useSummary" summary="Use table, listing packages, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Packages that use <a href="../../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Packages that use <a href="../mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Package</th>
|
<th class="colFirst" scope="col">Package</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
|
@ -120,12 +120,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</li>
|
</li>
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="com.mxgraph.analysis">
|
<li class="blockList">
|
||||||
|
<section role="region"><a id="com.mxgraph.analysis">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Uses of <a href="../../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></h3>
|
<h3>Uses of <a href="../mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> in <a href="../package-summary.html">com.mxgraph.analysis</a></h3>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> that return <a href="../../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> that return <a href="../mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -133,15 +134,15 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static <a href="../../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a></code></td>
|
<td class="colFirst"><code>static <a href="../mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphProperties.GraphType.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#valueOf-java.lang.String-">valueOf</a></span>​(java.lang.String name)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphProperties.GraphType.</span><code><span class="memberNameLink"><a href="../mxGraphProperties.GraphType.html#valueOf(java.lang.String)">valueOf</a></span>​(java.lang.String name)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the enum constant of this type with the specified name.</div>
|
<div class="block">Returns the enum constant of this type with the specified name.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static <a href="../../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a>[]</code></td>
|
<td class="colFirst"><code>static <a href="../mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a>[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphProperties.GraphType.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#values--">values</a></span>()</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphProperties.GraphType.</span><code><span class="memberNameLink"><a href="../mxGraphProperties.GraphType.html#values()">values</a></span>()</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns an array containing the constants of this enum type, in
|
<div class="block">Returns an array containing the constants of this enum type, in
|
||||||
the order they are declared.</div>
|
the order they are declared.</div>
|
||||||
|
@ -149,42 +150,38 @@ the order they are declared.</div>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxGraphProperties.GraphType.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphProperties.GraphType.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -201,11 +198,13 @@ the order they are declared.</div>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxGraphProperties.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxGraphProperties.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxGraphProperties.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphProperties.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,41 +92,39 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.mxGraphProperties" class="title">Uses of Class<br>com.mxgraph.analysis.mxGraphProperties</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.mxGraphProperties" class="title">Uses of Class<br>com.mxgraph.analysis.mxGraphProperties</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">No usage of com.mxgraph.analysis.mxGraphProperties</div>
|
<div class="classUseContainer">No usage of com.mxgraph.analysis.mxGraphProperties</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxGraphProperties.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxGraphProperties.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxGraphProperties.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphProperties.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -146,11 +141,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxGraphStructure.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxGraphStructure.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphStructure.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,41 +92,39 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.mxGraphStructure" class="title">Uses of Class<br>com.mxgraph.analysis.mxGraphStructure</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.mxGraphStructure" class="title">Uses of Class<br>com.mxgraph.analysis.mxGraphStructure</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">No usage of com.mxgraph.analysis.mxGraphStructure</div>
|
<div class="classUseContainer">No usage of com.mxgraph.analysis.mxGraphStructure</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxGraphStructure.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxGraphStructure.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxGraphStructure.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphStructure.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -146,11 +141,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxICostFunction.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxICostFunction.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,14 +92,17 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Interface com.mxgraph.analysis.mxICostFunction" class="title">Uses of Interface<br>com.mxgraph.analysis.mxICostFunction</h2>
|
<h2 title="Uses of Interface com.mxgraph.analysis.mxICostFunction" class="title">Uses of Interface<br>com.mxgraph.analysis.mxICostFunction</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">
|
<div class="classUseContainer">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<table class="useSummary" summary="Use table, listing packages, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Packages that use <a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Packages that use <a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Package</th>
|
<th class="colFirst" scope="col">Package</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
|
@ -128,12 +128,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</li>
|
</li>
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="com.mxgraph.analysis">
|
<li class="blockList">
|
||||||
|
<section role="region"><a id="com.mxgraph.analysis">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Uses of <a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></h3>
|
<h3>Uses of <a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> in <a href="../package-summary.html">com.mxgraph.analysis</a></h3>
|
||||||
<table class="useSummary" summary="Use table, listing classes, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Classes in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> that implement <a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Classes in <a href="../package-summary.html">com.mxgraph.analysis</a> that implement <a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Class</th>
|
<th class="colSecond" scope="col">Class</th>
|
||||||
|
@ -142,22 +143,22 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>class </code></td>
|
<td class="colFirst"><code>class </code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxConstantCostFunction.html" title="class in com.mxgraph.analysis">mxConstantCostFunction</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../mxConstantCostFunction.html" title="class in com.mxgraph.analysis">mxConstantCostFunction</a></span></code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Implements a cost function for a constant cost per traversed cell.</div>
|
<div class="block">Implements a cost function for a constant cost per traversed cell.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>class </code></td>
|
<td class="colFirst"><code>class </code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxDistanceCostFunction.html" title="class in com.mxgraph.analysis">mxDistanceCostFunction</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../mxDistanceCostFunction.html" title="class in com.mxgraph.analysis">mxDistanceCostFunction</a></span></code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Implements a cost function for the Euclidean length of an edge.</div>
|
<div class="block">Implements a cost function for the Euclidean length of an edge.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -166,9 +167,9 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html#getMinimumSpanningTree-com.mxgraph.view.mxGraph-java.lang.Object:A-com.mxgraph.analysis.mxICostFunction-boolean-">getMinimumSpanningTree</a></span>​(<a href="../../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../mxGraphAnalysis.html#getMinimumSpanningTree(com.mxgraph.view.mxGraph,java.lang.Object%5B%5D,com.mxgraph.analysis.mxICostFunction,boolean)">getMinimumSpanningTree</a></span>​(<a href="../../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
java.lang.Object[] v,
|
java.lang.Object[] v,
|
||||||
<a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf,
|
<a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf,
|
||||||
boolean directed)</code></th>
|
boolean directed)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).</div>
|
<div class="block">Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).</div>
|
||||||
|
@ -176,20 +177,20 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html#getMinimumSpanningTree-com.mxgraph.view.mxGraph-java.lang.Object:A-java.lang.Object:A-com.mxgraph.analysis.mxICostFunction-">getMinimumSpanningTree</a></span>​(<a href="../../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../mxGraphAnalysis.html#getMinimumSpanningTree(com.mxgraph.view.mxGraph,java.lang.Object%5B%5D,java.lang.Object%5B%5D,com.mxgraph.analysis.mxICostFunction)">getMinimumSpanningTree</a></span>​(<a href="../../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
java.lang.Object[] v,
|
java.lang.Object[] v,
|
||||||
java.lang.Object[] e,
|
java.lang.Object[] e,
|
||||||
<a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</code></th>
|
<a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).</div>
|
<div class="block">Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html#getShortestPath-com.mxgraph.view.mxGraph-java.lang.Object-java.lang.Object-com.mxgraph.analysis.mxICostFunction-int-boolean-">getShortestPath</a></span>​(<a href="../../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../mxGraphAnalysis.html#getShortestPath(com.mxgraph.view.mxGraph,java.lang.Object,java.lang.Object,com.mxgraph.analysis.mxICostFunction,int,boolean)">getShortestPath</a></span>​(<a href="../../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
java.lang.Object from,
|
java.lang.Object from,
|
||||||
java.lang.Object to,
|
java.lang.Object to,
|
||||||
<a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf,
|
<a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf,
|
||||||
int steps,
|
int steps,
|
||||||
boolean directed)</code></th>
|
boolean directed)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
|
@ -198,9 +199,9 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code><a href="../../../../com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[]</code></td>
|
<td class="colFirst"><code><a href="../../view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[]</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html#sort-com.mxgraph.view.mxCellState:A-com.mxgraph.analysis.mxICostFunction-">sort</a></span>​(<a href="../../../../com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] states,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../mxGraphAnalysis.html#sort(com.mxgraph.view.mxCellState%5B%5D,com.mxgraph.analysis.mxICostFunction)">sort</a></span>​(<a href="../../view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] states,
|
||||||
<a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</code></th>
|
<a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns a sorted set for <code>cells</code> with respect to
|
<div class="block">Returns a sorted set for <code>cells</code> with respect to
|
||||||
<code>cf</code>.</div>
|
<code>cf</code>.</div>
|
||||||
|
@ -208,8 +209,8 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>double</code></td>
|
<td class="colFirst"><code>double</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html#sum-com.mxgraph.view.mxCellState:A-com.mxgraph.analysis.mxICostFunction-">sum</a></span>​(<a href="../../../../com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] states,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../mxGraphAnalysis.html#sum(com.mxgraph.view.mxCellState%5B%5D,com.mxgraph.analysis.mxICostFunction)">sum</a></span>​(<a href="../../view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] states,
|
||||||
<a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</code></th>
|
<a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the sum of all cost for <code>cells</code> with respect to
|
<div class="block">Returns the sum of all cost for <code>cells</code> with respect to
|
||||||
<code>cf</code>.</div>
|
<code>cf</code>.</div>
|
||||||
|
@ -217,13 +218,15 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
<li class="blockList"><a name="com.mxgraph.costfunction">
|
<li class="blockList">
|
||||||
|
<section role="region"><a id="com.mxgraph.costfunction">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Uses of <a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> in <a href="../../../../com/mxgraph/costfunction/package-summary.html">com.mxgraph.costfunction</a></h3>
|
<h3>Uses of <a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> in <a href="../../costfunction/package-summary.html">com.mxgraph.costfunction</a></h3>
|
||||||
<table class="useSummary" summary="Use table, listing classes, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Classes in <a href="../../../../com/mxgraph/costfunction/package-summary.html">com.mxgraph.costfunction</a> that implement <a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Classes in <a href="../../costfunction/package-summary.html">com.mxgraph.costfunction</a> that implement <a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Class</th>
|
<th class="colSecond" scope="col">Class</th>
|
||||||
|
@ -232,30 +235,32 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>class </code></td>
|
<td class="colFirst"><code>class </code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../../com/mxgraph/costfunction/mxConstCostFunction.html" title="class in com.mxgraph.costfunction">mxConstCostFunction</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../costfunction/mxConstCostFunction.html" title="class in com.mxgraph.costfunction">mxConstCostFunction</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>class </code></td>
|
<td class="colFirst"><code>class </code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../../com/mxgraph/costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>class </code></td>
|
<td class="colFirst"><code>class </code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../../com/mxgraph/costfunction/mxDoubleValCostFunction.html" title="class in com.mxgraph.costfunction">mxDoubleValCostFunction</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../costfunction/mxDoubleValCostFunction.html" title="class in com.mxgraph.costfunction">mxDoubleValCostFunction</a></span></code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">A cost function that assumes that edge value is of type "double" or "String" and returns that value.</div>
|
<div class="block">A cost function that assumes that edge value is of type "double" or "String" and returns that value.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
<li class="blockList"><a name="com.mxgraph.generatorfunction">
|
<li class="blockList">
|
||||||
|
<section role="region"><a id="com.mxgraph.generatorfunction">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Uses of <a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> in <a href="../../../../com/mxgraph/generatorfunction/package-summary.html">com.mxgraph.generatorfunction</a></h3>
|
<h3>Uses of <a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> in <a href="../../generatorfunction/package-summary.html">com.mxgraph.generatorfunction</a></h3>
|
||||||
<table class="useSummary" summary="Use table, listing classes, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Classes in <a href="../../../../com/mxgraph/generatorfunction/package-summary.html">com.mxgraph.generatorfunction</a> that implement <a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Classes in <a href="../../generatorfunction/package-summary.html">com.mxgraph.generatorfunction</a> that implement <a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Class</th>
|
<th class="colSecond" scope="col">Class</th>
|
||||||
|
@ -264,62 +269,58 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>class </code></td>
|
<td class="colFirst"><code>class </code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../../com/mxgraph/generatorfunction/mxGeneratorConstFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorConstFunction</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../generatorfunction/mxGeneratorConstFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorConstFunction</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>class </code></td>
|
<td class="colFirst"><code>class </code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../../com/mxgraph/generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>class </code></td>
|
<td class="colFirst"><code>class </code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../../com/mxgraph/generatorfunction/mxGeneratorRandomFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorRandomFunction</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../generatorfunction/mxGeneratorRandomFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorRandomFunction</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>class </code></td>
|
<td class="colFirst"><code>class </code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../../com/mxgraph/generatorfunction/mxGeneratorRandomIntFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorRandomIntFunction</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../generatorfunction/mxGeneratorRandomIntFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorRandomIntFunction</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxICostFunction.html" title="interface in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxICostFunction.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxICostFunction.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -336,11 +337,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxTraversal.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxTraversal.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxTraversal.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxTraversal.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,41 +92,39 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.mxTraversal" class="title">Uses of Class<br>com.mxgraph.analysis.mxTraversal</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.mxTraversal" class="title">Uses of Class<br>com.mxgraph.analysis.mxTraversal</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">No usage of com.mxgraph.analysis.mxTraversal</div>
|
<div class="classUseContainer">No usage of com.mxgraph.analysis.mxTraversal</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxTraversal.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxTraversal.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxTraversal.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxTraversal.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -146,11 +141,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxUnionFind.Node.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxUnionFind.Node.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,14 +92,17 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node" class="title">Uses of Class<br>com.mxgraph.analysis.mxUnionFind.Node</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node" class="title">Uses of Class<br>com.mxgraph.analysis.mxUnionFind.Node</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">
|
<div class="classUseContainer">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<table class="useSummary" summary="Use table, listing packages, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Packages that use <a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Packages that use <a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Package</th>
|
<th class="colFirst" scope="col">Package</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
|
@ -120,12 +120,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</li>
|
</li>
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="com.mxgraph.analysis">
|
<li class="blockList">
|
||||||
|
<section role="region"><a id="com.mxgraph.analysis">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Uses of <a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a> in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></h3>
|
<h3>Uses of <a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a> in <a href="../package-summary.html">com.mxgraph.analysis</a></h3>
|
||||||
<table class="useSummary" summary="Use table, listing fields, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Fields in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> declared as <a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Fields in <a href="../package-summary.html">com.mxgraph.analysis</a> declared as <a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Field</th>
|
<th class="colSecond" scope="col">Field</th>
|
||||||
|
@ -133,16 +134,16 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected <a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></code></td>
|
<td class="colFirst"><code>protected <a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.Node.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html#parent">parent</a></span></code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.Node.</span><code><span class="memberNameLink"><a href="../mxUnionFind.Node.html#parent">parent</a></span></code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Reference to the parent node.</div>
|
<div class="block">Reference to the parent node.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table class="useSummary" summary="Use table, listing fields, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Fields in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> with type parameters of type <a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Fields in <a href="../package-summary.html">com.mxgraph.analysis</a> with type parameters of type <a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Field</th>
|
<th class="colSecond" scope="col">Field</th>
|
||||||
|
@ -150,16 +151,16 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected java.util.Map<java.lang.Object,<a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a>></code></td>
|
<td class="colFirst"><code>protected java.util.Map<java.lang.Object,​<a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a>></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxUnionFind.html#nodes">nodes</a></span></code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.</span><code><span class="memberNameLink"><a href="../mxUnionFind.html#nodes">nodes</a></span></code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Maps from elements to nodes</div>
|
<div class="block">Maps from elements to nodes</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> that return <a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> that return <a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -167,28 +168,28 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code><a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></code></td>
|
<td class="colFirst"><code><a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxUnionFind.html#find-com.mxgraph.analysis.mxUnionFind.Node-">find</a></span>​(<a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a> node)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.</span><code><span class="memberNameLink"><a href="../mxUnionFind.html#find(com.mxgraph.analysis.mxUnionFind.Node)">find</a></span>​(<a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a> node)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the set that contains <code>node</code>.</div>
|
<div class="block">Returns the set that contains <code>node</code>.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code><a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></code></td>
|
<td class="colFirst"><code><a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxUnionFind.html#getNode-java.lang.Object-">getNode</a></span>​(java.lang.Object element)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.</span><code><span class="memberNameLink"><a href="../mxUnionFind.html#getNode(java.lang.Object)">getNode</a></span>​(java.lang.Object element)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the node that represents element.</div>
|
<div class="block">Returns the node that represents element.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code><a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></code></td>
|
<td class="colFirst"><code><a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.Node.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html#getParent--">getParent</a></span>()</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.Node.</span><code><span class="memberNameLink"><a href="../mxUnionFind.Node.html#getParent()">getParent</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> with parameters of type <a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -196,21 +197,21 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code><a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></code></td>
|
<td class="colFirst"><code><a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxUnionFind.html#find-com.mxgraph.analysis.mxUnionFind.Node-">find</a></span>​(<a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a> node)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.</span><code><span class="memberNameLink"><a href="../mxUnionFind.html#find(com.mxgraph.analysis.mxUnionFind.Node)">find</a></span>​(<a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a> node)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the set that contains <code>node</code>.</div>
|
<div class="block">Returns the set that contains <code>node</code>.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.Node.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html#setParent-com.mxgraph.analysis.mxUnionFind.Node-">setParent</a></span>​(<a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a> parent)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.Node.</span><code><span class="memberNameLink"><a href="../mxUnionFind.Node.html#setParent(com.mxgraph.analysis.mxUnionFind.Node)">setParent</a></span>​(<a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a> parent)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxUnionFind.html#union-com.mxgraph.analysis.mxUnionFind.Node-com.mxgraph.analysis.mxUnionFind.Node-">union</a></span>​(<a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a> a,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxUnionFind.</span><code><span class="memberNameLink"><a href="../mxUnionFind.html#union(com.mxgraph.analysis.mxUnionFind.Node,com.mxgraph.analysis.mxUnionFind.Node)">union</a></span>​(<a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a> a,
|
||||||
<a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a> b)</code></th>
|
<a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">mxUnionFind.Node</a> b)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Unifies the sets <code>a</code> and <code>b</code> in constant time
|
<div class="block">Unifies the sets <code>a</code> and <code>b</code> in constant time
|
||||||
using a union by rank on the tree size.</div>
|
using a union by rank on the tree size.</div>
|
||||||
|
@ -218,42 +219,38 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxUnionFind.Node.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxUnionFind.Node.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxUnionFind.Node.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxUnionFind.Node.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -270,11 +267,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 4.0.0 API Specification)</title>
|
<title>Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../../script.js"></script>
|
<script type="text/javascript" src="../../../../script.js"></script>
|
||||||
|
@ -14,55 +14,52 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 4.0.0 API Specification)";
|
parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxUnionFind.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxUnionFind.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxUnionFind.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxUnionFind.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -85,7 +82,7 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -95,14 +92,17 @@ var pathtoroot = "../../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2 title="Uses of Class com.mxgraph.analysis.mxUnionFind" class="title">Uses of Class<br>com.mxgraph.analysis.mxUnionFind</h2>
|
<h2 title="Uses of Class com.mxgraph.analysis.mxUnionFind" class="title">Uses of Class<br>com.mxgraph.analysis.mxUnionFind</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="classUseContainer">
|
<div class="classUseContainer">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<table class="useSummary" summary="Use table, listing packages, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Packages that use <a href="../../../../com/mxgraph/analysis/mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Packages that use <a href="../mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Package</th>
|
<th class="colFirst" scope="col">Package</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
|
@ -120,12 +120,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</li>
|
</li>
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="com.mxgraph.analysis">
|
<li class="blockList">
|
||||||
|
<section role="region"><a id="com.mxgraph.analysis">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Uses of <a href="../../../../com/mxgraph/analysis/mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a> in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></h3>
|
<h3>Uses of <a href="../mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a> in <a href="../package-summary.html">com.mxgraph.analysis</a></h3>
|
||||||
<table class="useSummary" summary="Use table, listing methods, and an explanation">
|
<table class="useSummary">
|
||||||
<caption><span>Methods in <a href="../../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a> that return <a href="../../../../com/mxgraph/analysis/mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a></span><span class="tabEnd"> </span></caption>
|
<caption><span>Methods in <a href="../package-summary.html">com.mxgraph.analysis</a> that return <a href="../mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a></span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
<th class="colSecond" scope="col">Method</th>
|
<th class="colSecond" scope="col">Method</th>
|
||||||
|
@ -133,15 +134,15 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected <a href="../../../../com/mxgraph/analysis/mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a></code></td>
|
<td class="colFirst"><code>protected <a href="../mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html#createUnionFind-java.lang.Object:A-">createUnionFind</a></span>​(java.lang.Object[] v)</code></th>
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../mxGraphAnalysis.html#createUnionFind(java.lang.Object%5B%5D)">createUnionFind</a></span>​(java.lang.Object[] v)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Hook for subclassers to provide a custom union find structure.</div>
|
<div class="block">Hook for subclassers to provide a custom union find structure.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code><a href="../../../../com/mxgraph/analysis/mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a></code></td>
|
<td class="colFirst"><code><a href="../mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a></code></td>
|
||||||
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../../../../com/mxgraph/analysis/mxGraphAnalysis.html#getConnectionComponents-com.mxgraph.view.mxGraph-java.lang.Object:A-java.lang.Object:A-">getConnectionComponents</a></span>​(<a href="../../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<th class="colSecond" scope="row"><span class="typeNameLabel">mxGraphAnalysis.</span><code><span class="memberNameLink"><a href="../mxGraphAnalysis.html#getConnectionComponents(com.mxgraph.view.mxGraph,java.lang.Object%5B%5D,java.lang.Object%5B%5D)">getConnectionComponents</a></span>​(<a href="../../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
java.lang.Object[] v,
|
java.lang.Object[] v,
|
||||||
java.lang.Object[] e)</code></th>
|
java.lang.Object[] e)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
|
@ -151,42 +152,38 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../../index.html">Overview</a></li>
|
||||||
<li><a href="../package-summary.html">Package</a></li>
|
<li><a href="../package-summary.html">Package</a></li>
|
||||||
<li><a href="../../../../com/mxgraph/analysis/mxUnionFind.html" title="class in com.mxgraph.analysis">Class</a></li>
|
<li><a href="../mxUnionFind.html" title="class in com.mxgraph.analysis">Class</a></li>
|
||||||
<li class="navBarCell1Rev">Use</li>
|
<li class="navBarCell1Rev">Use</li>
|
||||||
<li><a href="../package-tree.html">Tree</a></li>
|
<li><a href="../package-tree.html">Tree</a></li>
|
||||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
|
||||||
<li><a href="../../../../index-all.html">Index</a></li>
|
<li><a href="../../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../../help-doc.html">Help</a></li>
|
<li><a href="../../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev</li>
|
|
||||||
<li>Next</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../../index.html?com/mxgraph/analysis/class-use/mxUnionFind.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxUnionFind.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -203,11 +200,13 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>mxAnalysisGraph (mxGraph 4.0.0 API Specification)</title>
|
<title>mxAnalysisGraph (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../script.js"></script>
|
<script type="text/javascript" src="../../../script.js"></script>
|
||||||
|
@ -14,40 +14,45 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="mxAnalysisGraph (mxGraph 4.0.0 API Specification)";
|
parent.document.title="mxAnalysisGraph (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10};
|
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10};
|
||||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
||||||
var altColor = "altColor";
|
var altColor = "altColor";
|
||||||
var rowColor = "rowColor";
|
var rowColor = "rowColor";
|
||||||
var tableTab = "tableTab";
|
var tableTab = "tableTab";
|
||||||
var activeTableTab = "activeTableTab";
|
var activeTableTab = "activeTableTab";
|
||||||
var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxAnalysisGraph.html">Use</a></li>
|
<li><a href="class-use/mxAnalysisGraph.html">Use</a></li>
|
||||||
|
@ -56,19 +61,11 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev Class</li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxConstantCostFunction.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxAnalysisGraph.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxAnalysisGraph.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -106,7 +103,7 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -116,9 +113,12 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></div>
|
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">com.mxgraph.analysis</a></div>
|
||||||
<h2 title="Class mxAnalysisGraph" class="title">Class mxAnalysisGraph</h2>
|
<h2 title="Class mxAnalysisGraph" class="title">Class mxAnalysisGraph</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="contentContainer">
|
<div class="contentContainer">
|
||||||
|
@ -145,12 +145,13 @@ extends java.lang.Object</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="field.summary">
|
<li class="blockList"><a id="field.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Field Summary</h3>
|
<h3>Field Summary</h3>
|
||||||
<table class="memberSummary" summary="Field Summary table, listing fields, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -158,49 +159,53 @@ extends java.lang.Object</pre>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected <a href="../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></code></td>
|
<td class="colFirst"><code>protected <a href="mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#generator">generator</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#generator">generator</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>protected <a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a></code></td>
|
<td class="colFirst"><code>protected <a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#graph">graph</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#graph">graph</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected java.util.Map<java.lang.String,java.lang.Object></code></td>
|
<td class="colFirst"><code>protected java.util.Map<java.lang.String,​java.lang.Object></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#properties">properties</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#properties">properties</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.summary">
|
<li class="blockList"><a id="constructor.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Summary</h3>
|
<h3>Constructor Summary</h3>
|
||||||
<table class="memberSummary" summary="Constructor Summary table, listing constructors, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Constructor</th>
|
<th class="colFirst" scope="col">Constructor</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#mxAnalysisGraph--">mxAnalysisGraph</a></span>()</code></th>
|
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">mxAnalysisGraph</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.summary">
|
<li class="blockList"><a id="method.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Summary</h3>
|
<h3>Method Summary</h3>
|
||||||
<table class="memberSummary" summary="Method Summary table, listing methods, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -209,24 +214,24 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i0" class="altColor">
|
<tr id="i0" class="altColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#getChildCells-java.lang.Object-boolean-boolean-">getChildCells</a></span>​(java.lang.Object parent,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getChildCells(java.lang.Object,boolean,boolean)">getChildCells</a></span>​(java.lang.Object parent,
|
||||||
boolean vertices,
|
boolean vertices,
|
||||||
boolean edges)</code></th>
|
boolean edges)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i1" class="rowColor">
|
<tr id="i1" class="rowColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#getChildEdges-java.lang.Object-">getChildEdges</a></span>​(java.lang.Object parent)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getChildEdges(java.lang.Object)">getChildEdges</a></span>​(java.lang.Object parent)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i2" class="altColor">
|
<tr id="i2" class="altColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#getChildVertices-java.lang.Object-">getChildVertices</a></span>​(java.lang.Object parent)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getChildVertices(java.lang.Object)">getChildVertices</a></span>​(java.lang.Object parent)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i3" class="rowColor">
|
<tr id="i3" class="rowColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#getEdges-java.lang.Object-java.lang.Object-boolean-boolean-">getEdges</a></span>​(java.lang.Object cell,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getEdges(java.lang.Object,java.lang.Object,boolean,boolean)">getEdges</a></span>​(java.lang.Object cell,
|
||||||
java.lang.Object parent,
|
java.lang.Object parent,
|
||||||
boolean includeLoops,
|
boolean includeLoops,
|
||||||
boolean recurse)</code></th>
|
boolean recurse)</code></th>
|
||||||
|
@ -236,7 +241,7 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i4" class="altColor">
|
<tr id="i4" class="altColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#getEdges-java.lang.Object-java.lang.Object-boolean-boolean-boolean-boolean-">getEdges</a></span>​(java.lang.Object cell,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getEdges(java.lang.Object,java.lang.Object,boolean,boolean,boolean,boolean)">getEdges</a></span>​(java.lang.Object cell,
|
||||||
java.lang.Object parent,
|
java.lang.Object parent,
|
||||||
boolean incoming,
|
boolean incoming,
|
||||||
boolean outgoing,
|
boolean outgoing,
|
||||||
|
@ -247,18 +252,18 @@ extends java.lang.Object</pre>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i5" class="rowColor">
|
<tr id="i5" class="rowColor">
|
||||||
<td class="colFirst"><code><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></code></td>
|
<td class="colFirst"><code><a href="mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#getGenerator--">getGenerator</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getGenerator()">getGenerator</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i6" class="altColor">
|
<tr id="i6" class="altColor">
|
||||||
<td class="colFirst"><code><a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a></code></td>
|
<td class="colFirst"><code><a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#getGraph--">getGraph</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getGraph()">getGraph</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i7" class="rowColor">
|
<tr id="i7" class="rowColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#getOpposites-java.lang.Object:A-java.lang.Object-">getOpposites</a></span>​(java.lang.Object[] edges,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getOpposites(java.lang.Object%5B%5D,java.lang.Object)">getOpposites</a></span>​(java.lang.Object[] edges,
|
||||||
java.lang.Object terminal)</code></th>
|
java.lang.Object terminal)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns all distinct opposite cells for the specified terminal
|
<div class="block">Returns all distinct opposite cells for the specified terminal
|
||||||
|
@ -267,7 +272,7 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i8" class="altColor">
|
<tr id="i8" class="altColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#getOpposites-java.lang.Object:A-java.lang.Object-boolean-boolean-">getOpposites</a></span>​(java.lang.Object[] edges,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getOpposites(java.lang.Object%5B%5D,java.lang.Object,boolean,boolean)">getOpposites</a></span>​(java.lang.Object[] edges,
|
||||||
java.lang.Object terminal,
|
java.lang.Object terminal,
|
||||||
boolean sources,
|
boolean sources,
|
||||||
boolean targets)</code></th>
|
boolean targets)</code></th>
|
||||||
|
@ -277,34 +282,34 @@ extends java.lang.Object</pre>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i9" class="rowColor">
|
<tr id="i9" class="rowColor">
|
||||||
<td class="colFirst"><code>java.util.Map<java.lang.String,java.lang.Object></code></td>
|
<td class="colFirst"><code>java.util.Map<java.lang.String,​java.lang.Object></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#getProperties--">getProperties</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getProperties()">getProperties</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i10" class="altColor">
|
<tr id="i10" class="altColor">
|
||||||
<td class="colFirst"><code>java.lang.Object</code></td>
|
<td class="colFirst"><code>java.lang.Object</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#getTerminal-java.lang.Object-boolean-">getTerminal</a></span>​(java.lang.Object edge,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getTerminal(java.lang.Object,boolean)">getTerminal</a></span>​(java.lang.Object edge,
|
||||||
boolean isSource)</code></th>
|
boolean isSource)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i11" class="rowColor">
|
<tr id="i11" class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#setGenerator-com.mxgraph.analysis.mxGraphGenerator-">setGenerator</a></span>​(<a href="../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a> generator)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setGenerator(com.mxgraph.analysis.mxGraphGenerator)">setGenerator</a></span>​(<a href="mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a> generator)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i12" class="altColor">
|
<tr id="i12" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#setGraph-com.mxgraph.view.mxGraph-">setGraph</a></span>​(<a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setGraph(com.mxgraph.view.mxGraph)">setGraph</a></span>​(<a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i13" class="rowColor">
|
<tr id="i13" class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html#setProperties-java.util.Map-">setProperties</a></span>​(java.util.Map<java.lang.String,java.lang.Object> properties)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setProperties(java.util.Map)">setProperties</a></span>​(java.util.Map<java.lang.String,​java.lang.Object> properties)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
|
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Methods inherited from class java.lang.Object</h3>
|
<h3>Methods inherited from class java.lang.Object</h3>
|
||||||
|
@ -312,6 +317,7 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -319,47 +325,50 @@ extends java.lang.Object</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="field.detail">
|
<li class="blockList"><a id="field.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Field Detail</h3>
|
<h3>Field Detail</h3>
|
||||||
<a name="properties">
|
<a id="properties">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>properties</h4>
|
<h4>properties</h4>
|
||||||
<pre>protected java.util.Map<java.lang.String,java.lang.Object> properties</pre>
|
<pre>protected java.util.Map<java.lang.String,​java.lang.Object> properties</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="generator">
|
<a id="generator">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>generator</h4>
|
<h4>generator</h4>
|
||||||
<pre>protected <a href="../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a> generator</pre>
|
<pre>protected <a href="mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a> generator</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="graph">
|
<a id="graph">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>graph</h4>
|
<h4>graph</h4>
|
||||||
<pre>protected <a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph</pre>
|
<pre>protected <a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.detail">
|
<li class="blockList"><a id="constructor.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Detail</h3>
|
<h3>Constructor Detail</h3>
|
||||||
<a name="mxAnalysisGraph--">
|
<a id="<init>()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
|
@ -370,19 +379,21 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.detail">
|
<li class="blockList"><a id="method.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Detail</h3>
|
<h3>Method Detail</h3>
|
||||||
<a name="getEdges-java.lang.Object-java.lang.Object-boolean-boolean-boolean-boolean-">
|
<a id="getEdges(java.lang.Object,java.lang.Object,boolean,boolean,boolean,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getEdges</h4>
|
<h4>getEdges</h4>
|
||||||
<pre>public java.lang.Object[] getEdges​(java.lang.Object cell,
|
<pre class="methodSignature">public java.lang.Object[] getEdges​(java.lang.Object cell,
|
||||||
java.lang.Object parent,
|
java.lang.Object parent,
|
||||||
boolean incoming,
|
boolean incoming,
|
||||||
boolean outgoing,
|
boolean outgoing,
|
||||||
|
@ -410,13 +421,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getEdges-java.lang.Object-java.lang.Object-boolean-boolean-">
|
<a id="getEdges(java.lang.Object,java.lang.Object,boolean,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getEdges</h4>
|
<h4>getEdges</h4>
|
||||||
<pre>public java.lang.Object[] getEdges​(java.lang.Object cell,
|
<pre class="methodSignature">public java.lang.Object[] getEdges​(java.lang.Object cell,
|
||||||
java.lang.Object parent,
|
java.lang.Object parent,
|
||||||
boolean includeLoops,
|
boolean includeLoops,
|
||||||
boolean recurse)</pre>
|
boolean recurse)</pre>
|
||||||
|
@ -438,13 +449,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getChildVertices-java.lang.Object-">
|
<a id="getChildVertices(java.lang.Object)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getChildVertices</h4>
|
<h4>getChildVertices</h4>
|
||||||
<pre>public java.lang.Object[] getChildVertices​(java.lang.Object parent)</pre>
|
<pre class="methodSignature">public java.lang.Object[] getChildVertices​(java.lang.Object parent)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
<dd><code>parent</code> - the cell whose children will be return</dd>
|
<dd><code>parent</code> - the cell whose children will be return</dd>
|
||||||
|
@ -453,13 +464,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getChildEdges-java.lang.Object-">
|
<a id="getChildEdges(java.lang.Object)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getChildEdges</h4>
|
<h4>getChildEdges</h4>
|
||||||
<pre>public java.lang.Object[] getChildEdges​(java.lang.Object parent)</pre>
|
<pre class="methodSignature">public java.lang.Object[] getChildEdges​(java.lang.Object parent)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
<dd><code>parent</code> - the cell whose child edges will be return</dd>
|
<dd><code>parent</code> - the cell whose child edges will be return</dd>
|
||||||
|
@ -468,13 +479,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getTerminal-java.lang.Object-boolean-">
|
<a id="getTerminal(java.lang.Object,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getTerminal</h4>
|
<h4>getTerminal</h4>
|
||||||
<pre>public java.lang.Object getTerminal​(java.lang.Object edge,
|
<pre class="methodSignature">public java.lang.Object getTerminal​(java.lang.Object edge,
|
||||||
boolean isSource)</pre>
|
boolean isSource)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -485,13 +496,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getChildCells-java.lang.Object-boolean-boolean-">
|
<a id="getChildCells(java.lang.Object,boolean,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getChildCells</h4>
|
<h4>getChildCells</h4>
|
||||||
<pre>public java.lang.Object[] getChildCells​(java.lang.Object parent,
|
<pre class="methodSignature">public java.lang.Object[] getChildCells​(java.lang.Object parent,
|
||||||
boolean vertices,
|
boolean vertices,
|
||||||
boolean edges)</pre>
|
boolean edges)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -503,13 +514,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getOpposites-java.lang.Object:A-java.lang.Object-boolean-boolean-">
|
<a id="getOpposites(java.lang.Object[],java.lang.Object,boolean,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getOpposites</h4>
|
<h4>getOpposites</h4>
|
||||||
<pre>public java.lang.Object[] getOpposites​(java.lang.Object[] edges,
|
<pre class="methodSignature">public java.lang.Object[] getOpposites​(java.lang.Object[] edges,
|
||||||
java.lang.Object terminal,
|
java.lang.Object terminal,
|
||||||
boolean sources,
|
boolean sources,
|
||||||
boolean targets)</pre>
|
boolean targets)</pre>
|
||||||
|
@ -529,13 +540,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getOpposites-java.lang.Object:A-java.lang.Object-">
|
<a id="getOpposites(java.lang.Object[],java.lang.Object)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getOpposites</h4>
|
<h4>getOpposites</h4>
|
||||||
<pre>public java.lang.Object[] getOpposites​(java.lang.Object[] edges,
|
<pre class="methodSignature">public java.lang.Object[] getOpposites​(java.lang.Object[] edges,
|
||||||
java.lang.Object terminal)</pre>
|
java.lang.Object terminal)</pre>
|
||||||
<div class="block">Returns all distinct opposite cells for the specified terminal
|
<div class="block">Returns all distinct opposite cells for the specified terminal
|
||||||
on the given edges.</div>
|
on the given edges.</div>
|
||||||
|
@ -549,77 +560,81 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getProperties--">
|
<a id="getProperties()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getProperties</h4>
|
<h4>getProperties</h4>
|
||||||
<pre>public java.util.Map<java.lang.String,java.lang.Object> getProperties()</pre>
|
<pre class="methodSignature">public java.util.Map<java.lang.String,​java.lang.Object> getProperties()</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="setProperties-java.util.Map-">
|
<a id="setProperties(java.util.Map)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>setProperties</h4>
|
<h4>setProperties</h4>
|
||||||
<pre>public void setProperties​(java.util.Map<java.lang.String,java.lang.Object> properties)</pre>
|
<pre class="methodSignature">public void setProperties​(java.util.Map<java.lang.String,​java.lang.Object> properties)</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getGraph--">
|
<a id="getGraph()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getGraph</h4>
|
<h4>getGraph</h4>
|
||||||
<pre>public <a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> getGraph()</pre>
|
<pre class="methodSignature">public <a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> getGraph()</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="setGraph-com.mxgraph.view.mxGraph-">
|
<a id="setGraph(com.mxgraph.view.mxGraph)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>setGraph</h4>
|
<h4>setGraph</h4>
|
||||||
<pre>public void setGraph​(<a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph)</pre>
|
<pre class="methodSignature">public void setGraph​(<a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph)</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getGenerator--">
|
<a id="getGenerator()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getGenerator</h4>
|
<h4>getGenerator</h4>
|
||||||
<pre>public <a href="../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a> getGenerator()</pre>
|
<pre class="methodSignature">public <a href="mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a> getGenerator()</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="setGenerator-com.mxgraph.analysis.mxGraphGenerator-">
|
<a id="setGenerator(com.mxgraph.analysis.mxGraphGenerator)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>setGenerator</h4>
|
<h4>setGenerator</h4>
|
||||||
<pre>public void setGenerator​(<a href="../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a> generator)</pre>
|
<pre class="methodSignature">public void setGenerator​(<a href="mxGraphGenerator.html" title="class in com.mxgraph.analysis">mxGraphGenerator</a> generator)</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxAnalysisGraph.html">Use</a></li>
|
<li><a href="class-use/mxAnalysisGraph.html">Use</a></li>
|
||||||
|
@ -628,19 +643,11 @@ extends java.lang.Object</pre>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li>Prev Class</li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxConstantCostFunction.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxAnalysisGraph.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxAnalysisGraph.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -672,11 +679,13 @@ extends java.lang.Object</pre>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>mxConstantCostFunction (mxGraph 4.0.0 API Specification)</title>
|
<title>mxConstantCostFunction (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../script.js"></script>
|
<script type="text/javascript" src="../../../script.js"></script>
|
||||||
|
@ -14,40 +14,45 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="mxConstantCostFunction (mxGraph 4.0.0 API Specification)";
|
parent.document.title="mxConstantCostFunction (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var methods = {"i0":10};
|
var data = {"i0":10};
|
||||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
||||||
var altColor = "altColor";
|
var altColor = "altColor";
|
||||||
var rowColor = "rowColor";
|
var rowColor = "rowColor";
|
||||||
var tableTab = "tableTab";
|
var tableTab = "tableTab";
|
||||||
var activeTableTab = "activeTableTab";
|
var activeTableTab = "activeTableTab";
|
||||||
var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxConstantCostFunction.html">Use</a></li>
|
<li><a href="class-use/mxConstantCostFunction.html">Use</a></li>
|
||||||
|
@ -56,19 +61,11 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxDistanceCostFunction.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxConstantCostFunction.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxConstantCostFunction.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -106,7 +103,7 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -116,9 +113,12 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></div>
|
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">com.mxgraph.analysis</a></div>
|
||||||
<h2 title="Class mxConstantCostFunction" class="title">Class mxConstantCostFunction</h2>
|
<h2 title="Class mxConstantCostFunction" class="title">Class mxConstantCostFunction</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="contentContainer">
|
<div class="contentContainer">
|
||||||
|
@ -135,12 +135,12 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<dl>
|
<dl>
|
||||||
<dt>All Implemented Interfaces:</dt>
|
<dt>All Implemented Interfaces:</dt>
|
||||||
<dd><code><a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></code></dd>
|
<dd><code><a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></code></dd>
|
||||||
</dl>
|
</dl>
|
||||||
<hr>
|
<hr>
|
||||||
<pre>public class <span class="typeNameLabel">mxConstantCostFunction</span>
|
<pre>public class <span class="typeNameLabel">mxConstantCostFunction</span>
|
||||||
extends java.lang.Object
|
extends java.lang.Object
|
||||||
implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></pre>
|
implements <a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></pre>
|
||||||
<div class="block">Implements a cost function for a constant cost per traversed cell.</div>
|
<div class="block">Implements a cost function for a constant cost per traversed cell.</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -149,12 +149,13 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="field.summary">
|
<li class="blockList"><a id="field.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Field Summary</h3>
|
<h3>Field Summary</h3>
|
||||||
<table class="memberSummary" summary="Field Summary table, listing fields, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -163,38 +164,42 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected double</code></td>
|
<td class="colFirst"><code>protected double</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxConstantCostFunction.html#cost">cost</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#cost">cost</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.summary">
|
<li class="blockList"><a id="constructor.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Summary</h3>
|
<h3>Constructor Summary</h3>
|
||||||
<table class="memberSummary" summary="Constructor Summary table, listing constructors, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Constructor</th>
|
<th class="colFirst" scope="col">Constructor</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxConstantCostFunction.html#mxConstantCostFunction-double-">mxConstantCostFunction</a></span>​(double cost)</code></th>
|
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(double)">mxConstantCostFunction</a></span>​(double cost)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.summary">
|
<li class="blockList"><a id="method.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Summary</h3>
|
<h3>Method Summary</h3>
|
||||||
<table class="memberSummary" summary="Method Summary table, listing methods, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -203,14 +208,14 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i0" class="altColor">
|
<tr id="i0" class="altColor">
|
||||||
<td class="colFirst"><code>double</code></td>
|
<td class="colFirst"><code>double</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxConstantCostFunction.html#getCost-com.mxgraph.view.mxCellState-">getCost</a></span>​(<a href="../../../com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a> state)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCost(com.mxgraph.view.mxCellState)">getCost</a></span>​(<a href="../view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a> state)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Evaluates the cost of the given cell state.</div>
|
<div class="block">Evaluates the cost of the given cell state.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
|
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Methods inherited from class java.lang.Object</h3>
|
<h3>Methods inherited from class java.lang.Object</h3>
|
||||||
|
@ -218,6 +223,7 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -225,12 +231,13 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="field.detail">
|
<li class="blockList"><a id="field.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Field Detail</h3>
|
<h3>Field Detail</h3>
|
||||||
<a name="cost">
|
<a id="cost">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
|
@ -241,13 +248,15 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.detail">
|
<li class="blockList"><a id="constructor.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Detail</h3>
|
<h3>Constructor Detail</h3>
|
||||||
<a name="mxConstantCostFunction-double-">
|
<a id="<init>(double)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
|
@ -262,24 +271,26 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.detail">
|
<li class="blockList"><a id="method.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Detail</h3>
|
<h3>Method Detail</h3>
|
||||||
<a name="getCost-com.mxgraph.view.mxCellState-">
|
<a id="getCost(com.mxgraph.view.mxCellState)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getCost</h4>
|
<h4>getCost</h4>
|
||||||
<pre>public double getCost​(<a href="../../../com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a> state)</pre>
|
<pre class="methodSignature">public double getCost​(<a href="../view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a> state)</pre>
|
||||||
<div class="block"><span class="descfrmTypeLabel">Description copied from interface: <code><a href="../../../com/mxgraph/analysis/mxICostFunction.html#getCost-com.mxgraph.view.mxCellState-">mxICostFunction</a></code></span></div>
|
<div class="block"><span class="descfrmTypeLabel">Description copied from interface: <code><a href="mxICostFunction.html#getCost(com.mxgraph.view.mxCellState)">mxICostFunction</a></code></span></div>
|
||||||
<div class="block">Evaluates the cost of the given cell state.</div>
|
<div class="block">Evaluates the cost of the given cell state.</div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
<dd><code><a href="../../../com/mxgraph/analysis/mxICostFunction.html#getCost-com.mxgraph.view.mxCellState-">getCost</a></code> in interface <code><a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></code></dd>
|
<dd><code><a href="mxICostFunction.html#getCost(com.mxgraph.view.mxCellState)">getCost</a></code> in interface <code><a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></code></dd>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
<dd><code>state</code> - The cell state to be evaluated</dd>
|
<dd><code>state</code> - The cell state to be evaluated</dd>
|
||||||
<dt><span class="returnLabel">Returns:</span></dt>
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
@ -289,21 +300,25 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxConstantCostFunction.html">Use</a></li>
|
<li><a href="class-use/mxConstantCostFunction.html">Use</a></li>
|
||||||
|
@ -312,19 +327,11 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxDistanceCostFunction.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxConstantCostFunction.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxConstantCostFunction.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -356,11 +363,13 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>mxDistanceCostFunction (mxGraph 4.0.0 API Specification)</title>
|
<title>mxDistanceCostFunction (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../script.js"></script>
|
<script type="text/javascript" src="../../../script.js"></script>
|
||||||
|
@ -14,40 +14,45 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="mxDistanceCostFunction (mxGraph 4.0.0 API Specification)";
|
parent.document.title="mxDistanceCostFunction (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var methods = {"i0":10};
|
var data = {"i0":10};
|
||||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
||||||
var altColor = "altColor";
|
var altColor = "altColor";
|
||||||
var rowColor = "rowColor";
|
var rowColor = "rowColor";
|
||||||
var tableTab = "tableTab";
|
var tableTab = "tableTab";
|
||||||
var activeTableTab = "activeTableTab";
|
var activeTableTab = "activeTableTab";
|
||||||
var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxDistanceCostFunction.html">Use</a></li>
|
<li><a href="class-use/mxDistanceCostFunction.html">Use</a></li>
|
||||||
|
@ -56,19 +61,11 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxConstantCostFunction.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxDistanceCostFunction.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxDistanceCostFunction.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -106,7 +103,7 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -116,9 +113,12 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></div>
|
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">com.mxgraph.analysis</a></div>
|
||||||
<h2 title="Class mxDistanceCostFunction" class="title">Class mxDistanceCostFunction</h2>
|
<h2 title="Class mxDistanceCostFunction" class="title">Class mxDistanceCostFunction</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="contentContainer">
|
<div class="contentContainer">
|
||||||
|
@ -135,12 +135,12 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<dl>
|
<dl>
|
||||||
<dt>All Implemented Interfaces:</dt>
|
<dt>All Implemented Interfaces:</dt>
|
||||||
<dd><code><a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></code></dd>
|
<dd><code><a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></code></dd>
|
||||||
</dl>
|
</dl>
|
||||||
<hr>
|
<hr>
|
||||||
<pre>public class <span class="typeNameLabel">mxDistanceCostFunction</span>
|
<pre>public class <span class="typeNameLabel">mxDistanceCostFunction</span>
|
||||||
extends java.lang.Object
|
extends java.lang.Object
|
||||||
implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></pre>
|
implements <a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></pre>
|
||||||
<div class="block">Implements a cost function for the Euclidean length of an edge.</div>
|
<div class="block">Implements a cost function for the Euclidean length of an edge.</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -149,31 +149,34 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.summary">
|
<li class="blockList"><a id="constructor.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Summary</h3>
|
<h3>Constructor Summary</h3>
|
||||||
<table class="memberSummary" summary="Constructor Summary table, listing constructors, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Constructor</th>
|
<th class="colFirst" scope="col">Constructor</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxDistanceCostFunction.html#mxDistanceCostFunction--">mxDistanceCostFunction</a></span>()</code></th>
|
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">mxDistanceCostFunction</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.summary">
|
<li class="blockList"><a id="method.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Summary</h3>
|
<h3>Method Summary</h3>
|
||||||
<table class="memberSummary" summary="Method Summary table, listing methods, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -182,7 +185,7 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i0" class="altColor">
|
<tr id="i0" class="altColor">
|
||||||
<td class="colFirst"><code>double</code></td>
|
<td class="colFirst"><code>double</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxDistanceCostFunction.html#getCost-com.mxgraph.view.mxCellState-">getCost</a></span>​(<a href="../../../com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a> state)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCost(com.mxgraph.view.mxCellState)">getCost</a></span>​(<a href="../view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a> state)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the Euclidean length of the edge defined by the absolute
|
<div class="block">Returns the Euclidean length of the edge defined by the absolute
|
||||||
points in the given state or 0 if no points are defined.</div>
|
points in the given state or 0 if no points are defined.</div>
|
||||||
|
@ -190,7 +193,7 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
|
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Methods inherited from class java.lang.Object</h3>
|
<h3>Methods inherited from class java.lang.Object</h3>
|
||||||
|
@ -198,6 +201,7 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -205,12 +209,13 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.detail">
|
<li class="blockList"><a id="constructor.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Detail</h3>
|
<h3>Constructor Detail</h3>
|
||||||
<a name="mxDistanceCostFunction--">
|
<a id="<init>()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
|
@ -221,24 +226,26 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.detail">
|
<li class="blockList"><a id="method.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Detail</h3>
|
<h3>Method Detail</h3>
|
||||||
<a name="getCost-com.mxgraph.view.mxCellState-">
|
<a id="getCost(com.mxgraph.view.mxCellState)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getCost</h4>
|
<h4>getCost</h4>
|
||||||
<pre>public double getCost​(<a href="../../../com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a> state)</pre>
|
<pre class="methodSignature">public double getCost​(<a href="../view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a> state)</pre>
|
||||||
<div class="block">Returns the Euclidean length of the edge defined by the absolute
|
<div class="block">Returns the Euclidean length of the edge defined by the absolute
|
||||||
points in the given state or 0 if no points are defined.</div>
|
points in the given state or 0 if no points are defined.</div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
<dd><code><a href="../../../com/mxgraph/analysis/mxICostFunction.html#getCost-com.mxgraph.view.mxCellState-">getCost</a></code> in interface <code><a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></code></dd>
|
<dd><code><a href="mxICostFunction.html#getCost(com.mxgraph.view.mxCellState)">getCost</a></code> in interface <code><a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a></code></dd>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
<dd><code>state</code> - The cell state to be evaluated</dd>
|
<dd><code>state</code> - The cell state to be evaluated</dd>
|
||||||
<dt><span class="returnLabel">Returns:</span></dt>
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
@ -248,21 +255,25 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxDistanceCostFunction.html">Use</a></li>
|
<li><a href="class-use/mxDistanceCostFunction.html">Use</a></li>
|
||||||
|
@ -271,19 +282,11 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxConstantCostFunction.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxDistanceCostFunction.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxDistanceCostFunction.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -315,11 +318,13 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>mxFibonacciHeap.Node (mxGraph 4.0.0 API Specification)</title>
|
<title>mxFibonacciHeap.Node (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../script.js"></script>
|
<script type="text/javascript" src="../../../script.js"></script>
|
||||||
|
@ -14,40 +14,45 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="mxFibonacciHeap.Node (mxGraph 4.0.0 API Specification)";
|
parent.document.title="mxFibonacciHeap.Node (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var methods = {"i0":10,"i1":10,"i2":10};
|
var data = {"i0":10,"i1":10,"i2":10};
|
||||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
||||||
var altColor = "altColor";
|
var altColor = "altColor";
|
||||||
var rowColor = "rowColor";
|
var rowColor = "rowColor";
|
||||||
var tableTab = "tableTab";
|
var tableTab = "tableTab";
|
||||||
var activeTableTab = "activeTableTab";
|
var activeTableTab = "activeTableTab";
|
||||||
var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxFibonacciHeap.Node.html">Use</a></li>
|
<li><a href="class-use/mxFibonacciHeap.Node.html">Use</a></li>
|
||||||
|
@ -56,19 +61,11 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxFibonacciHeap.Node.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxFibonacciHeap.Node.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -106,7 +103,7 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -116,9 +113,12 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></div>
|
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">com.mxgraph.analysis</a></div>
|
||||||
<h2 title="Class mxFibonacciHeap.Node" class="title">Class mxFibonacciHeap.Node</h2>
|
<h2 title="Class mxFibonacciHeap.Node" class="title">Class mxFibonacciHeap.Node</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="contentContainer">
|
<div class="contentContainer">
|
||||||
|
@ -135,7 +135,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Enclosing class:</dt>
|
<dt>Enclosing class:</dt>
|
||||||
<dd><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></dd>
|
<dd><a href="mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
<hr>
|
<hr>
|
||||||
<pre>public static class <span class="typeNameLabel">mxFibonacciHeap.Node</span>
|
<pre>public static class <span class="typeNameLabel">mxFibonacciHeap.Node</span>
|
||||||
|
@ -151,19 +151,20 @@ extends java.lang.Object</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.summary">
|
<li class="blockList"><a id="constructor.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Summary</h3>
|
<h3>Constructor Summary</h3>
|
||||||
<table class="memberSummary" summary="Constructor Summary table, listing constructors, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Constructor</th>
|
<th class="colFirst" scope="col">Constructor</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html#Node-java.lang.Object-double-">Node</a></span>​(java.lang.Object userObject,
|
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.lang.Object,double)">Node</a></span>​(java.lang.Object userObject,
|
||||||
double key)</code></th>
|
double key)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Default constructor.</div>
|
<div class="block">Default constructor.</div>
|
||||||
|
@ -172,13 +173,15 @@ extends java.lang.Object</pre>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.summary">
|
<li class="blockList"><a id="method.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Summary</h3>
|
<h3>Method Summary</h3>
|
||||||
<table class="memberSummary" summary="Method Summary table, listing methods, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -187,24 +190,24 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i0" class="altColor">
|
<tr id="i0" class="altColor">
|
||||||
<td class="colFirst"><code>double</code></td>
|
<td class="colFirst"><code>double</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html#getKey--">getKey</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getKey()">getKey</a></span>()</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Obtain the key for this node.</div>
|
<div class="block">Obtain the key for this node.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i1" class="rowColor">
|
<tr id="i1" class="rowColor">
|
||||||
<td class="colFirst"><code>java.lang.Object</code></td>
|
<td class="colFirst"><code>java.lang.Object</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html#getUserObject--">getUserObject</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getUserObject()">getUserObject</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i2" class="altColor">
|
<tr id="i2" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html#setUserObject-java.lang.Object-">setUserObject</a></span>​(java.lang.Object userObject)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setUserObject(java.lang.Object)">setUserObject</a></span>​(java.lang.Object userObject)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
|
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Methods inherited from class java.lang.Object</h3>
|
<h3>Methods inherited from class java.lang.Object</h3>
|
||||||
|
@ -212,6 +215,7 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -219,12 +223,13 @@ extends java.lang.Object</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.detail">
|
<li class="blockList"><a id="constructor.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Detail</h3>
|
<h3>Constructor Detail</h3>
|
||||||
<a name="Node-java.lang.Object-double-">
|
<a id="<init>(java.lang.Object,double)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
|
@ -242,19 +247,21 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.detail">
|
<li class="blockList"><a id="method.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Detail</h3>
|
<h3>Method Detail</h3>
|
||||||
<a name="getKey--">
|
<a id="getKey()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getKey</h4>
|
<h4>getKey</h4>
|
||||||
<pre>public final double getKey()</pre>
|
<pre class="methodSignature">public final double getKey()</pre>
|
||||||
<div class="block">Obtain the key for this node.</div>
|
<div class="block">Obtain the key for this node.</div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="returnLabel">Returns:</span></dt>
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
@ -262,26 +269,26 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getUserObject--">
|
<a id="getUserObject()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getUserObject</h4>
|
<h4>getUserObject</h4>
|
||||||
<pre>public java.lang.Object getUserObject()</pre>
|
<pre class="methodSignature">public java.lang.Object getUserObject()</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="returnLabel">Returns:</span></dt>
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
<dd>Returns the userObject.</dd>
|
<dd>Returns the userObject.</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="setUserObject-java.lang.Object-">
|
<a id="setUserObject(java.lang.Object)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>setUserObject</h4>
|
<h4>setUserObject</h4>
|
||||||
<pre>public void setUserObject​(java.lang.Object userObject)</pre>
|
<pre class="methodSignature">public void setUserObject​(java.lang.Object userObject)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
<dd><code>userObject</code> - The userObject to set.</dd>
|
<dd><code>userObject</code> - The userObject to set.</dd>
|
||||||
|
@ -290,21 +297,25 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxFibonacciHeap.Node.html">Use</a></li>
|
<li><a href="class-use/mxFibonacciHeap.Node.html">Use</a></li>
|
||||||
|
@ -313,19 +324,11 @@ extends java.lang.Object</pre>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxFibonacciHeap.Node.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxFibonacciHeap.Node.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -357,11 +360,13 @@ extends java.lang.Object</pre>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>mxFibonacciHeap (mxGraph 4.0.0 API Specification)</title>
|
<title>mxFibonacciHeap (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../script.js"></script>
|
<script type="text/javascript" src="../../../script.js"></script>
|
||||||
|
@ -14,40 +14,45 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="mxFibonacciHeap (mxGraph 4.0.0 API Specification)";
|
parent.document.title="mxFibonacciHeap (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":9};
|
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":9};
|
||||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
||||||
var altColor = "altColor";
|
var altColor = "altColor";
|
||||||
var rowColor = "rowColor";
|
var rowColor = "rowColor";
|
||||||
var tableTab = "tableTab";
|
var tableTab = "tableTab";
|
||||||
var activeTableTab = "activeTableTab";
|
var activeTableTab = "activeTableTab";
|
||||||
var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxFibonacciHeap.html">Use</a></li>
|
<li><a href="class-use/mxFibonacciHeap.html">Use</a></li>
|
||||||
|
@ -56,19 +61,11 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxDistanceCostFunction.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxFibonacciHeap.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxFibonacciHeap.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -106,7 +103,7 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -116,9 +113,12 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></div>
|
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">com.mxgraph.analysis</a></div>
|
||||||
<h2 title="Class mxFibonacciHeap" class="title">Class mxFibonacciHeap</h2>
|
<h2 title="Class mxFibonacciHeap" class="title">Class mxFibonacciHeap</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="contentContainer">
|
<div class="contentContainer">
|
||||||
|
@ -144,12 +144,13 @@ extends java.lang.Object</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="nested.class.summary">
|
<li class="blockList"><a id="nested.class.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Nested Class Summary</h3>
|
<h3>Nested Class Summary</h3>
|
||||||
<table class="memberSummary" summary="Nested Class Summary table, listing nested classes, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Nested Classes</span><span class="tabEnd"> </span></caption>
|
<caption><span>Nested Classes</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -158,7 +159,7 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static class </code></td>
|
<td class="colFirst"><code>static class </code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></span></code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Implements a node of the Fibonacci heap.</div>
|
<div class="block">Implements a node of the Fibonacci heap.</div>
|
||||||
</td>
|
</td>
|
||||||
|
@ -166,13 +167,15 @@ extends java.lang.Object</pre>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="field.summary">
|
<li class="blockList"><a id="field.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Field Summary</h3>
|
<h3>Field Summary</h3>
|
||||||
<table class="memberSummary" summary="Field Summary table, listing fields, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -180,51 +183,55 @@ extends java.lang.Object</pre>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected <a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
<td class="colFirst"><code>protected <a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#min">min</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#min">min</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>protected java.util.Map<java.lang.Object,<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a>></code></td>
|
<td class="colFirst"><code>protected java.util.Map<java.lang.Object,​<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a>></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#nodes">nodes</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#nodes">nodes</a></span></code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Maps from elements to nodes</div>
|
<div class="block">Maps from elements to nodes</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected int</code></td>
|
<td class="colFirst"><code>protected int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#size">size</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#size">size</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.summary">
|
<li class="blockList"><a id="constructor.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Summary</h3>
|
<h3>Constructor Summary</h3>
|
||||||
<table class="memberSummary" summary="Constructor Summary table, listing constructors, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Constructor</th>
|
<th class="colFirst" scope="col">Constructor</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#mxFibonacciHeap--">mxFibonacciHeap</a></span>()</code></th>
|
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">mxFibonacciHeap</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.summary">
|
<li class="blockList"><a id="method.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Summary</h3>
|
<h3>Method Summary</h3>
|
||||||
<table class="memberSummary" summary="Method Summary table, listing methods, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -233,14 +240,14 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i0" class="altColor">
|
<tr id="i0" class="altColor">
|
||||||
<td class="colFirst"><code>protected void</code></td>
|
<td class="colFirst"><code>protected void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#cascadingCut-com.mxgraph.analysis.mxFibonacciHeap.Node-">cascadingCut</a></span>​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#cascadingCut(com.mxgraph.analysis.mxFibonacciHeap.Node)">cascadingCut</a></span>​(<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Performs a cascading cut operation.</div>
|
<div class="block">Performs a cascading cut operation.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i1" class="rowColor">
|
<tr id="i1" class="rowColor">
|
||||||
<td class="colFirst"><code>protected void</code></td>
|
<td class="colFirst"><code>protected void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#consolidate--">consolidate</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#consolidate()">consolidate</a></span>()</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Consolidates the trees in the heap by joining trees of equal degree until
|
<div class="block">Consolidates the trees in the heap by joining trees of equal degree until
|
||||||
there are no more trees of equal degree in the root list.</div>
|
there are no more trees of equal degree in the root list.</div>
|
||||||
|
@ -248,15 +255,15 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i2" class="altColor">
|
<tr id="i2" class="altColor">
|
||||||
<td class="colFirst"><code>protected void</code></td>
|
<td class="colFirst"><code>protected void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#cut-com.mxgraph.analysis.mxFibonacciHeap.Node-com.mxgraph.analysis.mxFibonacciHeap.Node-">cut</a></span>​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#cut(com.mxgraph.analysis.mxFibonacciHeap.Node,com.mxgraph.analysis.mxFibonacciHeap.Node)">cut</a></span>​(<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x,
|
||||||
<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y)</code></th>
|
<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">The reverse of the link operation: removes x from the child list of y.</div>
|
<div class="block">The reverse of the link operation: removes x from the child list of y.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i3" class="rowColor">
|
<tr id="i3" class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#decreaseKey-com.mxgraph.analysis.mxFibonacciHeap.Node-double-">decreaseKey</a></span>​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#decreaseKey(com.mxgraph.analysis.mxFibonacciHeap.Node,double)">decreaseKey</a></span>​(<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x,
|
||||||
double k)</code></th>
|
double k)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Decreases the key value for a heap node, given the new value to take on.</div>
|
<div class="block">Decreases the key value for a heap node, given the new value to take on.</div>
|
||||||
|
@ -264,14 +271,14 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i4" class="altColor">
|
<tr id="i4" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#delete-com.mxgraph.analysis.mxFibonacciHeap.Node-">delete</a></span>​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#delete(com.mxgraph.analysis.mxFibonacciHeap.Node)">delete</a></span>​(<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Deletes a node from the heap given the reference to the node.</div>
|
<div class="block">Deletes a node from the heap given the reference to the node.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i5" class="rowColor">
|
<tr id="i5" class="rowColor">
|
||||||
<td class="colFirst"><code><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
<td class="colFirst"><code><a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#getNode-java.lang.Object-boolean-">getNode</a></span>​(java.lang.Object element,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNode(java.lang.Object,boolean)">getNode</a></span>​(java.lang.Object element,
|
||||||
boolean create)</code></th>
|
boolean create)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the node that represents element.</div>
|
<div class="block">Returns the node that represents element.</div>
|
||||||
|
@ -279,7 +286,7 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i6" class="altColor">
|
<tr id="i6" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#insert-com.mxgraph.analysis.mxFibonacciHeap.Node-double-">insert</a></span>​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> node,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#insert(com.mxgraph.analysis.mxFibonacciHeap.Node,double)">insert</a></span>​(<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> node,
|
||||||
double key)</code></th>
|
double key)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Inserts a new data element into the heap.</div>
|
<div class="block">Inserts a new data element into the heap.</div>
|
||||||
|
@ -287,52 +294,52 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i7" class="rowColor">
|
<tr id="i7" class="rowColor">
|
||||||
<td class="colFirst"><code>boolean</code></td>
|
<td class="colFirst"><code>boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#isEmpty--">isEmpty</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isEmpty()">isEmpty</a></span>()</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns true if the queue is empty.</div>
|
<div class="block">Returns true if the queue is empty.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i8" class="altColor">
|
<tr id="i8" class="altColor">
|
||||||
<td class="colFirst"><code>protected void</code></td>
|
<td class="colFirst"><code>protected void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#link-com.mxgraph.analysis.mxFibonacciHeap.Node-com.mxgraph.analysis.mxFibonacciHeap.Node-">link</a></span>​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#link(com.mxgraph.analysis.mxFibonacciHeap.Node,com.mxgraph.analysis.mxFibonacciHeap.Node)">link</a></span>​(<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y,
|
||||||
<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x)</code></th>
|
<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Make node y a child of node x.</div>
|
<div class="block">Make node y a child of node x.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i9" class="rowColor">
|
<tr id="i9" class="rowColor">
|
||||||
<td class="colFirst"><code><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
<td class="colFirst"><code><a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#min--">min</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#min()">min</a></span>()</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the smallest element in the heap.</div>
|
<div class="block">Returns the smallest element in the heap.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i10" class="altColor">
|
<tr id="i10" class="altColor">
|
||||||
<td class="colFirst"><code><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
<td class="colFirst"><code><a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#removeMin--">removeMin</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#removeMin()">removeMin</a></span>()</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Removes the smallest element from the heap.</div>
|
<div class="block">Removes the smallest element from the heap.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i11" class="rowColor">
|
<tr id="i11" class="rowColor">
|
||||||
<td class="colFirst"><code>int</code></td>
|
<td class="colFirst"><code>int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#size--">size</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#size()">size</a></span>()</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the size of the heap which is measured in the number of elements
|
<div class="block">Returns the size of the heap which is measured in the number of elements
|
||||||
contained in the heap.</div>
|
contained in the heap.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i12" class="altColor">
|
<tr id="i12" class="altColor">
|
||||||
<td class="colFirst"><code>static <a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></code></td>
|
<td class="colFirst"><code>static <a href="mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html#union-com.mxgraph.analysis.mxFibonacciHeap-com.mxgraph.analysis.mxFibonacciHeap-">union</a></span>​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h1,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#union(com.mxgraph.analysis.mxFibonacciHeap,com.mxgraph.analysis.mxFibonacciHeap)">union</a></span>​(<a href="mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h1,
|
||||||
<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h2)</code></th>
|
<a href="mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h2)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Joins two Fibonacci heaps into a new one.</div>
|
<div class="block">Joins two Fibonacci heaps into a new one.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
|
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Methods inherited from class java.lang.Object</h3>
|
<h3>Methods inherited from class java.lang.Object</h3>
|
||||||
|
@ -340,6 +347,7 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -347,31 +355,32 @@ extends java.lang.Object</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="field.detail">
|
<li class="blockList"><a id="field.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Field Detail</h3>
|
<h3>Field Detail</h3>
|
||||||
<a name="nodes">
|
<a id="nodes">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>nodes</h4>
|
<h4>nodes</h4>
|
||||||
<pre>protected java.util.Map<java.lang.Object,<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a>> nodes</pre>
|
<pre>protected java.util.Map<java.lang.Object,​<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a>> nodes</pre>
|
||||||
<div class="block">Maps from elements to nodes</div>
|
<div class="block">Maps from elements to nodes</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="min">
|
<a id="min">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>min</h4>
|
<h4>min</h4>
|
||||||
<pre>protected <a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> min</pre>
|
<pre>protected <a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> min</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="size">
|
<a id="size">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
|
@ -382,13 +391,15 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.detail">
|
<li class="blockList"><a id="constructor.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Detail</h3>
|
<h3>Constructor Detail</h3>
|
||||||
<a name="mxFibonacciHeap--">
|
<a id="<init>()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
|
@ -399,19 +410,21 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.detail">
|
<li class="blockList"><a id="method.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Detail</h3>
|
<h3>Method Detail</h3>
|
||||||
<a name="getNode-java.lang.Object-boolean-">
|
<a id="getNode(java.lang.Object,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getNode</h4>
|
<h4>getNode</h4>
|
||||||
<pre>public <a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> getNode​(java.lang.Object element,
|
<pre class="methodSignature">public <a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> getNode​(java.lang.Object element,
|
||||||
boolean create)</pre>
|
boolean create)</pre>
|
||||||
<div class="block">Returns the node that represents element.</div>
|
<div class="block">Returns the node that represents element.</div>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -423,13 +436,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="isEmpty--">
|
<a id="isEmpty()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>isEmpty</h4>
|
<h4>isEmpty</h4>
|
||||||
<pre>public boolean isEmpty()</pre>
|
<pre class="methodSignature">public boolean isEmpty()</pre>
|
||||||
<div class="block">Returns true if the queue is empty.</div>
|
<div class="block">Returns true if the queue is empty.</div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="returnLabel">Returns:</span></dt>
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
@ -437,13 +450,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="decreaseKey-com.mxgraph.analysis.mxFibonacciHeap.Node-double-">
|
<a id="decreaseKey(com.mxgraph.analysis.mxFibonacciHeap.Node,double)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>decreaseKey</h4>
|
<h4>decreaseKey</h4>
|
||||||
<pre>public void decreaseKey​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x,
|
<pre class="methodSignature">public void decreaseKey​(<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x,
|
||||||
double k)</pre>
|
double k)</pre>
|
||||||
<div class="block">Decreases the key value for a heap node, given the new value to take on.
|
<div class="block">Decreases the key value for a heap node, given the new value to take on.
|
||||||
The structure of the heap may be changed and will not be consolidated.
|
The structure of the heap may be changed and will not be consolidated.
|
||||||
|
@ -460,13 +473,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="delete-com.mxgraph.analysis.mxFibonacciHeap.Node-">
|
<a id="delete(com.mxgraph.analysis.mxFibonacciHeap.Node)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>delete</h4>
|
<h4>delete</h4>
|
||||||
<pre>public void delete​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x)</pre>
|
<pre class="methodSignature">public void delete​(<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x)</pre>
|
||||||
<div class="block">Deletes a node from the heap given the reference to the node. The trees
|
<div class="block">Deletes a node from the heap given the reference to the node. The trees
|
||||||
in the heap will be consolidated, if necessary. This operation may fail
|
in the heap will be consolidated, if necessary. This operation may fail
|
||||||
to remove the correct element if there are nodes with key value
|
to remove the correct element if there are nodes with key value
|
||||||
|
@ -481,13 +494,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="insert-com.mxgraph.analysis.mxFibonacciHeap.Node-double-">
|
<a id="insert(com.mxgraph.analysis.mxFibonacciHeap.Node,double)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>insert</h4>
|
<h4>insert</h4>
|
||||||
<pre>public void insert​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> node,
|
<pre class="methodSignature">public void insert​(<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> node,
|
||||||
double key)</pre>
|
double key)</pre>
|
||||||
<div class="block">Inserts a new data element into the heap. No heap consolidation is
|
<div class="block">Inserts a new data element into the heap. No heap consolidation is
|
||||||
performed at this time, the new node is simply inserted into the root
|
performed at this time, the new node is simply inserted into the root
|
||||||
|
@ -503,13 +516,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="min--">
|
<a id="min()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>min</h4>
|
<h4>min</h4>
|
||||||
<pre>public <a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> min()</pre>
|
<pre class="methodSignature">public <a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> min()</pre>
|
||||||
<div class="block">Returns the smallest element in the heap. This smallest element is the
|
<div class="block">Returns the smallest element in the heap. This smallest element is the
|
||||||
one with the minimum key value.
|
one with the minimum key value.
|
||||||
|
|
||||||
|
@ -522,13 +535,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="removeMin--">
|
<a id="removeMin()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>removeMin</h4>
|
<h4>removeMin</h4>
|
||||||
<pre>public <a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> removeMin()</pre>
|
<pre class="methodSignature">public <a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> removeMin()</pre>
|
||||||
<div class="block">Removes the smallest element from the heap. This will cause the trees in
|
<div class="block">Removes the smallest element from the heap. This will cause the trees in
|
||||||
the heap to be consolidated, if necessary.
|
the heap to be consolidated, if necessary.
|
||||||
Does not remove the data node so that the current key remains stored.
|
Does not remove the data node so that the current key remains stored.
|
||||||
|
@ -542,13 +555,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="size--">
|
<a id="size()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>size</h4>
|
<h4>size</h4>
|
||||||
<pre>public int size()</pre>
|
<pre class="methodSignature">public int size()</pre>
|
||||||
<div class="block">Returns the size of the heap which is measured in the number of elements
|
<div class="block">Returns the size of the heap which is measured in the number of elements
|
||||||
contained in the heap.
|
contained in the heap.
|
||||||
|
|
||||||
|
@ -561,14 +574,14 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="union-com.mxgraph.analysis.mxFibonacciHeap-com.mxgraph.analysis.mxFibonacciHeap-">
|
<a id="union(com.mxgraph.analysis.mxFibonacciHeap,com.mxgraph.analysis.mxFibonacciHeap)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>union</h4>
|
<h4>union</h4>
|
||||||
<pre>public static <a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> union​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h1,
|
<pre class="methodSignature">public static <a href="mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> union​(<a href="mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h1,
|
||||||
<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h2)</pre>
|
<a href="mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> h2)</pre>
|
||||||
<div class="block">Joins two Fibonacci heaps into a new one. No heap consolidation is
|
<div class="block">Joins two Fibonacci heaps into a new one. No heap consolidation is
|
||||||
performed at this time. The two root lists are simply joined together.
|
performed at this time. The two root lists are simply joined together.
|
||||||
|
|
||||||
|
@ -584,13 +597,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="cascadingCut-com.mxgraph.analysis.mxFibonacciHeap.Node-">
|
<a id="cascadingCut(com.mxgraph.analysis.mxFibonacciHeap.Node)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>cascadingCut</h4>
|
<h4>cascadingCut</h4>
|
||||||
<pre>protected void cascadingCut​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y)</pre>
|
<pre class="methodSignature">protected void cascadingCut​(<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y)</pre>
|
||||||
<div class="block">Performs a cascading cut operation. This cuts y from its parent and then
|
<div class="block">Performs a cascading cut operation. This cuts y from its parent and then
|
||||||
does the same for its parent, and so on up the tree.
|
does the same for its parent, and so on up the tree.
|
||||||
|
|
||||||
|
@ -603,13 +616,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="consolidate--">
|
<a id="consolidate()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>consolidate</h4>
|
<h4>consolidate</h4>
|
||||||
<pre>protected void consolidate()</pre>
|
<pre class="methodSignature">protected void consolidate()</pre>
|
||||||
<div class="block">Consolidates the trees in the heap by joining trees of equal degree until
|
<div class="block">Consolidates the trees in the heap by joining trees of equal degree until
|
||||||
there are no more trees of equal degree in the root list.
|
there are no more trees of equal degree in the root list.
|
||||||
|
|
||||||
|
@ -618,14 +631,14 @@ extends java.lang.Object</pre>
|
||||||
</p></div>
|
</p></div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="cut-com.mxgraph.analysis.mxFibonacciHeap.Node-com.mxgraph.analysis.mxFibonacciHeap.Node-">
|
<a id="cut(com.mxgraph.analysis.mxFibonacciHeap.Node,com.mxgraph.analysis.mxFibonacciHeap.Node)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>cut</h4>
|
<h4>cut</h4>
|
||||||
<pre>protected void cut​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x,
|
<pre class="methodSignature">protected void cut​(<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x,
|
||||||
<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y)</pre>
|
<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y)</pre>
|
||||||
<div class="block">The reverse of the link operation: removes x from the child list of y.
|
<div class="block">The reverse of the link operation: removes x from the child list of y.
|
||||||
This method assumes that min is non-null.
|
This method assumes that min is non-null.
|
||||||
|
|
||||||
|
@ -639,14 +652,14 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="link-com.mxgraph.analysis.mxFibonacciHeap.Node-com.mxgraph.analysis.mxFibonacciHeap.Node-">
|
<a id="link(com.mxgraph.analysis.mxFibonacciHeap.Node,com.mxgraph.analysis.mxFibonacciHeap.Node)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>link</h4>
|
<h4>link</h4>
|
||||||
<pre>protected void link​(<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y,
|
<pre class="methodSignature">protected void link​(<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> y,
|
||||||
<a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x)</pre>
|
<a href="mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis">mxFibonacciHeap.Node</a> x)</pre>
|
||||||
<div class="block">Make node y a child of node x.
|
<div class="block">Make node y a child of node x.
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -661,21 +674,25 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxFibonacciHeap.html">Use</a></li>
|
<li><a href="class-use/mxFibonacciHeap.html">Use</a></li>
|
||||||
|
@ -684,19 +701,11 @@ extends java.lang.Object</pre>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxDistanceCostFunction.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxFibonacciHeap.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxFibonacciHeap.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -728,11 +737,13 @@ extends java.lang.Object</pre>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>mxGraphAnalysis (mxGraph 4.0.0 API Specification)</title>
|
<title>mxGraphAnalysis (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../script.js"></script>
|
<script type="text/javascript" src="../../../script.js"></script>
|
||||||
|
@ -14,40 +14,45 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="mxGraphAnalysis (mxGraph 4.0.0 API Specification)";
|
parent.document.title="mxGraphAnalysis (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var methods = {"i0":10,"i1":10,"i2":10,"i3":9,"i4":10,"i5":10,"i6":10,"i7":9,"i8":10,"i9":10};
|
var data = {"i0":10,"i1":10,"i2":10,"i3":9,"i4":10,"i5":10,"i6":10,"i7":9,"i8":10,"i9":10};
|
||||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
||||||
var altColor = "altColor";
|
var altColor = "altColor";
|
||||||
var rowColor = "rowColor";
|
var rowColor = "rowColor";
|
||||||
var tableTab = "tableTab";
|
var tableTab = "tableTab";
|
||||||
var activeTableTab = "activeTableTab";
|
var activeTableTab = "activeTableTab";
|
||||||
var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxGraphAnalysis.html">Use</a></li>
|
<li><a href="class-use/mxGraphAnalysis.html">Use</a></li>
|
||||||
|
@ -56,19 +61,11 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxGraphAnalysis.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphAnalysis.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -106,7 +103,7 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -116,9 +113,12 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></div>
|
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">com.mxgraph.analysis</a></div>
|
||||||
<h2 title="Class mxGraphAnalysis" class="title">Class mxGraphAnalysis</h2>
|
<h2 title="Class mxGraphAnalysis" class="title">Class mxGraphAnalysis</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="contentContainer">
|
<div class="contentContainer">
|
||||||
|
@ -167,7 +167,7 @@ extends java.lang.Object</pre>
|
||||||
connected: <code>boolean connected = uf.differ(vertex1, vertex2)</code>.</div>
|
connected: <code>boolean connected = uf.differ(vertex1, vertex2)</code>.</div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="seeLabel">See Also:</span></dt>
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
<dd><a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis"><code>mxICostFunction</code></a></dd>
|
<dd><a href="mxICostFunction.html" title="interface in com.mxgraph.analysis"><code>mxICostFunction</code></a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -176,12 +176,13 @@ extends java.lang.Object</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="field.summary">
|
<li class="blockList"><a id="field.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Field Summary</h3>
|
<h3>Field Summary</h3>
|
||||||
<table class="memberSummary" summary="Field Summary table, listing fields, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -189,8 +190,8 @@ extends java.lang.Object</pre>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected static <a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></code></td>
|
<td class="colFirst"><code>protected static <a href="mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#instance">instance</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#instance">instance</a></span></code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Holds the shared instance of this class.</div>
|
<div class="block">Holds the shared instance of this class.</div>
|
||||||
</td>
|
</td>
|
||||||
|
@ -198,13 +199,15 @@ extends java.lang.Object</pre>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.summary">
|
<li class="blockList"><a id="constructor.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Summary</h3>
|
<h3>Constructor Summary</h3>
|
||||||
<table class="memberSummary" summary="Constructor Summary table, listing constructors, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier</th>
|
<th class="colFirst" scope="col">Modifier</th>
|
||||||
|
@ -213,19 +216,21 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>protected </code></td>
|
<td class="colFirst"><code>protected </code></td>
|
||||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#mxGraphAnalysis--">mxGraphAnalysis</a></span>()</code></th>
|
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">mxGraphAnalysis</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.summary">
|
<li class="blockList"><a id="method.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Summary</h3>
|
<h3>Method Summary</h3>
|
||||||
<table class="memberSummary" summary="Method Summary table, listing methods, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -233,22 +238,22 @@ extends java.lang.Object</pre>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i0" class="altColor">
|
<tr id="i0" class="altColor">
|
||||||
<td class="colFirst"><code>protected <a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></code></td>
|
<td class="colFirst"><code>protected <a href="mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#createPriorityQueue--">createPriorityQueue</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#createPriorityQueue()">createPriorityQueue</a></span>()</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Hook for subclassers to provide a custom fibonacci heap.</div>
|
<div class="block">Hook for subclassers to provide a custom fibonacci heap.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i1" class="rowColor">
|
<tr id="i1" class="rowColor">
|
||||||
<td class="colFirst"><code>protected <a href="../../../com/mxgraph/analysis/mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a></code></td>
|
<td class="colFirst"><code>protected <a href="mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#createUnionFind-java.lang.Object:A-">createUnionFind</a></span>​(java.lang.Object[] v)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#createUnionFind(java.lang.Object%5B%5D)">createUnionFind</a></span>​(java.lang.Object[] v)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Hook for subclassers to provide a custom union find structure.</div>
|
<div class="block">Hook for subclassers to provide a custom union find structure.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i2" class="altColor">
|
<tr id="i2" class="altColor">
|
||||||
<td class="colFirst"><code><a href="../../../com/mxgraph/analysis/mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a></code></td>
|
<td class="colFirst"><code><a href="mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#getConnectionComponents-com.mxgraph.view.mxGraph-java.lang.Object:A-java.lang.Object:A-">getConnectionComponents</a></span>​(<a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getConnectionComponents(com.mxgraph.view.mxGraph,java.lang.Object%5B%5D,java.lang.Object%5B%5D)">getConnectionComponents</a></span>​(<a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
java.lang.Object[] v,
|
java.lang.Object[] v,
|
||||||
java.lang.Object[] e)</code></th>
|
java.lang.Object[] e)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
|
@ -257,15 +262,15 @@ extends java.lang.Object</pre>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i3" class="rowColor">
|
<tr id="i3" class="rowColor">
|
||||||
<td class="colFirst"><code>static <a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></code></td>
|
<td class="colFirst"><code>static <a href="mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#getInstance--">getInstance</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getInstance()">getInstance</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i4" class="altColor">
|
<tr id="i4" class="altColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#getMinimumSpanningTree-com.mxgraph.view.mxGraph-java.lang.Object:A-com.mxgraph.analysis.mxICostFunction-boolean-">getMinimumSpanningTree</a></span>​(<a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getMinimumSpanningTree(com.mxgraph.view.mxGraph,java.lang.Object%5B%5D,com.mxgraph.analysis.mxICostFunction,boolean)">getMinimumSpanningTree</a></span>​(<a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
java.lang.Object[] v,
|
java.lang.Object[] v,
|
||||||
<a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf,
|
<a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf,
|
||||||
boolean directed)</code></th>
|
boolean directed)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).</div>
|
<div class="block">Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).</div>
|
||||||
|
@ -273,20 +278,20 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i5" class="rowColor">
|
<tr id="i5" class="rowColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#getMinimumSpanningTree-com.mxgraph.view.mxGraph-java.lang.Object:A-java.lang.Object:A-com.mxgraph.analysis.mxICostFunction-">getMinimumSpanningTree</a></span>​(<a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getMinimumSpanningTree(com.mxgraph.view.mxGraph,java.lang.Object%5B%5D,java.lang.Object%5B%5D,com.mxgraph.analysis.mxICostFunction)">getMinimumSpanningTree</a></span>​(<a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
java.lang.Object[] v,
|
java.lang.Object[] v,
|
||||||
java.lang.Object[] e,
|
java.lang.Object[] e,
|
||||||
<a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</code></th>
|
<a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).</div>
|
<div class="block">Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i6" class="altColor">
|
<tr id="i6" class="altColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#getShortestPath-com.mxgraph.view.mxGraph-java.lang.Object-java.lang.Object-com.mxgraph.analysis.mxICostFunction-int-boolean-">getShortestPath</a></span>​(<a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getShortestPath(com.mxgraph.view.mxGraph,java.lang.Object,java.lang.Object,com.mxgraph.analysis.mxICostFunction,int,boolean)">getShortestPath</a></span>​(<a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
java.lang.Object from,
|
java.lang.Object from,
|
||||||
java.lang.Object to,
|
java.lang.Object to,
|
||||||
<a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf,
|
<a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf,
|
||||||
int steps,
|
int steps,
|
||||||
boolean directed)</code></th>
|
boolean directed)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
|
@ -296,15 +301,15 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i7" class="rowColor">
|
<tr id="i7" class="rowColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#setInstance-com.mxgraph.analysis.mxGraphAnalysis-">setInstance</a></span>​(<a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a> instance)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setInstance(com.mxgraph.analysis.mxGraphAnalysis)">setInstance</a></span>​(<a href="mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a> instance)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Sets the shared instance of this class.</div>
|
<div class="block">Sets the shared instance of this class.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i8" class="altColor">
|
<tr id="i8" class="altColor">
|
||||||
<td class="colFirst"><code><a href="../../../com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[]</code></td>
|
<td class="colFirst"><code><a href="../view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#sort-com.mxgraph.view.mxCellState:A-com.mxgraph.analysis.mxICostFunction-">sort</a></span>​(<a href="../../../com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] states,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sort(com.mxgraph.view.mxCellState%5B%5D,com.mxgraph.analysis.mxICostFunction)">sort</a></span>​(<a href="../view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] states,
|
||||||
<a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</code></th>
|
<a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns a sorted set for <code>cells</code> with respect to
|
<div class="block">Returns a sorted set for <code>cells</code> with respect to
|
||||||
<code>cf</code>.</div>
|
<code>cf</code>.</div>
|
||||||
|
@ -312,8 +317,8 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i9" class="rowColor">
|
<tr id="i9" class="rowColor">
|
||||||
<td class="colFirst"><code>double</code></td>
|
<td class="colFirst"><code>double</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#sum-com.mxgraph.view.mxCellState:A-com.mxgraph.analysis.mxICostFunction-">sum</a></span>​(<a href="../../../com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] states,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sum(com.mxgraph.view.mxCellState%5B%5D,com.mxgraph.analysis.mxICostFunction)">sum</a></span>​(<a href="../view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] states,
|
||||||
<a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</code></th>
|
<a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the sum of all cost for <code>cells</code> with respect to
|
<div class="block">Returns the sum of all cost for <code>cells</code> with respect to
|
||||||
<code>cf</code>.</div>
|
<code>cf</code>.</div>
|
||||||
|
@ -321,7 +326,7 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
|
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Methods inherited from class java.lang.Object</h3>
|
<h3>Methods inherited from class java.lang.Object</h3>
|
||||||
|
@ -329,6 +334,7 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -336,30 +342,33 @@ extends java.lang.Object</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="field.detail">
|
<li class="blockList"><a id="field.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Field Detail</h3>
|
<h3>Field Detail</h3>
|
||||||
<a name="instance">
|
<a id="instance">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>instance</h4>
|
<h4>instance</h4>
|
||||||
<pre>protected static <a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a> instance</pre>
|
<pre>protected static <a href="mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a> instance</pre>
|
||||||
<div class="block">Holds the shared instance of this class.</div>
|
<div class="block">Holds the shared instance of this class.</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.detail">
|
<li class="blockList"><a id="constructor.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Detail</h3>
|
<h3>Constructor Detail</h3>
|
||||||
<a name="mxGraphAnalysis--">
|
<a id="<init>()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
|
@ -370,32 +379,34 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.detail">
|
<li class="blockList"><a id="method.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Detail</h3>
|
<h3>Method Detail</h3>
|
||||||
<a name="getInstance--">
|
<a id="getInstance()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getInstance</h4>
|
<h4>getInstance</h4>
|
||||||
<pre>public static <a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a> getInstance()</pre>
|
<pre class="methodSignature">public static <a href="mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a> getInstance()</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="returnLabel">Returns:</span></dt>
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
<dd>Returns the sharedInstance.</dd>
|
<dd>Returns the sharedInstance.</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="setInstance-com.mxgraph.analysis.mxGraphAnalysis-">
|
<a id="setInstance(com.mxgraph.analysis.mxGraphAnalysis)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>setInstance</h4>
|
<h4>setInstance</h4>
|
||||||
<pre>public static void setInstance​(<a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a> instance)</pre>
|
<pre class="methodSignature">public static void setInstance​(<a href="mxGraphAnalysis.html" title="class in com.mxgraph.analysis">mxGraphAnalysis</a> instance)</pre>
|
||||||
<div class="block">Sets the shared instance of this class.</div>
|
<div class="block">Sets the shared instance of this class.</div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -403,16 +414,16 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getShortestPath-com.mxgraph.view.mxGraph-java.lang.Object-java.lang.Object-com.mxgraph.analysis.mxICostFunction-int-boolean-">
|
<a id="getShortestPath(com.mxgraph.view.mxGraph,java.lang.Object,java.lang.Object,com.mxgraph.analysis.mxICostFunction,int,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getShortestPath</h4>
|
<h4>getShortestPath</h4>
|
||||||
<pre>public java.lang.Object[] getShortestPath​(<a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<pre class="methodSignature">public java.lang.Object[] getShortestPath​(<a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
java.lang.Object from,
|
java.lang.Object from,
|
||||||
java.lang.Object to,
|
java.lang.Object to,
|
||||||
<a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf,
|
<a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf,
|
||||||
int steps,
|
int steps,
|
||||||
boolean directed)</pre>
|
boolean directed)</pre>
|
||||||
<div class="block">Returns the shortest path between two cells or their descendants
|
<div class="block">Returns the shortest path between two cells or their descendants
|
||||||
|
@ -431,19 +442,19 @@ extends java.lang.Object</pre>
|
||||||
and edges, starting with <code>from</code> and ending with
|
and edges, starting with <code>from</code> and ending with
|
||||||
<code>to</code>.</dd>
|
<code>to</code>.</dd>
|
||||||
<dt><span class="seeLabel">See Also:</span></dt>
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
<dd><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#createPriorityQueue--"><code>createPriorityQueue()</code></a></dd>
|
<dd><a href="#createPriorityQueue()"><code>createPriorityQueue()</code></a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getMinimumSpanningTree-com.mxgraph.view.mxGraph-java.lang.Object:A-com.mxgraph.analysis.mxICostFunction-boolean-">
|
<a id="getMinimumSpanningTree(com.mxgraph.view.mxGraph,java.lang.Object[],com.mxgraph.analysis.mxICostFunction,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getMinimumSpanningTree</h4>
|
<h4>getMinimumSpanningTree</h4>
|
||||||
<pre>public java.lang.Object[] getMinimumSpanningTree​(<a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<pre class="methodSignature">public java.lang.Object[] getMinimumSpanningTree​(<a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
java.lang.Object[] v,
|
java.lang.Object[] v,
|
||||||
<a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf,
|
<a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf,
|
||||||
boolean directed)</pre>
|
boolean directed)</pre>
|
||||||
<div class="block">Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).
|
<div class="block">Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).
|
||||||
The MST is defined as the set of all vertices with minimal lengths that
|
The MST is defined as the set of all vertices with minimal lengths that
|
||||||
|
@ -460,20 +471,20 @@ extends java.lang.Object</pre>
|
||||||
<dt><span class="returnLabel">Returns:</span></dt>
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
<dd>Returns the MST as an array of edges</dd>
|
<dd>Returns the MST as an array of edges</dd>
|
||||||
<dt><span class="seeLabel">See Also:</span></dt>
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
<dd><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#createPriorityQueue--"><code>createPriorityQueue()</code></a></dd>
|
<dd><a href="#createPriorityQueue()"><code>createPriorityQueue()</code></a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getMinimumSpanningTree-com.mxgraph.view.mxGraph-java.lang.Object:A-java.lang.Object:A-com.mxgraph.analysis.mxICostFunction-">
|
<a id="getMinimumSpanningTree(com.mxgraph.view.mxGraph,java.lang.Object[],java.lang.Object[],com.mxgraph.analysis.mxICostFunction)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getMinimumSpanningTree</h4>
|
<h4>getMinimumSpanningTree</h4>
|
||||||
<pre>public java.lang.Object[] getMinimumSpanningTree​(<a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<pre class="methodSignature">public java.lang.Object[] getMinimumSpanningTree​(<a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
java.lang.Object[] v,
|
java.lang.Object[] v,
|
||||||
java.lang.Object[] e,
|
java.lang.Object[] e,
|
||||||
<a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</pre>
|
<a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</pre>
|
||||||
<div class="block">Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).
|
<div class="block">Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).
|
||||||
The MST is defined as the set of all vertices with minimal lenths that
|
The MST is defined as the set of all vertices with minimal lenths that
|
||||||
forms no cycles in G.<br>
|
forms no cycles in G.<br>
|
||||||
|
@ -490,19 +501,19 @@ extends java.lang.Object</pre>
|
||||||
<dt><span class="returnLabel">Returns:</span></dt>
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
<dd>Returns the MST as an array of edges.</dd>
|
<dd>Returns the MST as an array of edges.</dd>
|
||||||
<dt><span class="seeLabel">See Also:</span></dt>
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
<dd><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#getMinimumSpanningTree-com.mxgraph.view.mxGraph-java.lang.Object:A-com.mxgraph.analysis.mxICostFunction-boolean-"><code>getMinimumSpanningTree(mxGraph, Object[], mxICostFunction,
|
<dd><a href="#getMinimumSpanningTree(com.mxgraph.view.mxGraph,java.lang.Object%5B%5D,com.mxgraph.analysis.mxICostFunction,boolean)"><code>getMinimumSpanningTree(mxGraph, Object[], mxICostFunction,
|
||||||
boolean)</code></a>,
|
boolean)</code></a>,
|
||||||
<a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#createUnionFind-java.lang.Object:A-"><code>createUnionFind(Object[])</code></a></dd>
|
<a href="#createUnionFind(java.lang.Object%5B%5D)"><code>createUnionFind(Object[])</code></a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getConnectionComponents-com.mxgraph.view.mxGraph-java.lang.Object:A-java.lang.Object:A-">
|
<a id="getConnectionComponents(com.mxgraph.view.mxGraph,java.lang.Object[],java.lang.Object[])">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getConnectionComponents</h4>
|
<h4>getConnectionComponents</h4>
|
||||||
<pre>public <a href="../../../com/mxgraph/analysis/mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a> getConnectionComponents​(<a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<pre class="methodSignature">public <a href="mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a> getConnectionComponents​(<a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
java.lang.Object[] v,
|
java.lang.Object[] v,
|
||||||
java.lang.Object[] e)</pre>
|
java.lang.Object[] e)</pre>
|
||||||
<div class="block">Returns a union find structure representing the connection components of
|
<div class="block">Returns a union find structure representing the connection components of
|
||||||
|
@ -515,18 +526,18 @@ extends java.lang.Object</pre>
|
||||||
<dt><span class="returnLabel">Returns:</span></dt>
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
<dd>Returns the connection components in G=(E,V)</dd>
|
<dd>Returns the connection components in G=(E,V)</dd>
|
||||||
<dt><span class="seeLabel">See Also:</span></dt>
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
<dd><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html#createUnionFind-java.lang.Object:A-"><code>createUnionFind(Object[])</code></a></dd>
|
<dd><a href="#createUnionFind(java.lang.Object%5B%5D)"><code>createUnionFind(Object[])</code></a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="sort-com.mxgraph.view.mxCellState:A-com.mxgraph.analysis.mxICostFunction-">
|
<a id="sort(com.mxgraph.view.mxCellState[],com.mxgraph.analysis.mxICostFunction)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>sort</h4>
|
<h4>sort</h4>
|
||||||
<pre>public <a href="../../../com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] sort​(<a href="../../../com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] states,
|
<pre class="methodSignature">public <a href="../view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] sort​(<a href="../view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] states,
|
||||||
<a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</pre>
|
<a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</pre>
|
||||||
<div class="block">Returns a sorted set for <code>cells</code> with respect to
|
<div class="block">Returns a sorted set for <code>cells</code> with respect to
|
||||||
<code>cf</code>.</div>
|
<code>cf</code>.</div>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -539,14 +550,14 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="sum-com.mxgraph.view.mxCellState:A-com.mxgraph.analysis.mxICostFunction-">
|
<a id="sum(com.mxgraph.view.mxCellState[],com.mxgraph.analysis.mxICostFunction)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>sum</h4>
|
<h4>sum</h4>
|
||||||
<pre>public double sum​(<a href="../../../com/mxgraph/view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] states,
|
<pre class="methodSignature">public double sum​(<a href="../view/mxCellState.html" title="class in com.mxgraph.view">mxCellState</a>[] states,
|
||||||
<a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</pre>
|
<a href="mxICostFunction.html" title="interface in com.mxgraph.analysis">mxICostFunction</a> cf)</pre>
|
||||||
<div class="block">Returns the sum of all cost for <code>cells</code> with respect to
|
<div class="block">Returns the sum of all cost for <code>cells</code> with respect to
|
||||||
<code>cf</code>.</div>
|
<code>cf</code>.</div>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -558,13 +569,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="createUnionFind-java.lang.Object:A-">
|
<a id="createUnionFind(java.lang.Object[])">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>createUnionFind</h4>
|
<h4>createUnionFind</h4>
|
||||||
<pre>protected <a href="../../../com/mxgraph/analysis/mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a> createUnionFind​(java.lang.Object[] v)</pre>
|
<pre class="methodSignature">protected <a href="mxUnionFind.html" title="class in com.mxgraph.analysis">mxUnionFind</a> createUnionFind​(java.lang.Object[] v)</pre>
|
||||||
<div class="block">Hook for subclassers to provide a custom union find structure.</div>
|
<div class="block">Hook for subclassers to provide a custom union find structure.</div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -574,33 +585,37 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="createPriorityQueue--">
|
<a id="createPriorityQueue()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>createPriorityQueue</h4>
|
<h4>createPriorityQueue</h4>
|
||||||
<pre>protected <a href="../../../com/mxgraph/analysis/mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> createPriorityQueue()</pre>
|
<pre class="methodSignature">protected <a href="mxFibonacciHeap.html" title="class in com.mxgraph.analysis">mxFibonacciHeap</a> createPriorityQueue()</pre>
|
||||||
<div class="block">Hook for subclassers to provide a custom fibonacci heap.</div>
|
<div class="block">Hook for subclassers to provide a custom fibonacci heap.</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxGraphAnalysis.html">Use</a></li>
|
<li><a href="class-use/mxGraphAnalysis.html">Use</a></li>
|
||||||
|
@ -609,19 +624,11 @@ extends java.lang.Object</pre>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxFibonacciHeap.Node.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxGraphAnalysis.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphAnalysis.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -653,11 +660,13 @@ extends java.lang.Object</pre>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>mxGraphGenerator (mxGraph 4.0.0 API Specification)</title>
|
<title>mxGraphGenerator (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../script.js"></script>
|
<script type="text/javascript" src="../../../script.js"></script>
|
||||||
|
@ -14,40 +14,45 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="mxGraphGenerator (mxGraph 4.0.0 API Specification)";
|
parent.document.title="mxGraphGenerator (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":9,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10};
|
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":9,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10};
|
||||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
|
||||||
var altColor = "altColor";
|
var altColor = "altColor";
|
||||||
var rowColor = "rowColor";
|
var rowColor = "rowColor";
|
||||||
var tableTab = "tableTab";
|
var tableTab = "tableTab";
|
||||||
var activeTableTab = "activeTableTab";
|
var activeTableTab = "activeTableTab";
|
||||||
var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxGraphGenerator.html">Use</a></li>
|
<li><a href="class-use/mxGraphGenerator.html">Use</a></li>
|
||||||
|
@ -56,19 +61,11 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphProperties.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxGraphGenerator.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphGenerator.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -106,7 +103,7 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -116,9 +113,12 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></div>
|
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">com.mxgraph.analysis</a></div>
|
||||||
<h2 title="Class mxGraphGenerator" class="title">Class mxGraphGenerator</h2>
|
<h2 title="Class mxGraphGenerator" class="title">Class mxGraphGenerator</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="contentContainer">
|
<div class="contentContainer">
|
||||||
|
@ -143,32 +143,35 @@ extends java.lang.Object</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.summary">
|
<li class="blockList"><a id="constructor.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Summary</h3>
|
<h3>Constructor Summary</h3>
|
||||||
<table class="memberSummary" summary="Constructor Summary table, listing constructors, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Constructor</th>
|
<th class="colFirst" scope="col">Constructor</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#mxGraphGenerator-com.mxgraph.generatorfunction.mxGeneratorFunction-com.mxgraph.costfunction.mxCostFunction-">mxGraphGenerator</a></span>​(<a href="../../../com/mxgraph/generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a> generatorFunction,
|
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(com.mxgraph.generatorfunction.mxGeneratorFunction,com.mxgraph.costfunction.mxCostFunction)">mxGraphGenerator</a></span>​(<a href="../generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a> generatorFunction,
|
||||||
<a href="../../../com/mxgraph/costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a> costFunction)</code></th>
|
<a href="../costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a> costFunction)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.summary">
|
<li class="blockList"><a id="method.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Summary</h3>
|
<h3>Method Summary</h3>
|
||||||
<table class="memberSummary" summary="Method Summary table, listing methods, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -177,44 +180,44 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i0" class="altColor">
|
<tr id="i0" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getBipartiteGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getBipartiteGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBipartiteGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getBipartiteGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVerticesGroup1,
|
int numVerticesGroup1,
|
||||||
int numVerticesGroup2)</code></th>
|
int numVerticesGroup2)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i1" class="rowColor">
|
<tr id="i1" class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getCompleteBipartiteGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getCompleteBipartiteGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCompleteBipartiteGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getCompleteBipartiteGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVerticesGroup1,
|
int numVerticesGroup1,
|
||||||
int numVerticesGroup2)</code></th>
|
int numVerticesGroup2)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i2" class="altColor">
|
<tr id="i2" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getCompleteGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">getCompleteGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCompleteGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">getCompleteGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</code></th>
|
int numVertices)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i3" class="rowColor">
|
<tr id="i3" class="rowColor">
|
||||||
<td class="colFirst"><code><a href="../../../com/mxgraph/costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a></code></td>
|
<td class="colFirst"><code><a href="../costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getCostFunction--">getCostFunction</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCostFunction()">getCostFunction</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i4" class="altColor">
|
<tr id="i4" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getFriendshipWindmillGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getFriendshipWindmillGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFriendshipWindmillGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getFriendshipWindmillGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numBranches,
|
int numBranches,
|
||||||
int branchSize)</code></th>
|
int branchSize)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i5" class="rowColor">
|
<tr id="i5" class="rowColor">
|
||||||
<td class="colFirst"><code><a href="../../../com/mxgraph/generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a></code></td>
|
<td class="colFirst"><code><a href="../generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getGeneratorFunction--">getGeneratorFunction</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getGeneratorFunction()">getGeneratorFunction</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i6" class="altColor">
|
<tr id="i6" class="altColor">
|
||||||
<td class="colFirst"><code>static <a href="../../../com/mxgraph/generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a></code></td>
|
<td class="colFirst"><code>static <a href="../generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getGeneratorFunction-com.mxgraph.view.mxGraph-boolean-double-double-">getGeneratorFunction</a></span>​(<a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getGeneratorFunction(com.mxgraph.view.mxGraph,boolean,double,double)">getGeneratorFunction</a></span>​(<a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
boolean weighted,
|
boolean weighted,
|
||||||
double minWeight,
|
double minWeight,
|
||||||
double maxWeight)</code></th>
|
double maxWeight)</code></th>
|
||||||
|
@ -222,21 +225,21 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i7" class="rowColor">
|
<tr id="i7" class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getGridGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getGridGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getGridGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getGridGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numColumns,
|
int numColumns,
|
||||||
int numRows)</code></th>
|
int numRows)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i8" class="altColor">
|
<tr id="i8" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getKingGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getKingGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getKingGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getKingGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim)</code></th>
|
int yDim)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i9" class="rowColor">
|
<tr id="i9" class="rowColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getKingMoveVertexes-com.mxgraph.analysis.mxAnalysisGraph-int-int-int-int-">getKingMoveVertexes</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getKingMoveVertexes(com.mxgraph.analysis.mxAnalysisGraph,int,int,int,int)">getKingMoveVertexes</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim,
|
int yDim,
|
||||||
int xCoord,
|
int xCoord,
|
||||||
|
@ -245,14 +248,14 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i10" class="altColor">
|
<tr id="i10" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getKnightGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getKnightGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getKnightGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getKnightGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim)</code></th>
|
int yDim)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i11" class="rowColor">
|
<tr id="i11" class="rowColor">
|
||||||
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
<td class="colFirst"><code>java.lang.Object[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getKnightMoveVertexes-com.mxgraph.analysis.mxAnalysisGraph-int-int-int-int-">getKnightMoveVertexes</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getKnightMoveVertexes(com.mxgraph.analysis.mxAnalysisGraph,int,int,int,int)">getKnightMoveVertexes</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim,
|
int yDim,
|
||||||
int xCoord,
|
int xCoord,
|
||||||
|
@ -261,7 +264,7 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i12" class="altColor">
|
<tr id="i12" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getKnightTour-com.mxgraph.analysis.mxAnalysisGraph-int-int-int-">getKnightTour</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getKnightTour(com.mxgraph.analysis.mxAnalysisGraph,int,int,int)">getKnightTour</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim,
|
int yDim,
|
||||||
int startVertexValue)</code></th>
|
int startVertexValue)</code></th>
|
||||||
|
@ -269,37 +272,37 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i13" class="rowColor">
|
<tr id="i13" class="rowColor">
|
||||||
<td class="colFirst"><code>java.lang.Double</code></td>
|
<td class="colFirst"><code>java.lang.Double</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getNewEdgeValue-com.mxgraph.analysis.mxAnalysisGraph-">getNewEdgeValue</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNewEdgeValue(com.mxgraph.analysis.mxAnalysisGraph)">getNewEdgeValue</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Creates a new edge value based on graph properties in mxAnalysisGraph.</div>
|
<div class="block">Creates a new edge value based on graph properties in mxAnalysisGraph.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i14" class="altColor">
|
<tr id="i14" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getNullGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">getNullGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNullGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">getNullGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</code></th>
|
int numVertices)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i15" class="rowColor">
|
<tr id="i15" class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getPathGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">getPathGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getPathGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">getPathGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</code></th>
|
int numVertices)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i16" class="altColor">
|
<tr id="i16" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getPetersenGraph-com.mxgraph.analysis.mxAnalysisGraph-">getPetersenGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getPetersenGraph(com.mxgraph.analysis.mxAnalysisGraph)">getPetersenGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i17" class="rowColor">
|
<tr id="i17" class="rowColor">
|
||||||
<td class="colFirst"><code>int</code></td>
|
<td class="colFirst"><code>int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getRandomInt-int-int-">getRandomInt</a></span>​(int minValue,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getRandomInt(int,int)">getRandomInt</a></span>​(int minValue,
|
||||||
int maxValue)</code></th>
|
int maxValue)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i18" class="altColor">
|
<tr id="i18" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getSimpleRandomGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-boolean-boolean-boolean-">getSimpleRandomGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSimpleRandomGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int,boolean,boolean,boolean)">getSimpleRandomGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numNodes,
|
int numNodes,
|
||||||
int numEdges,
|
int numEdges,
|
||||||
boolean allowSelfLoops,
|
boolean allowSelfLoops,
|
||||||
|
@ -311,7 +314,7 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i19" class="rowColor">
|
<tr id="i19" class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getSimpleRandomTree-com.mxgraph.analysis.mxAnalysisGraph-int-">getSimpleRandomTree</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSimpleRandomTree(com.mxgraph.analysis.mxAnalysisGraph,int)">getSimpleRandomTree</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int vertexCount)</code></th>
|
int vertexCount)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Generates a random tree graph</div>
|
<div class="block">Generates a random tree graph</div>
|
||||||
|
@ -319,13 +322,13 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i20" class="altColor">
|
<tr id="i20" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getStarGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">getStarGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getStarGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">getStarGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</code></th>
|
int numVertices)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i21" class="rowColor">
|
<tr id="i21" class="rowColor">
|
||||||
<td class="colFirst"><code>int[]</code></td>
|
<td class="colFirst"><code>int[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getVertexGridCoords-int-int-int-">getVertexGridCoords</a></span>​(int xDim,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getVertexGridCoords(int,int,int)">getVertexGridCoords</a></span>​(int xDim,
|
||||||
int yDim,
|
int yDim,
|
||||||
int value)</code></th>
|
int value)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
|
@ -334,27 +337,27 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i22" class="altColor">
|
<tr id="i22" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getWheelGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">getWheelGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getWheelGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">getWheelGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</code></th>
|
int numVertices)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i23" class="rowColor">
|
<tr id="i23" class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#getWindmillGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">getWindmillGraph</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getWindmillGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">getWindmillGraph</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numBranches,
|
int numBranches,
|
||||||
int branchSize)</code></th>
|
int branchSize)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i24" class="altColor">
|
<tr id="i24" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#oneSpanningTree-com.mxgraph.analysis.mxAnalysisGraph-boolean-boolean-">oneSpanningTree</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#oneSpanningTree(com.mxgraph.analysis.mxAnalysisGraph,boolean,boolean)">oneSpanningTree</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
boolean forceConnected,
|
boolean forceConnected,
|
||||||
boolean forceSimple)</code></th>
|
boolean forceSimple)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i25" class="rowColor">
|
<tr id="i25" class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#setBipartiteGraphSpacing-com.mxgraph.analysis.mxAnalysisGraph-int-int-double-double-">setBipartiteGraphSpacing</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setBipartiteGraphSpacing(com.mxgraph.analysis.mxAnalysisGraph,int,int,double,double)">setBipartiteGraphSpacing</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVerticesGroup1,
|
int numVerticesGroup1,
|
||||||
int numVerticesGroup2,
|
int numVerticesGroup2,
|
||||||
double vertexSpacing,
|
double vertexSpacing,
|
||||||
|
@ -365,12 +368,12 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i26" class="altColor">
|
<tr id="i26" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#setCostFunction-com.mxgraph.costfunction.mxCostFunction-">setCostFunction</a></span>​(<a href="../../../com/mxgraph/costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a> costFunction)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setCostFunction(com.mxgraph.costfunction.mxCostFunction)">setCostFunction</a></span>​(<a href="../costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a> costFunction)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i27" class="rowColor">
|
<tr id="i27" class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#setGridGraphSpacing-com.mxgraph.analysis.mxAnalysisGraph-double-double-int-int-">setGridGraphSpacing</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setGridGraphSpacing(com.mxgraph.analysis.mxAnalysisGraph,double,double,int,int)">setGridGraphSpacing</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
double xSpacing,
|
double xSpacing,
|
||||||
double ySpacing,
|
double ySpacing,
|
||||||
int numColumns,
|
int numColumns,
|
||||||
|
@ -381,7 +384,7 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i28" class="altColor">
|
<tr id="i28" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#setPathGraphSpacing-com.mxgraph.analysis.mxAnalysisGraph-double-">setPathGraphSpacing</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setPathGraphSpacing(com.mxgraph.analysis.mxAnalysisGraph,double)">setPathGraphSpacing</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
double spacing)</code></th>
|
double spacing)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Sets the physical spacing between vertices in a path graph.</div>
|
<div class="block">Sets the physical spacing between vertices in a path graph.</div>
|
||||||
|
@ -389,7 +392,7 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i29" class="rowColor">
|
<tr id="i29" class="rowColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#setStarGraphLayout-com.mxgraph.analysis.mxAnalysisGraph-double-">setStarGraphLayout</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setStarGraphLayout(com.mxgraph.analysis.mxAnalysisGraph,double)">setStarGraphLayout</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
double graphSize)</code></th>
|
double graphSize)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Sets the physical size of a star graph.</div>
|
<div class="block">Sets the physical size of a star graph.</div>
|
||||||
|
@ -397,7 +400,7 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i30" class="altColor">
|
<tr id="i30" class="altColor">
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html#setWindmillGraphLayout-com.mxgraph.analysis.mxAnalysisGraph-int-int-double-">setWindmillGraphLayout</a></span>​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setWindmillGraphLayout(com.mxgraph.analysis.mxAnalysisGraph,int,int,double)">setWindmillGraphLayout</a></span>​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numBranches,
|
int numBranches,
|
||||||
int numVerticesInBranch,
|
int numVerticesInBranch,
|
||||||
double graphSize)</code></th>
|
double graphSize)</code></th>
|
||||||
|
@ -407,7 +410,7 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
|
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Methods inherited from class java.lang.Object</h3>
|
<h3>Methods inherited from class java.lang.Object</h3>
|
||||||
|
@ -415,6 +418,7 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -422,36 +426,39 @@ extends java.lang.Object</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.detail">
|
<li class="blockList"><a id="constructor.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Detail</h3>
|
<h3>Constructor Detail</h3>
|
||||||
<a name="mxGraphGenerator-com.mxgraph.generatorfunction.mxGeneratorFunction-com.mxgraph.costfunction.mxCostFunction-">
|
<a id="<init>(com.mxgraph.generatorfunction.mxGeneratorFunction,com.mxgraph.costfunction.mxCostFunction)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>mxGraphGenerator</h4>
|
<h4>mxGraphGenerator</h4>
|
||||||
<pre>public mxGraphGenerator​(<a href="../../../com/mxgraph/generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a> generatorFunction,
|
<pre>public mxGraphGenerator​(<a href="../generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a> generatorFunction,
|
||||||
<a href="../../../com/mxgraph/costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a> costFunction)</pre>
|
<a href="../costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a> costFunction)</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.detail">
|
<li class="blockList"><a id="method.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Detail</h3>
|
<h3>Method Detail</h3>
|
||||||
<a name="getNullGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">
|
<a id="getNullGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getNullGraph</h4>
|
<h4>getNullGraph</h4>
|
||||||
<pre>public void getNullGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getNullGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</pre>
|
int numVertices)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -460,13 +467,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getCompleteGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">
|
<a id="getCompleteGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getCompleteGraph</h4>
|
<h4>getCompleteGraph</h4>
|
||||||
<pre>public void getCompleteGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getCompleteGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</pre>
|
int numVertices)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -475,13 +482,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getGridGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">
|
<a id="getGridGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getGridGraph</h4>
|
<h4>getGridGraph</h4>
|
||||||
<pre>public void getGridGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getGridGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numColumns,
|
int numColumns,
|
||||||
int numRows)</pre>
|
int numRows)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -492,13 +499,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="setGridGraphSpacing-com.mxgraph.analysis.mxAnalysisGraph-double-double-int-int-">
|
<a id="setGridGraphSpacing(com.mxgraph.analysis.mxAnalysisGraph,double,double,int,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>setGridGraphSpacing</h4>
|
<h4>setGridGraphSpacing</h4>
|
||||||
<pre>public void setGridGraphSpacing​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void setGridGraphSpacing​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
double xSpacing,
|
double xSpacing,
|
||||||
double ySpacing,
|
double ySpacing,
|
||||||
int numColumns,
|
int numColumns,
|
||||||
|
@ -514,13 +521,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getBipartiteGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">
|
<a id="getBipartiteGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getBipartiteGraph</h4>
|
<h4>getBipartiteGraph</h4>
|
||||||
<pre>public void getBipartiteGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getBipartiteGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVerticesGroup1,
|
int numVerticesGroup1,
|
||||||
int numVerticesGroup2)</pre>
|
int numVerticesGroup2)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -531,13 +538,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="setBipartiteGraphSpacing-com.mxgraph.analysis.mxAnalysisGraph-int-int-double-double-">
|
<a id="setBipartiteGraphSpacing(com.mxgraph.analysis.mxAnalysisGraph,int,int,double,double)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>setBipartiteGraphSpacing</h4>
|
<h4>setBipartiteGraphSpacing</h4>
|
||||||
<pre>public void setBipartiteGraphSpacing​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void setBipartiteGraphSpacing​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVerticesGroup1,
|
int numVerticesGroup1,
|
||||||
int numVerticesGroup2,
|
int numVerticesGroup2,
|
||||||
double vertexSpacing,
|
double vertexSpacing,
|
||||||
|
@ -554,13 +561,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getCompleteBipartiteGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">
|
<a id="getCompleteBipartiteGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getCompleteBipartiteGraph</h4>
|
<h4>getCompleteBipartiteGraph</h4>
|
||||||
<pre>public void getCompleteBipartiteGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getCompleteBipartiteGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVerticesGroup1,
|
int numVerticesGroup1,
|
||||||
int numVerticesGroup2)</pre>
|
int numVerticesGroup2)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -571,13 +578,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getKnightGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">
|
<a id="getKnightGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getKnightGraph</h4>
|
<h4>getKnightGraph</h4>
|
||||||
<pre>public void getKnightGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getKnightGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim)</pre>
|
int yDim)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -588,13 +595,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getKnightMoveVertexes-com.mxgraph.analysis.mxAnalysisGraph-int-int-int-int-">
|
<a id="getKnightMoveVertexes(com.mxgraph.analysis.mxAnalysisGraph,int,int,int,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getKnightMoveVertexes</h4>
|
<h4>getKnightMoveVertexes</h4>
|
||||||
<pre>public java.lang.Object[] getKnightMoveVertexes​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public java.lang.Object[] getKnightMoveVertexes​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim,
|
int yDim,
|
||||||
int xCoord,
|
int xCoord,
|
||||||
|
@ -612,13 +619,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getVertexGridCoords-int-int-int-">
|
<a id="getVertexGridCoords(int,int,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getVertexGridCoords</h4>
|
<h4>getVertexGridCoords</h4>
|
||||||
<pre>public int[] getVertexGridCoords​(int xDim,
|
<pre class="methodSignature">public int[] getVertexGridCoords​(int xDim,
|
||||||
int yDim,
|
int yDim,
|
||||||
int value)</pre>
|
int value)</pre>
|
||||||
<div class="block">use this only with the grid graph, and various chess-board graphs, because of vertex ordering</div>
|
<div class="block">use this only with the grid graph, and various chess-board graphs, because of vertex ordering</div>
|
||||||
|
@ -633,13 +640,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getKingGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">
|
<a id="getKingGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getKingGraph</h4>
|
<h4>getKingGraph</h4>
|
||||||
<pre>public void getKingGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getKingGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim)</pre>
|
int yDim)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -651,13 +658,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getKingMoveVertexes-com.mxgraph.analysis.mxAnalysisGraph-int-int-int-int-">
|
<a id="getKingMoveVertexes(com.mxgraph.analysis.mxAnalysisGraph,int,int,int,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getKingMoveVertexes</h4>
|
<h4>getKingMoveVertexes</h4>
|
||||||
<pre>public java.lang.Object[] getKingMoveVertexes​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public java.lang.Object[] getKingMoveVertexes​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim,
|
int yDim,
|
||||||
int xCoord,
|
int xCoord,
|
||||||
|
@ -675,26 +682,26 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getPetersenGraph-com.mxgraph.analysis.mxAnalysisGraph-">
|
<a id="getPetersenGraph(com.mxgraph.analysis.mxAnalysisGraph)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getPetersenGraph</h4>
|
<h4>getPetersenGraph</h4>
|
||||||
<pre>public void getPetersenGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</pre>
|
<pre class="methodSignature">public void getPetersenGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
<dd><code>aGraph</code> - Returns a Petersen graph</dd>
|
<dd><code>aGraph</code> - Returns a Petersen graph</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getPathGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">
|
<a id="getPathGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getPathGraph</h4>
|
<h4>getPathGraph</h4>
|
||||||
<pre>public void getPathGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getPathGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</pre>
|
int numVertices)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -703,13 +710,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="setPathGraphSpacing-com.mxgraph.analysis.mxAnalysisGraph-double-">
|
<a id="setPathGraphSpacing(com.mxgraph.analysis.mxAnalysisGraph,double)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>setPathGraphSpacing</h4>
|
<h4>setPathGraphSpacing</h4>
|
||||||
<pre>public void setPathGraphSpacing​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void setPathGraphSpacing​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
double spacing)</pre>
|
double spacing)</pre>
|
||||||
<div class="block">Sets the physical spacing between vertices in a path graph. This works for now only for a graph generated with mxGraphCreator.getPathGraph()
|
<div class="block">Sets the physical spacing between vertices in a path graph. This works for now only for a graph generated with mxGraphCreator.getPathGraph()
|
||||||
only after creating the graph</div>
|
only after creating the graph</div>
|
||||||
|
@ -720,13 +727,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getStarGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">
|
<a id="getStarGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getStarGraph</h4>
|
<h4>getStarGraph</h4>
|
||||||
<pre>public void getStarGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getStarGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</pre>
|
int numVertices)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -736,13 +743,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="setStarGraphLayout-com.mxgraph.analysis.mxAnalysisGraph-double-">
|
<a id="setStarGraphLayout(com.mxgraph.analysis.mxAnalysisGraph,double)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>setStarGraphLayout</h4>
|
<h4>setStarGraphLayout</h4>
|
||||||
<pre>public void setStarGraphLayout​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void setStarGraphLayout​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
double graphSize)</pre>
|
double graphSize)</pre>
|
||||||
<div class="block">Sets the physical size of a star graph. This works for now only for a graph generated with mxGraphCreator.getStarGraph() and getWheelGraph()</div>
|
<div class="block">Sets the physical size of a star graph. This works for now only for a graph generated with mxGraphCreator.getStarGraph() and getWheelGraph()</div>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -752,13 +759,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getWheelGraph-com.mxgraph.analysis.mxAnalysisGraph-int-">
|
<a id="getWheelGraph(com.mxgraph.analysis.mxAnalysisGraph,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getWheelGraph</h4>
|
<h4>getWheelGraph</h4>
|
||||||
<pre>public void getWheelGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getWheelGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numVertices)</pre>
|
int numVertices)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -767,13 +774,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getFriendshipWindmillGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">
|
<a id="getFriendshipWindmillGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getFriendshipWindmillGraph</h4>
|
<h4>getFriendshipWindmillGraph</h4>
|
||||||
<pre>public void getFriendshipWindmillGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getFriendshipWindmillGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numBranches,
|
int numBranches,
|
||||||
int branchSize)</pre>
|
int branchSize)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -785,13 +792,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getWindmillGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-">
|
<a id="getWindmillGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getWindmillGraph</h4>
|
<h4>getWindmillGraph</h4>
|
||||||
<pre>public void getWindmillGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getWindmillGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numBranches,
|
int numBranches,
|
||||||
int branchSize)</pre>
|
int branchSize)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -803,13 +810,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="setWindmillGraphLayout-com.mxgraph.analysis.mxAnalysisGraph-int-int-double-">
|
<a id="setWindmillGraphLayout(com.mxgraph.analysis.mxAnalysisGraph,int,int,double)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>setWindmillGraphLayout</h4>
|
<h4>setWindmillGraphLayout</h4>
|
||||||
<pre>public void setWindmillGraphLayout​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void setWindmillGraphLayout​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numBranches,
|
int numBranches,
|
||||||
int numVerticesInBranch,
|
int numVerticesInBranch,
|
||||||
double graphSize)</pre>
|
double graphSize)</pre>
|
||||||
|
@ -823,13 +830,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getSimpleRandomGraph-com.mxgraph.analysis.mxAnalysisGraph-int-int-boolean-boolean-boolean-">
|
<a id="getSimpleRandomGraph(com.mxgraph.analysis.mxAnalysisGraph,int,int,boolean,boolean,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getSimpleRandomGraph</h4>
|
<h4>getSimpleRandomGraph</h4>
|
||||||
<pre>public void getSimpleRandomGraph​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getSimpleRandomGraph​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int numNodes,
|
int numNodes,
|
||||||
int numEdges,
|
int numEdges,
|
||||||
boolean allowSelfLoops,
|
boolean allowSelfLoops,
|
||||||
|
@ -847,13 +854,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getSimpleRandomTree-com.mxgraph.analysis.mxAnalysisGraph-int-">
|
<a id="getSimpleRandomTree(com.mxgraph.analysis.mxAnalysisGraph,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getSimpleRandomTree</h4>
|
<h4>getSimpleRandomTree</h4>
|
||||||
<pre>public void getSimpleRandomTree​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getSimpleRandomTree​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int vertexCount)</pre>
|
int vertexCount)</pre>
|
||||||
<div class="block">Generates a random tree graph</div>
|
<div class="block">Generates a random tree graph</div>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -863,13 +870,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getNewEdgeValue-com.mxgraph.analysis.mxAnalysisGraph-">
|
<a id="getNewEdgeValue(com.mxgraph.analysis.mxAnalysisGraph)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getNewEdgeValue</h4>
|
<h4>getNewEdgeValue</h4>
|
||||||
<pre>public java.lang.Double getNewEdgeValue​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</pre>
|
<pre class="methodSignature">public java.lang.Double getNewEdgeValue​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph)</pre>
|
||||||
<div class="block">Creates a new edge value based on graph properties in mxAnalysisGraph. Used mostly when creating new edges during graph generation.</div>
|
<div class="block">Creates a new edge value based on graph properties in mxAnalysisGraph. Used mostly when creating new edges during graph generation.</div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -878,13 +885,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getGeneratorFunction-com.mxgraph.view.mxGraph-boolean-double-double-">
|
<a id="getGeneratorFunction(com.mxgraph.view.mxGraph,boolean,double,double)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getGeneratorFunction</h4>
|
<h4>getGeneratorFunction</h4>
|
||||||
<pre>public static <a href="../../../com/mxgraph/generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a> getGeneratorFunction​(<a href="../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
<pre class="methodSignature">public static <a href="../generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a> getGeneratorFunction​(<a href="../view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a> graph,
|
||||||
boolean weighted,
|
boolean weighted,
|
||||||
double minWeight,
|
double minWeight,
|
||||||
double maxWeight)</pre>
|
double maxWeight)</pre>
|
||||||
|
@ -899,22 +906,22 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getGeneratorFunction--">
|
<a id="getGeneratorFunction()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getGeneratorFunction</h4>
|
<h4>getGeneratorFunction</h4>
|
||||||
<pre>public <a href="../../../com/mxgraph/generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a> getGeneratorFunction()</pre>
|
<pre class="methodSignature">public <a href="../generatorfunction/mxGeneratorFunction.html" title="class in com.mxgraph.generatorfunction">mxGeneratorFunction</a> getGeneratorFunction()</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getRandomInt-int-int-">
|
<a id="getRandomInt(int,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getRandomInt</h4>
|
<h4>getRandomInt</h4>
|
||||||
<pre>public int getRandomInt​(int minValue,
|
<pre class="methodSignature">public int getRandomInt​(int minValue,
|
||||||
int maxValue)</pre>
|
int maxValue)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -925,16 +932,16 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="oneSpanningTree-com.mxgraph.analysis.mxAnalysisGraph-boolean-boolean-">
|
<a id="oneSpanningTree(com.mxgraph.analysis.mxAnalysisGraph,boolean,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>oneSpanningTree</h4>
|
<h4>oneSpanningTree</h4>
|
||||||
<pre>public void oneSpanningTree​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void oneSpanningTree​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
boolean forceConnected,
|
boolean forceConnected,
|
||||||
boolean forceSimple)
|
boolean forceSimple)
|
||||||
throws <a href="../../../com/mxgraph/analysis/StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a></pre>
|
throws <a href="StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a></pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
<dd><code>graph</code> - </dd>
|
<dd><code>graph</code> - </dd>
|
||||||
|
@ -945,21 +952,21 @@ extends java.lang.Object</pre>
|
||||||
Self loops and multiple edges are automatically removed!
|
Self loops and multiple edges are automatically removed!
|
||||||
Also, unconnected graphs are made connected!</dd>
|
Also, unconnected graphs are made connected!</dd>
|
||||||
<dt><span class="throwsLabel">Throws:</span></dt>
|
<dt><span class="throwsLabel">Throws:</span></dt>
|
||||||
<dd><code><a href="../../../com/mxgraph/analysis/StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a></code> - the graph has to be simple (no self-loops and no multiple edges)</dd>
|
<dd><code><a href="StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a></code> - the graph has to be simple (no self-loops and no multiple edges)</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getKnightTour-com.mxgraph.analysis.mxAnalysisGraph-int-int-int-">
|
<a id="getKnightTour(com.mxgraph.analysis.mxAnalysisGraph,int,int,int)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getKnightTour</h4>
|
<h4>getKnightTour</h4>
|
||||||
<pre>public void getKnightTour​(<a href="../../../com/mxgraph/analysis/mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
<pre class="methodSignature">public void getKnightTour​(<a href="mxAnalysisGraph.html" title="class in com.mxgraph.analysis">mxAnalysisGraph</a> aGraph,
|
||||||
int xDim,
|
int xDim,
|
||||||
int yDim,
|
int yDim,
|
||||||
int startVertexValue)
|
int startVertexValue)
|
||||||
throws <a href="../../../com/mxgraph/analysis/StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a></pre>
|
throws <a href="StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a></pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
<dd><code>aGraph</code> - </dd>
|
<dd><code>aGraph</code> - </dd>
|
||||||
|
@ -967,46 +974,50 @@ extends java.lang.Object</pre>
|
||||||
<dd><code>yDim</code> - y dimension of the chessboard</dd>
|
<dd><code>yDim</code> - y dimension of the chessboard</dd>
|
||||||
<dd><code>startVertexValue</code> - vertex where the tour will start</dd>
|
<dd><code>startVertexValue</code> - vertex where the tour will start</dd>
|
||||||
<dt><span class="throwsLabel">Throws:</span></dt>
|
<dt><span class="throwsLabel">Throws:</span></dt>
|
||||||
<dd><code><a href="../../../com/mxgraph/analysis/StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a></code> - not all size combinations are allowed, see wikipedia for a more detailed explanation
|
<dd><code><a href="StructuralException.html" title="class in com.mxgraph.analysis">StructuralException</a></code> - not all size combinations are allowed, see wikipedia for a more detailed explanation
|
||||||
Returns a Knight's Tour graph</dd>
|
Returns a Knight's Tour graph</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="getCostFunction--">
|
<a id="getCostFunction()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getCostFunction</h4>
|
<h4>getCostFunction</h4>
|
||||||
<pre>public <a href="../../../com/mxgraph/costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a> getCostFunction()</pre>
|
<pre class="methodSignature">public <a href="../costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a> getCostFunction()</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="setCostFunction-com.mxgraph.costfunction.mxCostFunction-">
|
<a id="setCostFunction(com.mxgraph.costfunction.mxCostFunction)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>setCostFunction</h4>
|
<h4>setCostFunction</h4>
|
||||||
<pre>public void setCostFunction​(<a href="../../../com/mxgraph/costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a> costFunction)</pre>
|
<pre class="methodSignature">public void setCostFunction​(<a href="../costfunction/mxCostFunction.html" title="class in com.mxgraph.costfunction">mxCostFunction</a> costFunction)</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxGraphGenerator.html">Use</a></li>
|
<li><a href="class-use/mxGraphGenerator.html">Use</a></li>
|
||||||
|
@ -1015,19 +1026,11 @@ extends java.lang.Object</pre>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphAnalysis.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphProperties.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxGraphGenerator.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphGenerator.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -1059,11 +1062,13 @@ extends java.lang.Object</pre>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>mxGraphProperties.GraphType (mxGraph 4.0.0 API Specification)</title>
|
<title>mxGraphProperties.GraphType (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../script.js"></script>
|
<script type="text/javascript" src="../../../script.js"></script>
|
||||||
|
@ -14,40 +14,45 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="mxGraphProperties.GraphType (mxGraph 4.0.0 API Specification)";
|
parent.document.title="mxGraphProperties.GraphType (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var methods = {"i0":9,"i1":9};
|
var data = {"i0":9,"i1":9};
|
||||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
|
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
|
||||||
var altColor = "altColor";
|
var altColor = "altColor";
|
||||||
var rowColor = "rowColor";
|
var rowColor = "rowColor";
|
||||||
var tableTab = "tableTab";
|
var tableTab = "tableTab";
|
||||||
var activeTableTab = "activeTableTab";
|
var activeTableTab = "activeTableTab";
|
||||||
var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxGraphProperties.GraphType.html">Use</a></li>
|
<li><a href="class-use/mxGraphProperties.GraphType.html">Use</a></li>
|
||||||
|
@ -56,19 +61,11 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphProperties.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphStructure.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxGraphProperties.GraphType.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphProperties.GraphType.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -106,7 +103,7 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -116,9 +113,12 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></div>
|
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">com.mxgraph.analysis</a></div>
|
||||||
<h2 title="Enum mxGraphProperties.GraphType" class="title">Enum mxGraphProperties.GraphType</h2>
|
<h2 title="Enum mxGraphProperties.GraphType" class="title">Enum mxGraphProperties.GraphType</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="contentContainer">
|
<div class="contentContainer">
|
||||||
|
@ -126,7 +126,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<li>java.lang.Object</li>
|
<li>java.lang.Object</li>
|
||||||
<li>
|
<li>
|
||||||
<ul class="inheritance">
|
<ul class="inheritance">
|
||||||
<li>java.lang.Enum<<a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a>></li>
|
<li>java.lang.Enum<<a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a>></li>
|
||||||
<li>
|
<li>
|
||||||
<ul class="inheritance">
|
<ul class="inheritance">
|
||||||
<li>com.mxgraph.analysis.mxGraphProperties.GraphType</li>
|
<li>com.mxgraph.analysis.mxGraphProperties.GraphType</li>
|
||||||
|
@ -140,15 +140,15 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<dl>
|
<dl>
|
||||||
<dt>All Implemented Interfaces:</dt>
|
<dt>All Implemented Interfaces:</dt>
|
||||||
<dd><code>java.io.Serializable</code>, <code>java.lang.Comparable<<a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a>></code></dd>
|
<dd><code>java.io.Serializable</code>, <code>java.lang.Comparable<<a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a>></code></dd>
|
||||||
</dl>
|
</dl>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Enclosing class:</dt>
|
<dt>Enclosing class:</dt>
|
||||||
<dd><a href="../../../com/mxgraph/analysis/mxGraphProperties.html" title="class in com.mxgraph.analysis">mxGraphProperties</a></dd>
|
<dd><a href="mxGraphProperties.html" title="class in com.mxgraph.analysis">mxGraphProperties</a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
<hr>
|
<hr>
|
||||||
<pre>public static enum <span class="typeNameLabel">mxGraphProperties.GraphType</span>
|
<pre>public static enum <span class="typeNameLabel">mxGraphProperties.GraphType</span>
|
||||||
extends java.lang.Enum<<a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a>></pre>
|
extends java.lang.Enum<<a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a>></pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -156,171 +156,174 @@ extends java.lang.Enum<<a href="../../../com/mxgraph/analysis/mxGraphProperti
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
|
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="enum.constant.summary">
|
<li class="blockList"><a id="enum.constant.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Enum Constant Summary</h3>
|
<h3>Enum Constant Summary</h3>
|
||||||
<table class="memberSummary" summary="Enum Constant Summary table, listing enum constants, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Enum Constants</span><span class="tabEnd"> </span></caption>
|
<caption><span>Enum Constants</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Enum Constant</th>
|
<th class="colFirst" scope="col">Enum Constant</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#BASIC_TREE">BASIC_TREE</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BASIC_TREE">BASIC_TREE</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#BELLMAN_FORD">BELLMAN_FORD</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BELLMAN_FORD">BELLMAN_FORD</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#BFS_DIR">BFS_DIR</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BFS_DIR">BFS_DIR</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#BFS_UNDIR">BFS_UNDIR</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BFS_UNDIR">BFS_UNDIR</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#BIPARTITE">BIPARTITE</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BIPARTITE">BIPARTITE</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#COMPLETE">COMPLETE</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#COMPLETE">COMPLETE</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#COMPLETE_BIPARTITE">COMPLETE_BIPARTITE</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#COMPLETE_BIPARTITE">COMPLETE_BIPARTITE</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#DFS_DIR">DFS_DIR</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#DFS_DIR">DFS_DIR</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#DFS_UNDIR">DFS_UNDIR</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#DFS_UNDIR">DFS_UNDIR</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#DIJKSTRA">DIJKSTRA</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#DIJKSTRA">DIJKSTRA</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#FLOW">FLOW</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FLOW">FLOW</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#FRIENDSHIP_WINDMILL">FRIENDSHIP_WINDMILL</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FRIENDSHIP_WINDMILL">FRIENDSHIP_WINDMILL</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#FROM_ADJ_MATRIX">FROM_ADJ_MATRIX</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FROM_ADJ_MATRIX">FROM_ADJ_MATRIX</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#FULL_WINDMILL">FULL_WINDMILL</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FULL_WINDMILL">FULL_WINDMILL</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#FULLY_CONNECTED">FULLY_CONNECTED</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FULLY_CONNECTED">FULLY_CONNECTED</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#GET_ADJ_MATRIX">GET_ADJ_MATRIX</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#GET_ADJ_MATRIX">GET_ADJ_MATRIX</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#GRID">GRID</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#GRID">GRID</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#INDEGREE">INDEGREE</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#INDEGREE">INDEGREE</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#IS_CUT_EDGE">IS_CUT_EDGE</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#IS_CUT_EDGE">IS_CUT_EDGE</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#IS_CUT_VERTEX">IS_CUT_VERTEX</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#IS_CUT_VERTEX">IS_CUT_VERTEX</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#KING">KING</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#KING">KING</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#KNIGHT">KNIGHT</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#KNIGHT">KNIGHT</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#KNIGHT_TOUR">KNIGHT_TOUR</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#KNIGHT_TOUR">KNIGHT_TOUR</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#MAKE_TREE_DIRECTED">MAKE_TREE_DIRECTED</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#MAKE_TREE_DIRECTED">MAKE_TREE_DIRECTED</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#NREGULAR">NREGULAR</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#NREGULAR">NREGULAR</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#NULL">NULL</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#NULL">NULL</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#OUTDEGREE">OUTDEGREE</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#OUTDEGREE">OUTDEGREE</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#PATH">PATH</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#PATH">PATH</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#PETERSEN">PETERSEN</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#PETERSEN">PETERSEN</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#RANDOM_CONNECTED">RANDOM_CONNECTED</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#RANDOM_CONNECTED">RANDOM_CONNECTED</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#RESET_STYLE">RESET_STYLE</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#RESET_STYLE">RESET_STYLE</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#SIMPLE_RANDOM">SIMPLE_RANDOM</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#SIMPLE_RANDOM">SIMPLE_RANDOM</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#SIMPLE_RANDOM_TREE">SIMPLE_RANDOM_TREE</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#SIMPLE_RANDOM_TREE">SIMPLE_RANDOM_TREE</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#STAR">STAR</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STAR">STAR</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#TREE">TREE</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#TREE">TREE</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#WHEEL">WHEEL</a></span></code></th>
|
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#WHEEL">WHEEL</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.summary">
|
<li class="blockList"><a id="method.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Summary</h3>
|
<h3>Method Summary</h3>
|
||||||
<table class="memberSummary" summary="Method Summary table, listing methods, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -328,15 +331,15 @@ extends java.lang.Enum<<a href="../../../com/mxgraph/analysis/mxGraphProperti
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i0" class="altColor">
|
<tr id="i0" class="altColor">
|
||||||
<td class="colFirst"><code>static <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a></code></td>
|
<td class="colFirst"><code>static <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a></code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#valueOf-java.lang.String-">valueOf</a></span>​(java.lang.String name)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>​(java.lang.String name)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the enum constant of this type with the specified name.</div>
|
<div class="block">Returns the enum constant of this type with the specified name.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i1" class="rowColor">
|
<tr id="i1" class="rowColor">
|
||||||
<td class="colFirst"><code>static <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a>[]</code></td>
|
<td class="colFirst"><code>static <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a>[]</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html#values--">values</a></span>()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns an array containing the constants of this enum type, in
|
<div class="block">Returns an array containing the constants of this enum type, in
|
||||||
the order they are declared.</div>
|
the order they are declared.</div>
|
||||||
|
@ -344,14 +347,14 @@ the order they are declared.</div>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Enum">
|
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Methods inherited from class java.lang.Enum</h3>
|
<h3>Methods inherited from class java.lang.Enum</h3>
|
||||||
<code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
|
<code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
|
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Methods inherited from class java.lang.Object</h3>
|
<h3>Methods inherited from class java.lang.Object</h3>
|
||||||
|
@ -359,6 +362,7 @@ the order they are declared.</div>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -366,350 +370,353 @@ the order they are declared.</div>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ============ ENUM CONSTANT DETAIL =========== -->
|
<!-- ============ ENUM CONSTANT DETAIL =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="enum.constant.detail">
|
<li class="blockList"><a id="enum.constant.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Enum Constant Detail</h3>
|
<h3>Enum Constant Detail</h3>
|
||||||
<a name="FULLY_CONNECTED">
|
<a id="FULLY_CONNECTED">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>FULLY_CONNECTED</h4>
|
<h4>FULLY_CONNECTED</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> FULLY_CONNECTED</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> FULLY_CONNECTED</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="RANDOM_CONNECTED">
|
<a id="RANDOM_CONNECTED">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>RANDOM_CONNECTED</h4>
|
<h4>RANDOM_CONNECTED</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> RANDOM_CONNECTED</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> RANDOM_CONNECTED</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="TREE">
|
<a id="TREE">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>TREE</h4>
|
<h4>TREE</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> TREE</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> TREE</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="FLOW">
|
<a id="FLOW">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>FLOW</h4>
|
<h4>FLOW</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> FLOW</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> FLOW</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="NULL">
|
<a id="NULL">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>NULL</h4>
|
<h4>NULL</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> NULL</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> NULL</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="COMPLETE">
|
<a id="COMPLETE">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>COMPLETE</h4>
|
<h4>COMPLETE</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> COMPLETE</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> COMPLETE</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="NREGULAR">
|
<a id="NREGULAR">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>NREGULAR</h4>
|
<h4>NREGULAR</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> NREGULAR</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> NREGULAR</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="GRID">
|
<a id="GRID">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>GRID</h4>
|
<h4>GRID</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> GRID</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> GRID</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="BIPARTITE">
|
<a id="BIPARTITE">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>BIPARTITE</h4>
|
<h4>BIPARTITE</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> BIPARTITE</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> BIPARTITE</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="COMPLETE_BIPARTITE">
|
<a id="COMPLETE_BIPARTITE">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>COMPLETE_BIPARTITE</h4>
|
<h4>COMPLETE_BIPARTITE</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> COMPLETE_BIPARTITE</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> COMPLETE_BIPARTITE</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="BASIC_TREE">
|
<a id="BASIC_TREE">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>BASIC_TREE</h4>
|
<h4>BASIC_TREE</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> BASIC_TREE</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> BASIC_TREE</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="SIMPLE_RANDOM">
|
<a id="SIMPLE_RANDOM">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>SIMPLE_RANDOM</h4>
|
<h4>SIMPLE_RANDOM</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> SIMPLE_RANDOM</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> SIMPLE_RANDOM</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="BFS_DIR">
|
<a id="BFS_DIR">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>BFS_DIR</h4>
|
<h4>BFS_DIR</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> BFS_DIR</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> BFS_DIR</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="BFS_UNDIR">
|
<a id="BFS_UNDIR">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>BFS_UNDIR</h4>
|
<h4>BFS_UNDIR</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> BFS_UNDIR</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> BFS_UNDIR</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="DFS_DIR">
|
<a id="DFS_DIR">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>DFS_DIR</h4>
|
<h4>DFS_DIR</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> DFS_DIR</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> DFS_DIR</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="DFS_UNDIR">
|
<a id="DFS_UNDIR">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>DFS_UNDIR</h4>
|
<h4>DFS_UNDIR</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> DFS_UNDIR</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> DFS_UNDIR</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="DIJKSTRA">
|
<a id="DIJKSTRA">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>DIJKSTRA</h4>
|
<h4>DIJKSTRA</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> DIJKSTRA</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> DIJKSTRA</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="MAKE_TREE_DIRECTED">
|
<a id="MAKE_TREE_DIRECTED">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>MAKE_TREE_DIRECTED</h4>
|
<h4>MAKE_TREE_DIRECTED</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> MAKE_TREE_DIRECTED</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> MAKE_TREE_DIRECTED</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="SIMPLE_RANDOM_TREE">
|
<a id="SIMPLE_RANDOM_TREE">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>SIMPLE_RANDOM_TREE</h4>
|
<h4>SIMPLE_RANDOM_TREE</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> SIMPLE_RANDOM_TREE</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> SIMPLE_RANDOM_TREE</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="KNIGHT_TOUR">
|
<a id="KNIGHT_TOUR">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>KNIGHT_TOUR</h4>
|
<h4>KNIGHT_TOUR</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> KNIGHT_TOUR</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> KNIGHT_TOUR</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="KNIGHT">
|
<a id="KNIGHT">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>KNIGHT</h4>
|
<h4>KNIGHT</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> KNIGHT</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> KNIGHT</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="GET_ADJ_MATRIX">
|
<a id="GET_ADJ_MATRIX">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>GET_ADJ_MATRIX</h4>
|
<h4>GET_ADJ_MATRIX</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> GET_ADJ_MATRIX</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> GET_ADJ_MATRIX</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="FROM_ADJ_MATRIX">
|
<a id="FROM_ADJ_MATRIX">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>FROM_ADJ_MATRIX</h4>
|
<h4>FROM_ADJ_MATRIX</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> FROM_ADJ_MATRIX</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> FROM_ADJ_MATRIX</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="PETERSEN">
|
<a id="PETERSEN">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>PETERSEN</h4>
|
<h4>PETERSEN</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> PETERSEN</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> PETERSEN</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="WHEEL">
|
<a id="WHEEL">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>WHEEL</h4>
|
<h4>WHEEL</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> WHEEL</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> WHEEL</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="STAR">
|
<a id="STAR">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>STAR</h4>
|
<h4>STAR</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> STAR</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> STAR</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="PATH">
|
<a id="PATH">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>PATH</h4>
|
<h4>PATH</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> PATH</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> PATH</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="FRIENDSHIP_WINDMILL">
|
<a id="FRIENDSHIP_WINDMILL">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>FRIENDSHIP_WINDMILL</h4>
|
<h4>FRIENDSHIP_WINDMILL</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> FRIENDSHIP_WINDMILL</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> FRIENDSHIP_WINDMILL</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="FULL_WINDMILL">
|
<a id="FULL_WINDMILL">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>FULL_WINDMILL</h4>
|
<h4>FULL_WINDMILL</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> FULL_WINDMILL</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> FULL_WINDMILL</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="INDEGREE">
|
<a id="INDEGREE">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>INDEGREE</h4>
|
<h4>INDEGREE</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> INDEGREE</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> INDEGREE</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="OUTDEGREE">
|
<a id="OUTDEGREE">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>OUTDEGREE</h4>
|
<h4>OUTDEGREE</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> OUTDEGREE</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> OUTDEGREE</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="IS_CUT_VERTEX">
|
<a id="IS_CUT_VERTEX">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>IS_CUT_VERTEX</h4>
|
<h4>IS_CUT_VERTEX</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> IS_CUT_VERTEX</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> IS_CUT_VERTEX</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="IS_CUT_EDGE">
|
<a id="IS_CUT_EDGE">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>IS_CUT_EDGE</h4>
|
<h4>IS_CUT_EDGE</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> IS_CUT_EDGE</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> IS_CUT_EDGE</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="RESET_STYLE">
|
<a id="RESET_STYLE">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>RESET_STYLE</h4>
|
<h4>RESET_STYLE</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> RESET_STYLE</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> RESET_STYLE</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="KING">
|
<a id="KING">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>KING</h4>
|
<h4>KING</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> KING</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> KING</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="BELLMAN_FORD">
|
<a id="BELLMAN_FORD">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>BELLMAN_FORD</h4>
|
<h4>BELLMAN_FORD</h4>
|
||||||
<pre>public static final <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> BELLMAN_FORD</pre>
|
<pre>public static final <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> BELLMAN_FORD</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.detail">
|
<li class="blockList"><a id="method.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Detail</h3>
|
<h3>Method Detail</h3>
|
||||||
<a name="values--">
|
<a id="values()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>values</h4>
|
<h4>values</h4>
|
||||||
<pre>public static <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a>[] values()</pre>
|
<pre class="methodSignature">public static <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a>[] values()</pre>
|
||||||
<div class="block">Returns an array containing the constants of this enum type, in
|
<div class="block">Returns an array containing the constants of this enum type, in
|
||||||
the order they are declared. This method may be used to iterate
|
the order they are declared. This method may be used to iterate
|
||||||
over the constants as follows:
|
over the constants as follows:
|
||||||
|
@ -723,13 +730,13 @@ for (mxGraphProperties.GraphType c : mxGraphProperties.GraphType.values())
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="valueOf-java.lang.String-">
|
<a id="valueOf(java.lang.String)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>valueOf</h4>
|
<h4>valueOf</h4>
|
||||||
<pre>public static <a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> valueOf​(java.lang.String name)</pre>
|
<pre class="methodSignature">public static <a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a> valueOf​(java.lang.String name)</pre>
|
||||||
<div class="block">Returns the enum constant of this type with the specified name.
|
<div class="block">Returns the enum constant of this type with the specified name.
|
||||||
The string must match <i>exactly</i> an identifier used to declare an
|
The string must match <i>exactly</i> an identifier used to declare an
|
||||||
enum constant in this type. (Extraneous whitespace characters are
|
enum constant in this type. (Extraneous whitespace characters are
|
||||||
|
@ -747,21 +754,25 @@ not permitted.)</div>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxGraphProperties.GraphType.html">Use</a></li>
|
<li><a href="class-use/mxGraphProperties.GraphType.html">Use</a></li>
|
||||||
|
@ -770,19 +781,11 @@ not permitted.)</div>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphProperties.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphStructure.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxGraphProperties.GraphType.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphProperties.GraphType.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -814,11 +817,13 @@ not permitted.)</div>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<!-- NewPage -->
|
<!-- NewPage -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (10.0.2) on Mon Mar 11 12:29:23 UTC 2019 -->
|
<!-- Generated by javadoc (11.0.3) on Tue Jul 02 06:43:02 UTC 2019 -->
|
||||||
<title>mxGraphProperties (mxGraph 4.0.0 API Specification)</title>
|
<title>mxGraphProperties (mxGraph 4.0.1 API Specification)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<meta name="date" content="2019-03-11">
|
<meta name="dc.created" content="2019-07-02">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
<script type="text/javascript" src="../../../script.js"></script>
|
<script type="text/javascript" src="../../../script.js"></script>
|
||||||
|
@ -14,40 +14,45 @@
|
||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-1.10.2.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-3.3.1.js"></script>
|
||||||
|
<script type="text/javascript" src="../../../jquery/jquery-migrate-3.0.1.js"></script>
|
||||||
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="mxGraphProperties (mxGraph 4.0.0 API Specification)";
|
parent.document.title="mxGraphProperties (mxGraph 4.0.1 API Specification)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
var methods = {"i0":9,"i1":9,"i2":9,"i3":9};
|
var data = {"i0":9,"i1":9,"i2":9,"i3":9};
|
||||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
|
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
|
||||||
var altColor = "altColor";
|
var altColor = "altColor";
|
||||||
var rowColor = "rowColor";
|
var rowColor = "rowColor";
|
||||||
var tableTab = "tableTab";
|
var tableTab = "tableTab";
|
||||||
var activeTableTab = "activeTableTab";
|
var activeTableTab = "activeTableTab";
|
||||||
var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
var pathtoroot = "../../../";
|
||||||
|
var useModuleDirectories = true;
|
||||||
|
loadScripts(document, 'script');</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
<div>JavaScript is disabled on your browser.</div>
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
<header role="banner">
|
||||||
|
<nav role="navigation">
|
||||||
<div class="fixedNav">
|
<div class="fixedNav">
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
<div class="topNav"><a name="navbar.top">
|
<div class="topNav"><a id="navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.top.firstrow">
|
<a id="navbar.top.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxGraphProperties.html">Use</a></li>
|
<li><a href="class-use/mxGraphProperties.html">Use</a></li>
|
||||||
|
@ -56,19 +61,11 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxGraphProperties.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphProperties.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_top">
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="navListSearch">
|
<ul class="navListSearch">
|
||||||
<li><label for="search">SEARCH:</label>
|
<li><label for="search">SEARCH:</label>
|
||||||
|
@ -106,7 +103,7 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.top">
|
<a id="skip.navbar.top">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
@ -116,9 +113,12 @@ var pathtoroot = "../../../";loadScripts(document, 'script');</script>
|
||||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="../../../com/mxgraph/analysis/package-summary.html">com.mxgraph.analysis</a></div>
|
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">com.mxgraph.analysis</a></div>
|
||||||
<h2 title="Class mxGraphProperties" class="title">Class mxGraphProperties</h2>
|
<h2 title="Class mxGraphProperties" class="title">Class mxGraphProperties</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="contentContainer">
|
<div class="contentContainer">
|
||||||
|
@ -144,12 +144,13 @@ extends java.lang.Object</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="nested.class.summary">
|
<li class="blockList"><a id="nested.class.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Nested Class Summary</h3>
|
<h3>Nested Class Summary</h3>
|
||||||
<table class="memberSummary" summary="Nested Class Summary table, listing nested classes, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Nested Classes</span><span class="tabEnd"> </span></caption>
|
<caption><span>Nested Classes</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -158,19 +159,21 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static class </code></td>
|
<td class="colFirst"><code>static class </code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis">mxGraphProperties.GraphType</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="field.summary">
|
<li class="blockList"><a id="field.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Field Summary</h3>
|
<h3>Field Summary</h3>
|
||||||
<table class="memberSummary" summary="Field Summary table, listing fields, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -179,24 +182,24 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static boolean</code></td>
|
<td class="colFirst"><code>static boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.html#DEFAULT_DIRECTED">DEFAULT_DIRECTED</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#DEFAULT_DIRECTED">DEFAULT_DIRECTED</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static boolean</code></td>
|
<td class="colFirst"><code>static boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.html#DEFAULT_TRAVERSE_VISIBLE">DEFAULT_TRAVERSE_VISIBLE</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#DEFAULT_TRAVERSE_VISIBLE">DEFAULT_TRAVERSE_VISIBLE</a></span></code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><code>static java.lang.String</code></td>
|
<td class="colFirst"><code>static java.lang.String</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.html#DIRECTED">DIRECTED</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#DIRECTED">DIRECTED</a></span></code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Whether or not to take into account the direction on edges.</div>
|
<div class="block">Whether or not to take into account the direction on edges.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><code>static java.lang.String</code></td>
|
<td class="colFirst"><code>static java.lang.String</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.html#TRAVERSE_VISIBLE">TRAVERSE_VISIBLE</a></span></code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#TRAVERSE_VISIBLE">TRAVERSE_VISIBLE</a></span></code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Whether or not to navigate the graph raw graph structure or
|
<div class="block">Whether or not to navigate the graph raw graph structure or
|
||||||
the visible structure.</div>
|
the visible structure.</div>
|
||||||
|
@ -205,32 +208,36 @@ extends java.lang.Object</pre>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.summary">
|
<li class="blockList"><a id="constructor.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Summary</h3>
|
<h3>Constructor Summary</h3>
|
||||||
<table class="memberSummary" summary="Constructor Summary table, listing constructors, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Constructor</th>
|
<th class="colFirst" scope="col">Constructor</th>
|
||||||
<th class="colLast" scope="col">Description</th>
|
<th class="colLast" scope="col">Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.html#mxGraphProperties--">mxGraphProperties</a></span>()</code></th>
|
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">mxGraphProperties</a></span>()</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.summary">
|
<li class="blockList"><a id="method.summary">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Summary</h3>
|
<h3>Method Summary</h3>
|
||||||
<table class="memberSummary" summary="Method Summary table, listing methods, and an explanation">
|
<table class="memberSummary">
|
||||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="colFirst" scope="col">Modifier and Type</th>
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
@ -239,31 +246,31 @@ extends java.lang.Object</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i0" class="altColor">
|
<tr id="i0" class="altColor">
|
||||||
<td class="colFirst"><code>static boolean</code></td>
|
<td class="colFirst"><code>static boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.html#isDirected-java.util.Map-boolean-">isDirected</a></span>​(java.util.Map<java.lang.String,java.lang.Object> properties,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isDirected(java.util.Map,boolean)">isDirected</a></span>​(java.util.Map<java.lang.String,​java.lang.Object> properties,
|
||||||
boolean defaultValue)</code></th>
|
boolean defaultValue)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i1" class="rowColor">
|
<tr id="i1" class="rowColor">
|
||||||
<td class="colFirst"><code>static boolean</code></td>
|
<td class="colFirst"><code>static boolean</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.html#isTraverseVisible-java.util.Map-boolean-">isTraverseVisible</a></span>​(java.util.Map<java.lang.String,java.lang.Object> properties,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isTraverseVisible(java.util.Map,boolean)">isTraverseVisible</a></span>​(java.util.Map<java.lang.String,​java.lang.Object> properties,
|
||||||
boolean defaultValue)</code></th>
|
boolean defaultValue)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i2" class="altColor">
|
<tr id="i2" class="altColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.html#setDirected-java.util.Map-boolean-">setDirected</a></span>​(java.util.Map<java.lang.String,java.lang.Object> properties,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setDirected(java.util.Map,boolean)">setDirected</a></span>​(java.util.Map<java.lang.String,​java.lang.Object> properties,
|
||||||
boolean isDirected)</code></th>
|
boolean isDirected)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i3" class="rowColor">
|
<tr id="i3" class="rowColor">
|
||||||
<td class="colFirst"><code>static void</code></td>
|
<td class="colFirst"><code>static void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/mxgraph/analysis/mxGraphProperties.html#setTraverseVisible-java.util.Map-boolean-">setTraverseVisible</a></span>​(java.util.Map<java.lang.String,java.lang.Object> properties,
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setTraverseVisible(java.util.Map,boolean)">setTraverseVisible</a></span>​(java.util.Map<java.lang.String,​java.lang.Object> properties,
|
||||||
boolean isTraverseVisible)</code></th>
|
boolean isTraverseVisible)</code></th>
|
||||||
<td class="colLast"> </td>
|
<td class="colLast"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
|
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Methods inherited from class java.lang.Object</h3>
|
<h3>Methods inherited from class java.lang.Object</h3>
|
||||||
|
@ -271,6 +278,7 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -278,12 +286,13 @@ extends java.lang.Object</pre>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="field.detail">
|
<li class="blockList"><a id="field.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Field Detail</h3>
|
<h3>Field Detail</h3>
|
||||||
<a name="TRAVERSE_VISIBLE">
|
<a id="TRAVERSE_VISIBLE">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
|
@ -296,7 +305,7 @@ extends java.lang.Object</pre>
|
||||||
<code>0</code></div>
|
<code>0</code></div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="DEFAULT_TRAVERSE_VISIBLE">
|
<a id="DEFAULT_TRAVERSE_VISIBLE">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
|
@ -305,7 +314,7 @@ extends java.lang.Object</pre>
|
||||||
<pre>public static boolean DEFAULT_TRAVERSE_VISIBLE</pre>
|
<pre>public static boolean DEFAULT_TRAVERSE_VISIBLE</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="DIRECTED">
|
<a id="DIRECTED">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
|
@ -317,7 +326,7 @@ extends java.lang.Object</pre>
|
||||||
string to <code>1</code> or <code>0</code></div>
|
string to <code>1</code> or <code>0</code></div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="DEFAULT_DIRECTED">
|
<a id="DEFAULT_DIRECTED">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
|
@ -328,13 +337,15 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="constructor.detail">
|
<li class="blockList"><a id="constructor.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Constructor Detail</h3>
|
<h3>Constructor Detail</h3>
|
||||||
<a name="mxGraphProperties--">
|
<a id="<init>()">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
|
@ -345,19 +356,21 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<section role="region">
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList"><a name="method.detail">
|
<li class="blockList"><a id="method.detail">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<h3>Method Detail</h3>
|
<h3>Method Detail</h3>
|
||||||
<a name="isTraverseVisible-java.util.Map-boolean-">
|
<a id="isTraverseVisible(java.util.Map,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>isTraverseVisible</h4>
|
<h4>isTraverseVisible</h4>
|
||||||
<pre>public static boolean isTraverseVisible​(java.util.Map<java.lang.String,java.lang.Object> properties,
|
<pre class="methodSignature">public static boolean isTraverseVisible​(java.util.Map<java.lang.String,​java.lang.Object> properties,
|
||||||
boolean defaultValue)</pre>
|
boolean defaultValue)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -367,13 +380,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="setTraverseVisible-java.util.Map-boolean-">
|
<a id="setTraverseVisible(java.util.Map,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>setTraverseVisible</h4>
|
<h4>setTraverseVisible</h4>
|
||||||
<pre>public static void setTraverseVisible​(java.util.Map<java.lang.String,java.lang.Object> properties,
|
<pre class="methodSignature">public static void setTraverseVisible​(java.util.Map<java.lang.String,​java.lang.Object> properties,
|
||||||
boolean isTraverseVisible)</pre>
|
boolean isTraverseVisible)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -382,13 +395,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="isDirected-java.util.Map-boolean-">
|
<a id="isDirected(java.util.Map,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockList">
|
<ul class="blockList">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>isDirected</h4>
|
<h4>isDirected</h4>
|
||||||
<pre>public static boolean isDirected​(java.util.Map<java.lang.String,java.lang.Object> properties,
|
<pre class="methodSignature">public static boolean isDirected​(java.util.Map<java.lang.String,​java.lang.Object> properties,
|
||||||
boolean defaultValue)</pre>
|
boolean defaultValue)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -397,13 +410,13 @@ extends java.lang.Object</pre>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a name="setDirected-java.util.Map-boolean-">
|
<a id="setDirected(java.util.Map,boolean)">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="blockListLast">
|
<ul class="blockListLast">
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>setDirected</h4>
|
<h4>setDirected</h4>
|
||||||
<pre>public static void setDirected​(java.util.Map<java.lang.String,java.lang.Object> properties,
|
<pre class="methodSignature">public static void setDirected​(java.util.Map<java.lang.String,​java.lang.Object> properties,
|
||||||
boolean isDirected)</pre>
|
boolean isDirected)</pre>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
@ -414,21 +427,25 @@ extends java.lang.Object</pre>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</section>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<footer role="contentinfo">
|
||||||
|
<nav role="navigation">
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
<div class="bottomNav"><a name="navbar.bottom">
|
<div class="bottomNav"><a id="navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
<a name="navbar.bottom.firstrow">
|
<a id="navbar.bottom.firstrow">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a>
|
</a>
|
||||||
<ul class="navList" title="Navigation">
|
<ul class="navList" title="Navigation">
|
||||||
<li><a href="../../../overview-summary.html">Overview</a></li>
|
<li><a href="../../../index.html">Overview</a></li>
|
||||||
<li><a href="package-summary.html">Package</a></li>
|
<li><a href="package-summary.html">Package</a></li>
|
||||||
<li class="navBarCell1Rev">Class</li>
|
<li class="navBarCell1Rev">Class</li>
|
||||||
<li><a href="class-use/mxGraphProperties.html">Use</a></li>
|
<li><a href="class-use/mxGraphProperties.html">Use</a></li>
|
||||||
|
@ -437,19 +454,11 @@ extends java.lang.Object</pre>
|
||||||
<li><a href="../../../index-all.html">Index</a></li>
|
<li><a href="../../../index-all.html">Index</a></li>
|
||||||
<li><a href="../../../help-doc.html">Help</a></li>
|
<li><a href="../../../help-doc.html">Help</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="aboutLanguage"><p><b>mxGraph 4.0.0</b></p></div>
|
<div class="aboutLanguage"><p><b>mxGraph 4.0.1</b></p></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="subNav">
|
<div class="subNav">
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphGenerator.html" title="class in com.mxgraph.analysis"><span class="typeNameLink">Prev Class</span></a></li>
|
|
||||||
<li><a href="../../../com/mxgraph/analysis/mxGraphProperties.GraphType.html" title="enum in com.mxgraph.analysis"><span class="typeNameLink">Next Class</span></a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList">
|
|
||||||
<li><a href="../../../index.html?com/mxgraph/analysis/mxGraphProperties.html" target="_top">Frames</a></li>
|
|
||||||
<li><a href="mxGraphProperties.html" target="_top">No Frames</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="navList" id="allclasses_navbar_bottom">
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
|
<li><a href="../../../allclasses.html">All Classes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
|
@ -481,11 +490,13 @@ extends java.lang.Object</pre>
|
||||||
<li><a href="#method.detail">Method</a></li>
|
<li><a href="#method.detail">Method</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<a name="skip.navbar.bottom">
|
<a id="skip.navbar.bottom">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a></div>
|
</a></div>
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</nav>
|
||||||
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
<p class="legalCopy"><small><font size=1>Copyright (c) 2010-2017 <a href="http://www.jgraph.com/"
|
||||||
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
target="_blank">Gaudenz Alder, JGraph Ltd</a>. All rights reserved.</font></small></p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue