3.9.1 release

development
Gaudenz Alder 2018-01-27 00:40:48 +00:00
parent 2343377352
commit dd54a4dc85
682 changed files with 4887 additions and 4477 deletions

View File

@ -1,3 +1,10 @@
27-JAN-2017: 3.9.1
- Adds resources.html example
- Adds mxCellEditor.isCancelEditingKeyEvent
- Adds mxClient.loadResources
- Adds mxGraph.getLinkForCell hook
19-JAN-2017: 3.9.0
- Add layout.isAncestor where child == parent returns false

101
Gruntfile.js Normal file
View File

@ -0,0 +1,101 @@
var path = require("path"),
fs = require("fs"),
parentFolderName = path.basename(path.resolve('..')),
mxClientContent,
deps;
module.exports = function (grunt) {
// To get the dependencies for the project, read the filenames by matching
// mxClient.include([...]) in mxClient.js. This is not perfect, but the list is
// required in mxClient.js for compatibility.
mxClientContent = fs.readFileSync(
path.join(process.cwd(), "./javascript/src/js/mxClient.js"),
"utf8"
);
deps = mxClientContent.match(/mxClient\.include\([^"']+["'](.*?)["']/gi).map(function (str) {
return "." + str.match(/mxClient\.include\([^"']+["'](.*?)["']/)[1];
});
deps = ["./js/mxClient.js"].concat(deps.slice(0));
grunt.initConfig({
copy: {
main: {
files: [{
expand: true,
cwd: "./javascript/src",
src: deps,
dest: "./javascript/dist"
}],
options: {
// After each module, add the object to the '__mxOutput' namespace
// E.g. __mxOutput.mxLog, etc.
process: function (content, srcpath) {
var afterContent = "",
moduleName = path.basename(srcpath, ".js");
afterContent += "\n__mxOutput." + path.basename(srcpath, ".js") +
" = typeof " + moduleName + " !== 'undefined' ? " + moduleName + " : undefined;\n";
return content + afterContent;
}
}
}
},
concat: {
dist: {
src: deps.map(function (dep) {
return path.join("./javascript/dist", dep);
}),
dest: './javascript/dist/build.js'
},
options: {
banner: "(function (root, factory) {\n" +
"if (typeof define === 'function' && define.amd) {\n" +
"define([], factory);\n" +
"} else if (typeof module === 'object' && module.exports) {\n" +
"module.exports = factory();\n" +
"} else {\n" +
"root.mxgraph = factory();\n" +
"}\n" +
"}(this, function () {\n" +
"return function (opts) {\n" +
// Opts will be passed into this function, expand them out as if
// they were globals so they can get picked up by the logic in
// mxClient.js.
"for (var name in opts) { this[name] = opts[name]; }\n" +
"var __mxOutput = {};\n",
footer: "return __mxOutput;\n" +
"};\n" +
"}));"
}
},
webpack: {
examples: {
entry: "./javascript/examples/webpack/src/anchors.js",
output: {
path: path.resolve(process.cwd(), "./javascript/examples/webpack/dist"),
filename: "anchors.js"
}
}
},
watch: {
javascripts: {
files: "javascript/src/**/*.js",
tasks: ["umdify"],
options: {
interrupt: true
}
}
},
});
require(parentFolderName === "node_modules" ? "load-grunt-parent-tasks" : "load-grunt-tasks")(grunt);
grunt.registerTask("default", [
"copy",
"concat",
"webpack"
]);
grunt.registerTask("build", [
"default"
]);
};

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

View File

@ -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>$#! &middot; 0-9 &middot; <a href="Functions.html#A">A</a> &middot; <a href="Functions2.html#B">B</a> &middot; <a href="Functions3.html#C">C</a> &middot; <a href="Functions4.html#D">D</a> &middot; <a href="Functions5.html#E">E</a> &middot; <a href="Functions6.html#F">F</a> &middot; <a href="Functions7.html#G">G</a> &middot; <a href="Functions8.html#H">H</a> &middot; <a href="Functions9.html#I">I</a> &middot; <a href="Functions10.html#J">J</a> &middot; <a href="Functions10.html#K">K</a> &middot; <a href="Functions10.html#L">L</a> &middot; <a href="Functions11.html#M">M</a> &middot; <a href="#N">N</a> &middot; <a href="#O">O</a> &middot; <a href="Functions13.html#P">P</a> &middot; <a href="Functions14.html#Q">Q</a> &middot; <a href="Functions15.html#R">R</a> &middot; <a href="Functions16.html#S">S</a> &middot; <a href="Functions17.html#T">T</a> &middot; <a href="Functions18.html#U">U</a> &middot; <a href="Functions19.html#V">V</a> &middot; <a href="Functions19.html#W">W</a> &middot; X &middot; Y &middot; <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>&nbsp;</td><td class=IEntry><a href="../files/util/mxUndoableEdit-js.html#mxUndoableEdit.notify" id=link1521 onMouseOver="ShowTip(event, 'tt1521', 'link1521')" onMouseOut="HideTip('tt1521')" 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>&nbsp;</td><td class=IEntry><a href="../files/layout/mxCompactTreeLayout-js.html#mxCompactTreeLayout.offset" id=link1522 onMouseOver="ShowTip(event, 'tt1522', 'link1522')" onMouseOut="HideTip('tt1522')" class=ISymbol>offset</a>, <span class=IParent>mxCompactTreeLayout</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/io/mxRootChangeCodec-js.html#mxRootChangeCodec.onEncode" id=link1523 onMouseOver="ShowTip(event, 'tt1523', 'link1523')" onMouseOut="HideTip('tt1523')" class=ISymbol>onEncode</a>, <span class=IParent>mxRootChangeCodec</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>onInit</span><div class=ISubIndex><a href="../files/model/mxCell-js.html#mxCell.onInit" id=link1524 onMouseOver="ShowTip(event, 'tt1524', 'link1524')" onMouseOut="HideTip('tt1524')" class=IParent>mxCell</a><a href="../files/editor/mxEditor-js.html#mxEditor.onInit" id=link1525 onMouseOver="ShowTip(event, 'tt1525', 'link1525')" onMouseOut="HideTip('tt1525')" class=IParent>mxEditor</a></div></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>open</span><div class=ISubIndex><a href="../files/editor/mxEditor-js.html#mxEditor.open" id=link1526 onMouseOver="ShowTip(event, 'tt1526', 'link1526')" onMouseOut="HideTip('tt1526')" class=IParent>mxEditor</a><a href="../files/view/mxPrintPreview-js.html#mxPrintPreview.open" id=link1527 onMouseOver="ShowTip(event, 'tt1527', 'link1527')" onMouseOut="HideTip('tt1527')" class=IParent>mxPrintPreview</a></div></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.orderCells" id=link1528 onMouseOver="ShowTip(event, 'tt1528', 'link1528')" onMouseOut="HideTip('tt1528')" class=ISymbol>orderCells</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxEdgeStyle-js.html#mxEdgeStyle.OrthConnector" id=link1529 onMouseOver="ShowTip(event, 'tt1529', 'link1529')" onMouseOut="HideTip('tt1529')" class=ISymbol>OrthConnector</a>, <span class=IParent>mxEdgeStyle</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxOutline-js.html#mxOutline.outline" id=link1530 onMouseOver="ShowTip(event, 'tt1530', 'link1530')" onMouseOut="HideTip('tt1530')" class=ISymbol>outline</a>, <span class=IParent>mxOutline</span></td></tr></table>
<div id=Index><div class=IPageTitle>Function Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="Functions.html#A">A</a> &middot; <a href="Functions2.html#B">B</a> &middot; <a href="Functions3.html#C">C</a> &middot; <a href="Functions4.html#D">D</a> &middot; <a href="Functions5.html#E">E</a> &middot; <a href="Functions6.html#F">F</a> &middot; <a href="Functions7.html#G">G</a> &middot; <a href="Functions8.html#H">H</a> &middot; <a href="Functions9.html#I">I</a> &middot; <a href="Functions10.html#J">J</a> &middot; <a href="Functions10.html#K">K</a> &middot; <a href="Functions10.html#L">L</a> &middot; <a href="Functions11.html#M">M</a> &middot; <a href="#N">N</a> &middot; <a href="#O">O</a> &middot; <a href="Functions13.html#P">P</a> &middot; <a href="Functions14.html#Q">Q</a> &middot; <a href="Functions15.html#R">R</a> &middot; <a href="Functions16.html#S">S</a> &middot; <a href="Functions17.html#T">T</a> &middot; <a href="Functions18.html#U">U</a> &middot; <a href="Functions19.html#V">V</a> &middot; <a href="Functions19.html#W">W</a> &middot; X &middot; Y &middot; <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>&nbsp;</td><td class=IEntry><a href="../files/util/mxUndoableEdit-js.html#mxUndoableEdit.notify" id=link1524 onMouseOver="ShowTip(event, 'tt1524', 'link1524')" onMouseOut="HideTip('tt1524')" 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>&nbsp;</td><td class=IEntry><a href="../files/layout/mxCompactTreeLayout-js.html#mxCompactTreeLayout.offset" id=link1525 onMouseOver="ShowTip(event, 'tt1525', 'link1525')" onMouseOut="HideTip('tt1525')" class=ISymbol>offset</a>, <span class=IParent>mxCompactTreeLayout</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/io/mxRootChangeCodec-js.html#mxRootChangeCodec.onEncode" id=link1526 onMouseOver="ShowTip(event, 'tt1526', 'link1526')" onMouseOut="HideTip('tt1526')" class=ISymbol>onEncode</a>, <span class=IParent>mxRootChangeCodec</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>onInit</span><div class=ISubIndex><a href="../files/model/mxCell-js.html#mxCell.onInit" id=link1527 onMouseOver="ShowTip(event, 'tt1527', 'link1527')" onMouseOut="HideTip('tt1527')" class=IParent>mxCell</a><a href="../files/editor/mxEditor-js.html#mxEditor.onInit" id=link1528 onMouseOver="ShowTip(event, 'tt1528', 'link1528')" onMouseOut="HideTip('tt1528')" class=IParent>mxEditor</a></div></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>open</span><div class=ISubIndex><a href="../files/editor/mxEditor-js.html#mxEditor.open" id=link1529 onMouseOver="ShowTip(event, 'tt1529', 'link1529')" onMouseOut="HideTip('tt1529')" class=IParent>mxEditor</a><a href="../files/view/mxPrintPreview-js.html#mxPrintPreview.open" id=link1530 onMouseOver="ShowTip(event, 'tt1530', 'link1530')" onMouseOut="HideTip('tt1530')" class=IParent>mxPrintPreview</a></div></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.orderCells" id=link1531 onMouseOver="ShowTip(event, 'tt1531', 'link1531')" onMouseOut="HideTip('tt1531')" class=ISymbol>orderCells</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxEdgeStyle-js.html#mxEdgeStyle.OrthConnector" id=link1532 onMouseOver="ShowTip(event, 'tt1532', 'link1532')" onMouseOut="HideTip('tt1532')" class=ISymbol>OrthConnector</a>, <span class=IParent>mxEdgeStyle</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxOutline-js.html#mxOutline.outline" id=link1533 onMouseOver="ShowTip(event, 'tt1533', 'link1533')" onMouseOut="HideTip('tt1533')" class=ISymbol>outline</a>, <span class=IParent>mxOutline</span></td></tr></table>
<!--START_ND_TOOLTIPS-->
<div class=CToolTip id="tt1521"><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="tt1524"><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-->
<div class=CToolTip id="tt1522"><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="tt1523"><div class=CFunction>Encodes the child recursively.</div></div><div class=CToolTip id="tt1524"><div class=CFunction>Called from within the constructor.</div></div><div class=CToolTip id="tt1525"><div class=CFunction>Called from within the constructor. </div></div><div class=CToolTip id="tt1526"><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="tt1527"><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="tt1528"><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="tt1529"><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="tt1530"><div class=CFunction>Reference to the mxGraph that renders the outline.</div></div><!--END_ND_TOOLTIPS-->
<div class=CToolTip id="tt1525"><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="tt1526"><div class=CFunction>Encodes the child recursively.</div></div><div class=CToolTip id="tt1527"><div class=CFunction>Called from within the constructor.</div></div><div class=CToolTip id="tt1528"><div class=CFunction>Called from within the constructor. </div></div><div class=CToolTip id="tt1529"><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="tt1530"><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="tt1531"><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="tt1532"><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="tt1533"><div class=CFunction>Reference to the mxGraph that renders the outline.</div></div><!--END_ND_TOOLTIPS-->
</div><!--Index-->

File diff suppressed because one or more lines are too long

View File

@ -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>$#! &middot; 0-9 &middot; <a href="Functions.html#A">A</a> &middot; <a href="Functions2.html#B">B</a> &middot; <a href="Functions3.html#C">C</a> &middot; <a href="Functions4.html#D">D</a> &middot; <a href="Functions5.html#E">E</a> &middot; <a href="Functions6.html#F">F</a> &middot; <a href="Functions7.html#G">G</a> &middot; <a href="Functions8.html#H">H</a> &middot; <a href="Functions9.html#I">I</a> &middot; <a href="Functions10.html#J">J</a> &middot; <a href="Functions10.html#K">K</a> &middot; <a href="Functions10.html#L">L</a> &middot; <a href="Functions11.html#M">M</a> &middot; <a href="Functions12.html#N">N</a> &middot; <a href="Functions12.html#O">O</a> &middot; <a href="Functions13.html#P">P</a> &middot; <a href="#Q">Q</a> &middot; <a href="Functions15.html#R">R</a> &middot; <a href="Functions16.html#S">S</a> &middot; <a href="Functions17.html#T">T</a> &middot; <a href="Functions18.html#U">U</a> &middot; <a href="Functions19.html#V">V</a> &middot; <a href="Functions19.html#W">W</a> &middot; X &middot; Y &middot; <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>&nbsp;</td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link1599 onMouseOver="ShowTip(event, 'tt1599', 'link1599')" onMouseOut="HideTip('tt1599')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link1600 onMouseOver="ShowTip(event, 'tt1600', 'link1600')" onMouseOut="HideTip('tt1600')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link1601 onMouseOver="ShowTip(event, 'tt1601', 'link1601')" onMouseOut="HideTip('tt1601')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
<div id=Index><div class=IPageTitle>Function Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="Functions.html#A">A</a> &middot; <a href="Functions2.html#B">B</a> &middot; <a href="Functions3.html#C">C</a> &middot; <a href="Functions4.html#D">D</a> &middot; <a href="Functions5.html#E">E</a> &middot; <a href="Functions6.html#F">F</a> &middot; <a href="Functions7.html#G">G</a> &middot; <a href="Functions8.html#H">H</a> &middot; <a href="Functions9.html#I">I</a> &middot; <a href="Functions10.html#J">J</a> &middot; <a href="Functions10.html#K">K</a> &middot; <a href="Functions10.html#L">L</a> &middot; <a href="Functions11.html#M">M</a> &middot; <a href="Functions12.html#N">N</a> &middot; <a href="Functions12.html#O">O</a> &middot; <a href="Functions13.html#P">P</a> &middot; <a href="#Q">Q</a> &middot; <a href="Functions15.html#R">R</a> &middot; <a href="Functions16.html#S">S</a> &middot; <a href="Functions17.html#T">T</a> &middot; <a href="Functions18.html#U">U</a> &middot; <a href="Functions19.html#V">V</a> &middot; <a href="Functions19.html#W">W</a> &middot; X &middot; Y &middot; <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>&nbsp;</td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link1602 onMouseOver="ShowTip(event, 'tt1602', 'link1602')" onMouseOut="HideTip('tt1602')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link1603 onMouseOver="ShowTip(event, 'tt1603', 'link1603')" onMouseOut="HideTip('tt1603')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link1604 onMouseOver="ShowTip(event, 'tt1604', 'link1604')" onMouseOut="HideTip('tt1604')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
<!--START_ND_TOOLTIPS-->
<div class=CToolTip id="tt1599"><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="tt1600"><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="tt1601"><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="tt1602"><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="tt1603"><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="tt1604"><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-->

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

View File

@ -11,13 +11,13 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="General.html#A">A</a> &middot; <a href="General2.html#B">B</a> &middot; <a href="General3.html#C">C</a> &middot; <a href="General4.html#D">D</a> &middot; <a href="General5.html#E">E</a> &middot; <a href="General6.html#F">F</a> &middot; <a href="General7.html#G">G</a> &middot; <a href="General8.html#H">H</a> &middot; <a href="General9.html#I">I</a> &middot; <a href="#J">J</a> &middot; <a href="#K">K</a> &middot; <a href="General11.html#L">L</a> &middot; <a href="General12.html#M">M</a> &middot; <a href="General13.html#N">N</a> &middot; <a href="General13.html#O">O</a> &middot; <a href="General14.html#P">P</a> &middot; <a href="General15.html#Q">Q</a> &middot; <a href="General16.html#R">R</a> &middot; <a href="General17.html#S">S</a> &middot; <a href="General18.html#T">T</a> &middot; <a href="General19.html#U">U</a> &middot; <a href="General20.html#V">V</a> &middot; <a href="General21.html#W">W</a> &middot; <a href="General21.html#X">X</a> &middot; <a href="General21.html#Y">Y</a> &middot; <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>&nbsp;</td><td class=IEntry><a href="../files/layout/hierarchical/stage/mxCoordinateAssignment-js.html#mxCoordinateAssignment.jettyPositions" id=link1932 onMouseOver="ShowTip(event, 'tt1932', 'link1932')" onMouseOut="HideTip('tt1932')" class=ISymbol>jettyPositions</a>, <span class=IParent>mxCoordinateAssignment</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/layout/mxCompactTreeLayout-js.html#mxCompactTreeLayout.join" id=link1933 onMouseOver="ShowTip(event, 'tt1933', 'link1933')" onMouseOut="HideTip('tt1933')" 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>&nbsp;</td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.keepEdgesInBackground" id=link1934 onMouseOver="ShowTip(event, 'tt1934', 'link1934')" onMouseOut="HideTip('tt1934')" class=ISymbol>keepEdgesInBackground</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.keepEdgesInForeground" id=link1935 onMouseOver="ShowTip(event, 'tt1935', 'link1935')" onMouseOut="HideTip('tt1935')" class=ISymbol>keepEdgesInForeground</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/layout/mxStackLayout-js.html#mxStackLayout.keepFirstLocation" id=link1936 onMouseOver="ShowTip(event, 'tt1936', 'link1936')" onMouseOut="HideTip('tt1936')" class=ISymbol>keepFirstLocation</a>, <span class=IParent>mxStackLayout</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/handler/mxCellHighlight-js.html#mxCellHighlight.keepOnTop" id=link1937 onMouseOver="ShowTip(event, 'tt1937', 'link1937')" onMouseOut="HideTip('tt1937')" class=ISymbol>keepOnTop</a>, <span class=IParent>mxCellHighlight</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.keepSelectionVisibleOnZoom" id=link1938 onMouseOver="ShowTip(event, 'tt1938', 'link1938')" onMouseOut="HideTip('tt1938')" class=ISymbol>keepSelectionVisibleOnZoom</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/handler/mxKeyHandler-js.html#mxKeyHandler.keyDown" id=link1939 onMouseOver="ShowTip(event, 'tt1939', 'link1939')" onMouseOut="HideTip('tt1939')" class=ISymbol>keyDown</a>, <span class=IParent>mxKeyHandler</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/editor/mxEditor-js.html#mxEditor.keyHandler" id=link1940 onMouseOver="ShowTip(event, 'tt1940', 'link1940')" onMouseOut="HideTip('tt1940')" class=ISymbol>keyHandler</a>, <span class=IParent>mxEditor</span></td></tr></table>
<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="General.html#A">A</a> &middot; <a href="General2.html#B">B</a> &middot; <a href="General3.html#C">C</a> &middot; <a href="General4.html#D">D</a> &middot; <a href="General5.html#E">E</a> &middot; <a href="General6.html#F">F</a> &middot; <a href="General7.html#G">G</a> &middot; <a href="General8.html#H">H</a> &middot; <a href="General9.html#I">I</a> &middot; <a href="#J">J</a> &middot; <a href="#K">K</a> &middot; <a href="General11.html#L">L</a> &middot; <a href="General12.html#M">M</a> &middot; <a href="General13.html#N">N</a> &middot; <a href="General13.html#O">O</a> &middot; <a href="General14.html#P">P</a> &middot; <a href="General15.html#Q">Q</a> &middot; <a href="General16.html#R">R</a> &middot; <a href="General17.html#S">S</a> &middot; <a href="General18.html#T">T</a> &middot; <a href="General19.html#U">U</a> &middot; <a href="General20.html#V">V</a> &middot; <a href="General21.html#W">W</a> &middot; <a href="General21.html#X">X</a> &middot; <a href="General21.html#Y">Y</a> &middot; <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>&nbsp;</td><td class=IEntry><a href="../files/layout/hierarchical/stage/mxCoordinateAssignment-js.html#mxCoordinateAssignment.jettyPositions" id=link1935 onMouseOver="ShowTip(event, 'tt1935', 'link1935')" onMouseOut="HideTip('tt1935')" class=ISymbol>jettyPositions</a>, <span class=IParent>mxCoordinateAssignment</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/layout/mxCompactTreeLayout-js.html#mxCompactTreeLayout.join" id=link1936 onMouseOver="ShowTip(event, 'tt1936', 'link1936')" onMouseOut="HideTip('tt1936')" 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>&nbsp;</td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.keepEdgesInBackground" id=link1937 onMouseOver="ShowTip(event, 'tt1937', 'link1937')" onMouseOut="HideTip('tt1937')" class=ISymbol>keepEdgesInBackground</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.keepEdgesInForeground" id=link1938 onMouseOver="ShowTip(event, 'tt1938', 'link1938')" onMouseOut="HideTip('tt1938')" class=ISymbol>keepEdgesInForeground</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/layout/mxStackLayout-js.html#mxStackLayout.keepFirstLocation" id=link1939 onMouseOver="ShowTip(event, 'tt1939', 'link1939')" onMouseOut="HideTip('tt1939')" class=ISymbol>keepFirstLocation</a>, <span class=IParent>mxStackLayout</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/handler/mxCellHighlight-js.html#mxCellHighlight.keepOnTop" id=link1940 onMouseOver="ShowTip(event, 'tt1940', 'link1940')" onMouseOut="HideTip('tt1940')" class=ISymbol>keepOnTop</a>, <span class=IParent>mxCellHighlight</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.keepSelectionVisibleOnZoom" id=link1941 onMouseOver="ShowTip(event, 'tt1941', 'link1941')" onMouseOut="HideTip('tt1941')" class=ISymbol>keepSelectionVisibleOnZoom</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/handler/mxKeyHandler-js.html#mxKeyHandler.keyDown" id=link1942 onMouseOver="ShowTip(event, 'tt1942', 'link1942')" onMouseOut="HideTip('tt1942')" class=ISymbol>keyDown</a>, <span class=IParent>mxKeyHandler</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/editor/mxEditor-js.html#mxEditor.keyHandler" id=link1943 onMouseOver="ShowTip(event, 'tt1943', 'link1943')" onMouseOut="HideTip('tt1943')" class=ISymbol>keyHandler</a>, <span class=IParent>mxEditor</span></td></tr></table>
<!--START_ND_TOOLTIPS-->
<div class=CToolTip id="tt1932"><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="tt1933"><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="tt1935"><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="tt1936"><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-->
<div class=CToolTip id="tt1934"><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="tt1935"><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="tt1936"><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="tt1937"><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="tt1938"><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="tt1939"><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="tt1940"><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="tt1937"><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="tt1938"><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="tt1939"><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="tt1940"><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="tt1941"><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="tt1942"><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="tt1943"><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-->

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

View File

@ -11,9 +11,9 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="General.html#A">A</a> &middot; <a href="General2.html#B">B</a> &middot; <a href="General3.html#C">C</a> &middot; <a href="General4.html#D">D</a> &middot; <a href="General5.html#E">E</a> &middot; <a href="General6.html#F">F</a> &middot; <a href="General7.html#G">G</a> &middot; <a href="General8.html#H">H</a> &middot; <a href="General9.html#I">I</a> &middot; <a href="General10.html#J">J</a> &middot; <a href="General10.html#K">K</a> &middot; <a href="General11.html#L">L</a> &middot; <a href="General12.html#M">M</a> &middot; <a href="General13.html#N">N</a> &middot; <a href="General13.html#O">O</a> &middot; <a href="General14.html#P">P</a> &middot; <a href="#Q">Q</a> &middot; <a href="General16.html#R">R</a> &middot; <a href="General17.html#S">S</a> &middot; <a href="General18.html#T">T</a> &middot; <a href="General19.html#U">U</a> &middot; <a href="General20.html#V">V</a> &middot; <a href="General21.html#W">W</a> &middot; <a href="General21.html#X">X</a> &middot; <a href="General21.html#Y">Y</a> &middot; <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>&nbsp;</td><td class=IEntry><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadOp" id=link2666 onMouseOver="ShowTip(event, 'tt2666', 'link2666')" onMouseOut="HideTip('tt2666')" class=ISymbol>quadOp</a>, <span class=IParent>mxAbstractCanvas2D</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link2667 onMouseOver="ShowTip(event, 'tt2667', 'link2667')" onMouseOut="HideTip('tt2667')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link2668 onMouseOver="ShowTip(event, 'tt2668', 'link2668')" onMouseOut="HideTip('tt2668')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2669 onMouseOver="ShowTip(event, 'tt2669', 'link2669')" onMouseOut="HideTip('tt2669')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="General.html#A">A</a> &middot; <a href="General2.html#B">B</a> &middot; <a href="General3.html#C">C</a> &middot; <a href="General4.html#D">D</a> &middot; <a href="General5.html#E">E</a> &middot; <a href="General6.html#F">F</a> &middot; <a href="General7.html#G">G</a> &middot; <a href="General8.html#H">H</a> &middot; <a href="General9.html#I">I</a> &middot; <a href="General10.html#J">J</a> &middot; <a href="General10.html#K">K</a> &middot; <a href="General11.html#L">L</a> &middot; <a href="General12.html#M">M</a> &middot; <a href="General13.html#N">N</a> &middot; <a href="General13.html#O">O</a> &middot; <a href="General14.html#P">P</a> &middot; <a href="#Q">Q</a> &middot; <a href="General16.html#R">R</a> &middot; <a href="General17.html#S">S</a> &middot; <a href="General18.html#T">T</a> &middot; <a href="General19.html#U">U</a> &middot; <a href="General20.html#V">V</a> &middot; <a href="General21.html#W">W</a> &middot; <a href="General21.html#X">X</a> &middot; <a href="General21.html#Y">Y</a> &middot; <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>&nbsp;</td><td class=IEntry><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadOp" id=link2670 onMouseOver="ShowTip(event, 'tt2670', 'link2670')" onMouseOut="HideTip('tt2670')" class=ISymbol>quadOp</a>, <span class=IParent>mxAbstractCanvas2D</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link2671 onMouseOver="ShowTip(event, 'tt2671', 'link2671')" onMouseOut="HideTip('tt2671')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link2672 onMouseOver="ShowTip(event, 'tt2672', 'link2672')" onMouseOut="HideTip('tt2672')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2673 onMouseOver="ShowTip(event, 'tt2673', 'link2673')" onMouseOut="HideTip('tt2673')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
<!--START_ND_TOOLTIPS-->
<div class=CToolTip id="tt2666"><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="tt2667"><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="tt2668"><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="tt2669"><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="tt2670"><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="tt2671"><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="tt2672"><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="tt2673"><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-->

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

View File

@ -1,64 +1,4 @@
var indexSectionsWithContent = {
"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,
"X": false,
"Y": false,
"Z": true
},
"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
},
"Events": {
"Symbols": false,
"Numbers": false,
@ -119,6 +59,66 @@ var indexSectionsWithContent = {
"Y": false,
"Z": false
},
"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
},
"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,
"X": false,
"Y": false,
"Z": true
},
"Variables": {
"Symbols": false,
"Numbers": false,
@ -149,35 +149,35 @@ var indexSectionsWithContent = {
"Y": true,
"Z": true
},
"General": {
"Cookies": {
"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,
"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": 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
"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
},
"Classes": {
"Symbols": 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

File diff suppressed because one or more lines are too long

View File

@ -9,7 +9,7 @@
<h1>mxGraph User Manual &ndash; JavaScript Client</h1>
<br/>
<br/>
<p>mxGraph Version 3.9.0 &ndash; 19. January 2018</p>
<p>mxGraph Version 3.9.1 &ndash; 27. January 2018</p>
<p>Copyright (c) JGraph Ltd 2006-2017</p>
<br/>
<p>All rights reserved. No part of this publication may be

View File

@ -9,7 +9,7 @@
<h1>JGraphX (JGraph 6) User Manual</h1>
<br/>
<br/>
<p>JGraphX Version 3.9.0 &ndash; 19. January 2018</p>
<p>JGraphX Version 3.9.1 &ndash; 27. January 2018</p>
<p>Copyright (c) JGraph Ltd 2006-2017</p>
<br/>
<p>All rights reserved. No part of this publication may be

View File

@ -29,6 +29,66 @@ var indexSectionsWithContent = {
"Y": false,
"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
},
"General": {
"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": {
"Symbols": false,
"Numbers": false,
@ -89,36 +149,6 @@ var indexSectionsWithContent = {
"Y": true,
"Z": false
},
"General": {
"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
},
"Classes": {
"Symbols": false,
"Numbers": false,
@ -148,35 +178,5 @@ var indexSectionsWithContent = {
"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": 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
}
}

View File

@ -277,8 +277,8 @@ Public Member Functions</h2></td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
Public Attributes</h2></td></tr>
<tr class="memitem:a12b4a8dcf881951589ccca36c7ebfccb"><td class="memItemLeft" align="right" valign="top">const String&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">VERSION</a> = &quot;3.9.0&quot;</td></tr>
<tr class="memdesc:a12b4a8dcf881951589ccca36c7ebfccb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Holds the version number of this release. Current version is 3.9.0. <a href="#a12b4a8dcf881951589ccca36c7ebfccb">More...</a><br /></td></tr>
<tr class="memitem:a12b4a8dcf881951589ccca36c7ebfccb"><td class="memItemLeft" align="right" valign="top">const String&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">VERSION</a> = &quot;3.9.1&quot;</td></tr>
<tr class="memdesc:a12b4a8dcf881951589ccca36c7ebfccb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Holds the version number of this release. Current version is 3.9.1. <a href="#a12b4a8dcf881951589ccca36c7ebfccb">More...</a><br /></td></tr>
<tr class="separator:a12b4a8dcf881951589ccca36c7ebfccb"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<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">
<table class="memname">
<tr>
<td class="memname">const String com.mxgraph.mxGraph.VERSION = &quot;3.9.0&quot;</td>
<td class="memname">const String com.mxgraph.mxGraph.VERSION = &quot;3.9.1&quot;</td>
</tr>
</table>
</div><div class="memdoc">
<p>Holds the version number of this release. Current version is 3.9.0. </p>
<p>Holds the version number of this release. Current version is 3.9.1. </p>
</div>
</div>

View File

@ -15,9 +15,9 @@ namespace com.mxgraph
{
/// <summary>
/// Holds the version number of this release. Current version
/// is 3.9.0.
/// is 3.9.1.
/// </summary>
public const String VERSION = "3.9.0";
public const String VERSION = "3.9.1";
/// <summary>
/// Holds the model that contains the cells to be displayed.

View File

@ -1,6 +1,6 @@
<html>
<head>
<title>mxGraph 3.9.0</title>
<title>mxGraph 3.9.1</title>
<link rel="stylesheet" href="docs/css/manual-styles.css">
<link rel="stylesheet" href="docs/css/manual-colors.css">
</head>
@ -9,12 +9,12 @@
<center>
<img src="docs/images/mxgraph_logo.gif" alt="mxGraph"/><br/>
<font size="-1"><i>
Version 3.9.0 &ndash; 19. January 2018
Version 3.9.1 &ndash; 27. January 2018
</i></font>
</center>
<br/>
<br/>
<h1>mxGraph 3.9.0</h1>
<h1>mxGraph 3.9.1</h1>
<p>
mxGraph is a JavaScript diagramming library that enables interactive graph
and charting applications to be quickly created that run natively in any

View File

@ -7,7 +7,7 @@
<project name="mxgraph" default="all" basedir=".">
<property name="product.name" value="mxGraph"/>
<property name="product.version" value="3.9.0"/>
<property name="product.version" value="3.9.1"/>
<property name="all.jar" value="mxgraph-all.jar"/>
<property name="core.jar" value="mxgraph-core.jar"/>
<property name="swing.jar" value="mxgraph-swing.jar"/>

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:45 UTC 2018 -->
<title>All Classes (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:59 UTC 2018 -->
<title>All Classes (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:45 UTC 2018 -->
<title>All Classes (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:59 UTC 2018 -->
<title>All Classes (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:26 UTC 2018 -->
<title>StructuralException (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:44 UTC 2018 -->
<title>StructuralException (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="StructuralException (mxGraph 3.9.0 API Specification)";
parent.document.title="StructuralException (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -215,7 +215,7 @@ extends java.lang.Exception</pre>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -194,7 +194,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -472,7 +472,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -92,7 +92,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -92,7 +92,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -227,7 +227,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -160,7 +160,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -165,7 +165,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -161,7 +161,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -144,7 +144,7 @@ the order they are declared.</div>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -92,7 +92,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -92,7 +92,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -264,7 +264,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -92,7 +92,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -204,7 +204,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 3.9.0 API Specification)";
parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -40,7 +40,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -146,7 +146,7 @@
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:24 UTC 2018 -->
<title>mxAnalysisGraph (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:43 UTC 2018 -->
<title>mxAnalysisGraph (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxAnalysisGraph (mxGraph 3.9.0 API Specification)";
parent.document.title="mxAnalysisGraph (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -583,7 +583,7 @@ extends java.lang.Object</pre>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:24 UTC 2018 -->
<title>mxConstantCostFunction (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:43 UTC 2018 -->
<title>mxConstantCostFunction (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxConstantCostFunction (mxGraph 3.9.0 API Specification)";
parent.document.title="mxConstantCostFunction (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -282,7 +282,7 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:24 UTC 2018 -->
<title>mxDistanceCostFunction (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:43 UTC 2018 -->
<title>mxDistanceCostFunction (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxDistanceCostFunction (mxGraph 3.9.0 API Specification)";
parent.document.title="mxDistanceCostFunction (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -243,7 +243,7 @@ implements <a href="../../../com/mxgraph/analysis/mxICostFunction.html" title="i
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:25 UTC 2018 -->
<title>mxFibonacciHeap.Node (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:43 UTC 2018 -->
<title>mxFibonacciHeap.Node (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxFibonacciHeap.Node (mxGraph 3.9.0 API Specification)";
parent.document.title="mxFibonacciHeap.Node (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -283,7 +283,7 @@ extends java.lang.Object</pre>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:25 UTC 2018 -->
<title>mxFibonacciHeap (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:43 UTC 2018 -->
<title>mxFibonacciHeap (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxFibonacciHeap (mxGraph 3.9.0 API Specification)";
parent.document.title="mxFibonacciHeap (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -638,7 +638,7 @@ extends java.lang.Object</pre>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:25 UTC 2018 -->
<title>mxGraphAnalysis (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:43 UTC 2018 -->
<title>mxGraphAnalysis (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxGraphAnalysis (mxGraph 3.9.0 API Specification)";
parent.document.title="mxGraphAnalysis (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -570,7 +570,7 @@ extends java.lang.Object</pre>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:25 UTC 2018 -->
<title>mxGraphGenerator (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:43 UTC 2018 -->
<title>mxGraphGenerator (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxGraphGenerator (mxGraph 3.9.0 API Specification)";
parent.document.title="mxGraphGenerator (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -957,7 +957,7 @@ extends java.lang.Object</pre>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:25 UTC 2018 -->
<title>mxGraphProperties.GraphType (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:44 UTC 2018 -->
<title>mxGraphProperties.GraphType (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxGraphProperties.GraphType (mxGraph 3.9.0 API Specification)";
parent.document.title="mxGraphProperties.GraphType (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -706,7 +706,7 @@ not permitted.)</div>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:25 UTC 2018 -->
<title>mxGraphProperties (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:43 UTC 2018 -->
<title>mxGraphProperties (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxGraphProperties (mxGraph 3.9.0 API Specification)";
parent.document.title="mxGraphProperties (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -399,7 +399,7 @@ extends java.lang.Object</pre>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:25 UTC 2018 -->
<title>mxGraphStructure (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:44 UTC 2018 -->
<title>mxGraphStructure (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxGraphStructure (mxGraph 3.9.0 API Specification)";
parent.document.title="mxGraphStructure (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -760,7 +760,7 @@ extends java.lang.Object</pre>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:25 UTC 2018 -->
<title>mxICostFunction (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:44 UTC 2018 -->
<title>mxICostFunction (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxICostFunction (mxGraph 3.9.0 API Specification)";
parent.document.title="mxICostFunction (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -192,7 +192,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:26 UTC 2018 -->
<title>mxTraversal (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:44 UTC 2018 -->
<title>mxTraversal (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxTraversal (mxGraph 3.9.0 API Specification)";
parent.document.title="mxTraversal (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -425,7 +425,7 @@ extends java.lang.Object</pre>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:26 UTC 2018 -->
<title>mxUnionFind.Node (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:44 UTC 2018 -->
<title>mxUnionFind.Node (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxUnionFind.Node (mxGraph 3.9.0 API Specification)";
parent.document.title="mxUnionFind.Node (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -339,7 +339,7 @@ extends java.lang.Object</pre>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:26 UTC 2018 -->
<title>mxUnionFind (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:44 UTC 2018 -->
<title>mxUnionFind (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="mxUnionFind (mxGraph 3.9.0 API Specification)";
parent.document.title="mxUnionFind (mxGraph 3.9.1 API Specification)";
}
}
catch(err) {
@ -46,7 +46,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">
@ -369,7 +369,7 @@ extends java.lang.Object</pre>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><p><b>mxGraph 3.9.0</b></p></div>
<div class="aboutLanguage"><p><b>mxGraph 3.9.1</b></p></div>
</div>
<div class="subNav">
<ul class="navList">

View File

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Fri Jan 19 15:21:42 UTC 2018 -->
<title>com.mxgraph.analysis (mxGraph 3.9.0 API Specification)</title>
<meta name="date" content="2018-01-19">
<!-- Generated by javadoc (1.8.0_151) on Sat Jan 27 00:31:56 UTC 2018 -->
<title>com.mxgraph.analysis (mxGraph 3.9.1 API Specification)</title>
<meta name="date" content="2018-01-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>

Some files were not shown because too many files have changed in this diff Show More