diff --git a/ChangeLog b/ChangeLog index 5f96d2cda..f736efab4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +31-JAN-2014: 2.4.0.4 + +- Fixes repaint of mxCellHighlight if highlighted cell is deleted [JavaScript] +- Fixes in-place editor position for (vertical)LabelPosition style [JavaScript] +- Fixes repaint after drop in collapsed cell in mxGraph.processChange [JavaScript] +- Fixes swimlane label bounds for STYLE_DIRECTION [JavaScript] +- Adds mxSwimlane.getLabelBounds, used in mxCellRenderer.getLabelBounds [JavaScript] +- Passes vertical bounds into mxShape.getLabelBounds for vertical labels [JavaScript] + 22-JAN-2014: 2.4.0.3 - Adds vertex label offsets in mxCellEditor.resize [JavaScript] diff --git a/docs/js-api/files/mxClient-js.html b/docs/js-api/files/mxClient-js.html index e77c89a1b..542ed72f0 100644 --- a/docs/js-api/files/mxClient-js.html +++ b/docs/js-api/files/mxClient-js.html @@ -15,7 +15,7 @@ if (browserType) {document.write("
");if (browserV

Variables

-

VERSION

Contains the current version of the mxGraph library.  The strings that communicate versions of mxGraph use the following format.

versionMajor.versionMinor.buildNumber.revisionNumber

Current version is 2.4.0.3.

+

VERSION

Contains the current version of the mxGraph library.  The strings that communicate versions of mxGraph use the following format.

versionMajor.versionMinor.buildNumber.revisionNumber

Current version is 2.4.0.4.

IS_IE

IS_IE: navigator.userAgent.indexOf('MSIE') >

True if the current browser is Internet Explorer.

diff --git a/docs/js-api/files/shape/mxSwimlane-js.html b/docs/js-api/files/shape/mxSwimlane-js.html index 0fe1f0184..17ae9baff 100644 --- a/docs/js-api/files/shape/mxSwimlane-js.html +++ b/docs/js-api/files/shape/mxSwimlane-js.html @@ -11,11 +11,11 @@ if (browserType) {document.write("
");if (browserV -

mxSwimlane

Extends mxShape to implement a swimlane shape.  This shape is registered under mxConstants.SHAPE_SWIMLANE in mxCellRenderer.  Use the <mxConstants.STYLE_STYLE_STARTSIZE> to define the size of the title region, <mxConstants.STYLE_SWIMLANE_FILLCOLOR> for the content area fill, mxConstants.STYLE_SEPARATORCOLOR to draw an additional vertical separator and mxConstants.STYLE_SWIMLANE_LINE to hide the line between the title region and the content area.  The mxConstants.STYLE_HORIZONTAL affects the orientation of this shape, not only its label.

Summary
mxSwimlaneExtends mxShape to implement a swimlane shape.
Functions
mxSwimlaneConstructs a new swimlane shape.
Variables
imageSizeDefault imagewidth and imageheight if an image but no imagewidth and imageheight are defined in the style.
Functions
getGradientBoundsReturns the bounding box for the gradient box for this shape.
getRotationOverrides rotation to include the horizontal flag in the shape rotation.
getTextRotationRedirect the text rotation to the shape rotation to avoid adding the vertical text rotation twice.
isPaintBoundsInvertedOverrides bounds inversion to maintain the bounds if the shape is rotated via the horizontal flag.
getArcSizeReturns the arcsize for the swimlane.
paintVertexShapePaints the swimlane vertex shape.
paintSwimlanePaints the swimlane vertex shape.
paintRoundedSwimlanePaints the swimlane vertex shape.
paintSwimlanePaints the swimlane vertex shape.
getImageBoundsPaints the swimlane vertex shape.
+

mxSwimlane

Extends mxShape to implement a swimlane shape.  This shape is registered under mxConstants.SHAPE_SWIMLANE in mxCellRenderer.  Use the <mxConstants.STYLE_STYLE_STARTSIZE> to define the size of the title region, <mxConstants.STYLE_SWIMLANE_FILLCOLOR> for the content area fill, mxConstants.STYLE_SEPARATORCOLOR to draw an additional vertical separator and mxConstants.STYLE_SWIMLANE_LINE to hide the line between the title region and the content area.  The mxConstants.STYLE_HORIZONTAL affects the orientation of this shape, not only its label.

Summary
mxSwimlaneExtends mxShape to implement a swimlane shape.
Functions
mxSwimlaneConstructs a new swimlane shape.
Variables
imageSizeDefault imagewidth and imageheight if an image but no imagewidth and imageheight are defined in the style.
Functions
getGradientBoundsReturns the bounding box for the gradient box for this shape.
getGradientBoundsReturns the bounding box for the gradient box for this shape.
getArcSizeReturns the arcsize for the swimlane.
paintVertexShapePaints the swimlane vertex shape.
paintVertexShapePaints the swimlane vertex shape.
paintSwimlanePaints the swimlane vertex shape.
paintRoundedSwimlanePaints the swimlane vertex shape.
paintSwimlanePaints the swimlane vertex shape.
getImageBoundsPaints the swimlane vertex shape.

Functions

-

mxSwimlane

function mxSwimlane(bounds,
fill,
stroke,
strokewidth)

Constructs a new swimlane shape.

Parameters

boundsmxRectangle that defines the bounds.  This is stored in mxShape.bounds.
fillString that defines the fill color.  This is stored in <fill>.
strokeString that defines the stroke color.  This is stored in <stroke>.
strokewidthOptional integer that defines the stroke width.  Default is 1.  This is stored in <strokewidth>.
+

mxSwimlane

function mxSwimlane(bounds,
fill,
stroke,
strokewidth)

Constructs a new swimlane shape.

Parameters

boundsmxRectangle that defines the bounds.  This is stored in mxShape.bounds.
fillString that defines the fill color.  This is stored in <fill>.
strokeString that defines the stroke color.  This is stored in <stroke>.
strokewidthOptional integer that defines the stroke width.  Default is 1.  This is stored in <strokewidth>.

Variables

@@ -23,16 +23,14 @@ if (browserType) {document.write("
");if (browserV

Functions

+

getGradientBounds

Returns the bounding box for the gradient box for this shape.

+

getGradientBounds

mxSwimlane.prototype.getGradientBounds = function(c,
x,
y,
w,
h)

Returns the bounding box for the gradient box for this shape.

-

getRotation

mxSwimlane.prototype.getRotation = function()

Overrides rotation to include the horizontal flag in the shape rotation.

- -

getTextRotation

mxSwimlane.prototype.getTextRotation = function()

Redirect the text rotation to the shape rotation to avoid adding the vertical text rotation twice.

- -

isPaintBoundsInverted

mxSwimlane.prototype.isPaintBoundsInverted = function()

Overrides bounds inversion to maintain the bounds if the shape is rotated via the horizontal flag.

-

getArcSize

mxSwimlane.prototype.getArcSize = function(w,
h,
start)

Returns the arcsize for the swimlane.

+

paintVertexShape

Paints the swimlane vertex shape.

+

paintVertexShape

mxSwimlane.prototype.paintVertexShape = function(c,
x,
y,
w,
h)

Paints the swimlane vertex shape.

paintSwimlane

mxSwimlane.prototype.paintSwimlane = function(c,
x,
y,
w,
h,
start,
fill,
swimlaneLine)

Paints the swimlane vertex shape.

@@ -57,7 +55,7 @@ HideAllBut([9], 13);// -->
-
Base class for all shapes.
function mxSwimlane(bounds,
fill,
stroke,
strokewidth)
Constructs a new swimlane shape.
mxSwimlane.prototype.imageSize
Default imagewidth and imageheight if an image but no imagewidth and imageheight are defined in the style.
mxSwimlane.prototype.getGradientBounds = function(c,
x,
y,
w,
h)
Returns the bounding box for the gradient box for this shape.
mxSwimlane.prototype.getRotation = function()
Overrides rotation to include the horizontal flag in the shape rotation.
mxSwimlane.prototype.getTextRotation = function()
Redirect the text rotation to the shape rotation to avoid adding the vertical text rotation twice.
mxSwimlane.prototype.isPaintBoundsInverted = function()
Overrides bounds inversion to maintain the bounds if the shape is rotated via the horizontal flag.
mxSwimlane.prototype.getArcSize = function(w,
h,
start)
Returns the arcsize for the swimlane.
mxSwimlane.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Paints the swimlane vertex shape.
mxSwimlane.prototype.paintSwimlane = function(c,
x,
y,
w,
h,
start,
fill,
swimlaneLine)
Paints the swimlane vertex shape.
mxSwimlane.prototype.paintRoundedSwimlane = function(c,
x,
y,
w,
h,
start,
r,
fill,
swimlaneLine)
Paints the swimlane vertex shape.
mxSwimlane.prototype.getImageBounds = function(x,
y,
w,
h)
Paints the swimlane vertex shape.
Name under which mxSwimlane is registered in mxCellRenderer.
Renders cells into a document object model.
Defines the key for the separatorColor style.
Defines the key for the swimlaneLine style.
Defines the key for the horizontal style.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
mxShape.prototype.bounds
Holds the mxRectangle that specifies the bounds of this shape.
+
Base class for all shapes.
function mxSwimlane(bounds,
fill,
stroke,
strokewidth)
Constructs a new swimlane shape.
mxSwimlane.prototype.imageSize
Default imagewidth and imageheight if an image but no imagewidth and imageheight are defined in the style.
mxSwimlane.prototype.getGradientBounds = function(c,
x,
y,
w,
h)
Returns the bounding box for the gradient box for this shape.
mxSwimlane.prototype.getArcSize = function(w,
h,
start)
Returns the arcsize for the swimlane.
mxSwimlane.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Paints the swimlane vertex shape.
mxSwimlane.prototype.paintSwimlane = function(c,
x,
y,
w,
h,
start,
fill,
swimlaneLine)
Paints the swimlane vertex shape.
mxSwimlane.prototype.paintRoundedSwimlane = function(c,
x,
y,
w,
h,
start,
r,
fill,
swimlaneLine)
Paints the swimlane vertex shape.
mxSwimlane.prototype.getImageBounds = function(x,
y,
w,
h)
Paints the swimlane vertex shape.
Name under which mxSwimlane is registered in mxCellRenderer.
Renders cells into a document object model.
Defines the key for the separatorColor style.
Defines the key for the swimlaneLine style.
Defines the key for the horizontal style.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
mxShape.prototype.bounds
Holds the mxRectangle that specifies the bounds of this shape.
diff --git a/docs/js-api/index/Functions10.html b/docs/js-api/index/Functions10.html index cf0dafbcc..e6ea993bc 100644 --- a/docs/js-api/index/Functions10.html +++ b/docs/js-api/index/Functions10.html @@ -11,17 +11,17 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
J
 join, mxCompactTreeLayout
K
 keyDown, mxKeyHandler
L
 labelChanged, mxGraph
 layeringStage
 layout
 layoutCells, mxLayoutManager
 layoutLeaf, mxCompactTreeLayout
 leave, mxLog
 lineTo
 link
 linkAction, mxUtils
 linkInvoke, mxUtils
 load, mxUtils
 loadInto, mxUtils
 localEdgeProcessing
 lookup, mxCodec
 Loop, mxEdgeStyle
 ltrim, mxUtils
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
J
 join, mxCompactTreeLayout
K
 keyDown, mxKeyHandler
L
 labelChanged, mxGraph
 layeringStage
 layout
 layoutCells, mxLayoutManager
 layoutLeaf, mxCompactTreeLayout
 leave, mxLog
 lineTo
 link
 linkAction, mxUtils
 linkInvoke, mxUtils
 load, mxUtils
 loadInto, mxUtils
 localEdgeProcessing
 lookup, mxCodec
 Loop, mxEdgeStyle
 ltrim, mxUtils
-
mxCompactTreeLayout.prototype.join = function(node)
+
mxCompactTreeLayout.prototype.join = function(node)
-
mxKeyHandler.prototype.keyDown = function(evt)
Handles the event by invoking the function bound to the respective keystroke if mxGraph.isEnabled, isEnabled and isGraphEvent all return true for the given event and mxGraph.isEditing returns false.
+
mxKeyHandler.prototype.keyDown = function(evt)
Handles the event by invoking the function bound to the respective keystroke if mxGraph.isEnabled, isEnabled and isGraphEvent all return true for the given event and mxGraph.isEditing returns false.
-
mxGraph.prototype.labelChanged = function(cell,
value,
evt)
Sets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.
mxHierarchicalLayout.prototype.layeringStage = function()
Implements first stage of a Sugiyama layout.
mxSwimlaneLayout.prototype.layeringStage = function()
Implements first stage of a Sugiyama layout.
mxCompactTreeLayout.prototype.layout = function(node)
Starts the actual compact tree layout algorithm at the given node.
mxParallelEdgeLayout.prototype.layout = function(parallels)
Lays out the parallel edges in the given array.
mxLayoutManager.prototype.layoutCells = function(cells)
Executes all layouts which have been scheduled during the changes.
mxCompactTreeLayout.prototype.layoutLeaf = function(node)
leave: function(string,
t0)
Writes the specified string to the console if TRACE is true and computes the difference between the current time and t0 in milliseconds.
mxAbstractCanvas2D.prototype.lineTo = function(x,
y)
Draws a line to the given coordinates.
mxXmlCanvas2D.prototype.lineTo = function(x,
y)
Draws a line to the given coordinates.
link: function(rel,
href,
doc)
Adds a link node to the head of the document.
link: function(parent,
text,
funct,
pad)
Adds a hyperlink to the specified parent and invokes the given function when the link is clicked.
linkAction: function(parent,
text,
editor,
action,
pad)
Adds a hyperlink to the specified parent that invokes action on the specified editor.
linkInvoke: function(parent,
text,
editor,
functName,
arg,
pad)
Adds a hyperlink to the specified parent that invokes the specified function on the editor passing along the specified argument.
load: function(url)
Loads the specified URL synchronously and returns the mxXmlRequest.
loadInto: function(url,
doc,
onload)
Loads the specified URL asynchronously into the specified document, invoking onload after the document has been loaded.
mxCompactTreeLayout.prototype.localEdgeProcessing = function(node)
Moves the specified node and all of its children by the given amount.
mxCoordinateAssignment.prototype.localEdgeProcessing = function(model)
Separates the x position of edges as they connect to vertices
mxCodec.prototype.lookup = function(id)
Hook for subclassers to implement a custom lookup mechanism for cell IDs.
Loop: function (state,
source,
target,
points,
result)
Implements a self-reference, aka.
ltrim: function(str,
chars)
Strips all whitespaces from the beginning of the string.
+
mxGraph.prototype.labelChanged = function(cell,
value,
evt)
Sets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.
mxHierarchicalLayout.prototype.layeringStage = function()
Implements first stage of a Sugiyama layout.
mxSwimlaneLayout.prototype.layeringStage = function()
Implements first stage of a Sugiyama layout.
mxCompactTreeLayout.prototype.layout = function(node)
Starts the actual compact tree layout algorithm at the given node.
mxParallelEdgeLayout.prototype.layout = function(parallels)
Lays out the parallel edges in the given array.
mxLayoutManager.prototype.layoutCells = function(cells)
Executes all layouts which have been scheduled during the changes.
mxCompactTreeLayout.prototype.layoutLeaf = function(node)
leave: function(string,
t0)
Writes the specified string to the console if TRACE is true and computes the difference between the current time and t0 in milliseconds.
mxAbstractCanvas2D.prototype.lineTo = function(x,
y)
Draws a line to the given coordinates.
mxXmlCanvas2D.prototype.lineTo = function(x,
y)
Draws a line to the given coordinates.
link: function(rel,
href,
doc)
Adds a link node to the head of the document.
link: function(parent,
text,
funct,
pad)
Adds a hyperlink to the specified parent and invokes the given function when the link is clicked.
linkAction: function(parent,
text,
editor,
action,
pad)
Adds a hyperlink to the specified parent that invokes action on the specified editor.
linkInvoke: function(parent,
text,
editor,
functName,
arg,
pad)
Adds a hyperlink to the specified parent that invokes the specified function on the editor passing along the specified argument.
load: function(url)
Loads the specified URL synchronously and returns the mxXmlRequest.
loadInto: function(url,
doc,
onload)
Loads the specified URL asynchronously into the specified document, invoking onload after the document has been loaded.
mxCompactTreeLayout.prototype.localEdgeProcessing = function(node)
Moves the specified node and all of its children by the given amount.
mxCoordinateAssignment.prototype.localEdgeProcessing = function(model)
Separates the x position of edges as they connect to vertices
mxCodec.prototype.lookup = function(id)
Hook for subclassers to implement a custom lookup mechanism for cell IDs.
Loop: function (state,
source,
target,
points,
result)
Implements a self-reference, aka.
ltrim: function(str,
chars)
Strips all whitespaces from the beginning of the string.
diff --git a/docs/js-api/index/Functions11.html b/docs/js-api/index/Functions11.html index 07137d9c7..98c571718 100644 --- a/docs/js-api/index/Functions11.html +++ b/docs/js-api/index/Functions11.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 makeDraggable, mxUtils
 map, mxDictionary
 mark
 markCell, mxCellMarker
 maxChainDfs, mxSwimlaneModel
 MedianCellSorter, MedianCellSorter
 medianPos, mxCoordinateAssignment
 medianRank, mxMedianHybridCrossingReduction
 medianValue, mxMedianHybridCrossingReduction
 medianXValue, mxCoordinateAssignment
 merge, mxCompactTreeLayout
 mergeChildren, mxGraphModel
 minNode, mxCoordinateAssignment
 minPath, mxCoordinateAssignment
 mixedModeHtml, mxRectangleShape
 mod, mxUtils
 mouseDown
 mouseMove
 mouseUp
 move, mxGuide
 moveCell
 moveCells
 moveChildren, mxVertexHandler
 moveLabel, mxEdgeHandler
 moveNode, mxCompactTreeLayout
 moveState, mxCellStatePreview
 moveTo
 mxAbstractCanvas2D, mxAbstractCanvas2D
 mxActor, mxActor
 mxAnimation, mxAnimation
 mxArrow, mxArrow
 mxAutoSaveManager, mxAutoSaveManager
 mxCell, mxCell
 mxCellAttributeChange, mxCellAttributeChange
 mxCellEditor, mxCellEditor
 mxCellHighlight, mxCellHighlight
 mxCellMarker, mxCellMarker
 mxCellOverlay, mxCellOverlay
 mxCellRenderer, mxCellRenderer
 mxCellState, mxCellState
 mxCellStatePreview, mxCellStatePreview
 mxCellTracker, mxCellTracker
 mxChildChange, mxChildChange
 mxCircleLayout, mxCircleLayout
 mxCloud, mxCloud
 mxCodec, mxCodec
 mxCollapseChange, mxCollapseChange
 mxCompactTreeLayout
 mxCompositeLayout, mxCompositeLayout
 mxConnectionConstraint, mxConnectionConstraint
 mxConnectionHandler, mxConnectionHandler
 mxConnector, mxConnector
 mxConstraintHandler, mxConstraintHandler
 mxCoordinateAssignment, mxCoordinateAssignment
 mxCurrentRootChange
 mxCylinder, mxCylinder
 mxDefaultKeyHandler, mxDefaultKeyHandler
 mxDefaultPopupMenu, mxDefaultPopupMenu
 mxDefaultToolbar, mxDefaultToolbar
 mxDivResizer, mxDivResizer
 mxDoubleEllipse, mxDoubleEllipse
 mxDragSource, mxDragSource
 mxEdgeHandler
 mxEdgeLabelLayout, mxEdgeLabelLayout
 mxEditor, mxEditor
 mxEllipse, mxEllipse
 mxEventObject, mxEventObject
 mxEventSource
 mxForm, mxForm
 mxGenericChangeCodec, mxGenericChangeCodec
 mxGeometry, mxGeometry
 mxGeometryChange, mxGeometryChange
 mxGraph, mxGraph
 mxGraphAbstractHierarchyCell, mxGraphAbstractHierarchyCell
 mxGraphHandler, mxGraphHandler
 mxGraphHierarchyEdge, mxGraphHierarchyEdge
 mxGraphHierarchyModel, mxGraphHierarchyModel
 mxGraphHierarchyNode, mxGraphHierarchyNode
 mxGraphLayout, mxGraphLayout
 mxGraphModel, mxGraphModel
 mxGraphSelectionModel, mxGraphSelectionModel
 mxGraphView, mxGraphView
 mxGuide, mxGuide
 mxHexagon, mxHexagon
 mxHierarchicalLayout, mxHierarchicalLayout
 mxHierarchicalLayoutStage, mxHierarchicalLayoutStage
 mxImage, mxImage
 mxImageExport, mxImageExport
 mxImageShape, mxImageShape
 mxKeyHandler, mxKeyHandler
 mxLabel, mxLabel
 mxLayoutManager, mxLayoutManager
 mxLine, mxLine
 mxMedianHybridCrossingReduction, mxMedianHybridCrossingReduction
 mxMinimumCycleRemover, mxMinimumCycleRemover
 mxMorphing, mxMorphing
 mxMouseEvent, mxMouseEvent
 mxMultiplicity, mxMultiplicity
 mxObjectCodec, mxObjectCodec
 mxOutline, mxOutline
 mxPanningHandler, mxPanningHandler
 mxPartitionLayout, mxPartitionLayout
 mxPoint, mxPoint
 mxPolyline, mxPolyline
 mxPopupMenu, mxPopupMenu
 mxPopupMenuHandler, mxPanningHandler
 mxPrintPreview, mxPrintPreview
 mxRectangle
 mxRectangleShape, mxRectangleShape
 mxRhombus, mxRhombus
 mxRootChange, mxRootChange
 mxRubberband, mxRubberband
 mxSession, mxSession
 mxShape, mxShape
 mxSpaceManager, mxSpaceManager
 mxStackLayout, mxStackLayout
 mxStencil, mxStencil
 mxStyleChange, mxStyleChange
 mxStylesheet, mxStylesheet
 mxSvgCanvas2D, mxSvgCanvas2D
 mxSwimlane, mxSwimlane
 mxSwimlaneLayout, mxSwimlaneLayout
 mxSwimlaneManager, mxSwimlaneManager
 mxSwimlaneModel, mxSwimlaneModel
 mxSwimlaneOrdering, mxSwimlaneOrdering
 mxTerminalChange, mxTerminalChange
 mxText, mxText
 mxToolbar, mxToolbar
 mxTooltipHandler, mxTooltipHandler
 mxTriangle, mxTriangle
 mxUndoableEdit, mxUndoableEdit
 mxUndoManager, mxUndoManager
 mxValueChange, mxValueChange
 mxVertexHandler, mxVertexHandler
 mxVisibleChange, mxVisibleChange
 mxWindow, mxWindow
 mxXmlCanvas2D, mxXmlCanvas2D
 mxXmlRequest, mxXmlRequest
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 makeDraggable, mxUtils
 map, mxDictionary
 mark
 markCell, mxCellMarker
 maxChainDfs, mxSwimlaneModel
 MedianCellSorter, MedianCellSorter
 medianPos, mxCoordinateAssignment
 medianRank, mxMedianHybridCrossingReduction
 medianValue, mxMedianHybridCrossingReduction
 medianXValue, mxCoordinateAssignment
 merge, mxCompactTreeLayout
 mergeChildren, mxGraphModel
 minNode, mxCoordinateAssignment
 minPath, mxCoordinateAssignment
 mixedModeHtml, mxRectangleShape
 mod, mxUtils
 mouseDown
 mouseMove
 mouseUp
 move, mxGuide
 moveCell
 moveCells
 moveChildren, mxVertexHandler
 moveLabel, mxEdgeHandler
 moveNode, mxCompactTreeLayout
 moveState, mxCellStatePreview
 moveTo
 mxAbstractCanvas2D, mxAbstractCanvas2D
 mxActor, mxActor
 mxAnimation, mxAnimation
 mxArrow, mxArrow
 mxAutoSaveManager, mxAutoSaveManager
 mxCell, mxCell
 mxCellAttributeChange, mxCellAttributeChange
 mxCellEditor, mxCellEditor
 mxCellHighlight, mxCellHighlight
 mxCellMarker, mxCellMarker
 mxCellOverlay, mxCellOverlay
 mxCellRenderer, mxCellRenderer
 mxCellState, mxCellState
 mxCellStatePreview, mxCellStatePreview
 mxCellTracker, mxCellTracker
 mxChildChange, mxChildChange
 mxCircleLayout, mxCircleLayout
 mxCloud, mxCloud
 mxCodec, mxCodec
 mxCollapseChange, mxCollapseChange
 mxCompactTreeLayout
 mxCompositeLayout, mxCompositeLayout
 mxConnectionConstraint, mxConnectionConstraint
 mxConnectionHandler, mxConnectionHandler
 mxConnector, mxConnector
 mxConstraintHandler, mxConstraintHandler
 mxCoordinateAssignment, mxCoordinateAssignment
 mxCurrentRootChange
 mxCylinder, mxCylinder
 mxDefaultKeyHandler, mxDefaultKeyHandler
 mxDefaultPopupMenu, mxDefaultPopupMenu
 mxDefaultToolbar, mxDefaultToolbar
 mxDivResizer, mxDivResizer
 mxDoubleEllipse, mxDoubleEllipse
 mxDragSource, mxDragSource
 mxEdgeHandler
 mxEdgeLabelLayout, mxEdgeLabelLayout
 mxEditor, mxEditor
 mxEllipse, mxEllipse
 mxEventObject, mxEventObject
 mxEventSource
 mxForm, mxForm
 mxGenericChangeCodec, mxGenericChangeCodec
 mxGeometry, mxGeometry
 mxGeometryChange, mxGeometryChange
 mxGraph, mxGraph
 mxGraphAbstractHierarchyCell, mxGraphAbstractHierarchyCell
 mxGraphHandler, mxGraphHandler
 mxGraphHierarchyEdge, mxGraphHierarchyEdge
 mxGraphHierarchyModel, mxGraphHierarchyModel
 mxGraphHierarchyNode, mxGraphHierarchyNode
 mxGraphLayout, mxGraphLayout
 mxGraphModel, mxGraphModel
 mxGraphSelectionModel, mxGraphSelectionModel
 mxGraphView, mxGraphView
 mxGuide, mxGuide
 mxHexagon, mxHexagon
 mxHierarchicalLayout, mxHierarchicalLayout
 mxHierarchicalLayoutStage, mxHierarchicalLayoutStage
 mxImage, mxImage
 mxImageExport, mxImageExport
 mxImageShape, mxImageShape
 mxKeyHandler, mxKeyHandler
 mxLabel, mxLabel
 mxLayoutManager, mxLayoutManager
 mxLine, mxLine
 mxMedianHybridCrossingReduction, mxMedianHybridCrossingReduction
 mxMinimumCycleRemover, mxMinimumCycleRemover
 mxMorphing, mxMorphing
 mxMouseEvent, mxMouseEvent
 mxMultiplicity, mxMultiplicity
 mxObjectCodec, mxObjectCodec
 mxOutline, mxOutline
 mxPanningHandler, mxPanningHandler
 mxPartitionLayout, mxPartitionLayout
 mxPoint, mxPoint
 mxPolyline, mxPolyline
 mxPopupMenu, mxPopupMenu
 mxPopupMenuHandler, mxPanningHandler
 mxPrintPreview, mxPrintPreview
 mxRectangle
 mxRectangleShape, mxRectangleShape
 mxRhombus, mxRhombus
 mxRootChange, mxRootChange
 mxRubberband, mxRubberband
 mxSession, mxSession
 mxShape, mxShape
 mxSpaceManager, mxSpaceManager
 mxStackLayout, mxStackLayout
 mxStencil, mxStencil
 mxStyleChange, mxStyleChange
 mxStylesheet, mxStylesheet
 mxSvgCanvas2D, mxSvgCanvas2D
 mxSwimlane, mxSwimlane
 mxSwimlaneLayout, mxSwimlaneLayout
 mxSwimlaneManager, mxSwimlaneManager
 mxSwimlaneModel, mxSwimlaneModel
 mxSwimlaneOrdering, mxSwimlaneOrdering
 mxTerminalChange, mxTerminalChange
 mxText, mxText
 mxToolbar, mxToolbar
 mxTooltipHandler, mxTooltipHandler
 mxTriangle, mxTriangle
 mxUndoableEdit, mxUndoableEdit
 mxUndoManager, mxUndoManager
 mxValueChange, mxValueChange
 mxVertexHandler, mxVertexHandler
 mxVisibleChange, mxVisibleChange
 mxWindow, mxWindow
 mxXmlCanvas2D, mxXmlCanvas2D
 mxXmlRequest, mxXmlRequest
-
makeDraggable: function(element,
graphF,
funct,
dragElement,
dx,
dy,
autoscroll,
scalePreview,
highlightDropTargets,
getDropTarget)
Configures the given DOM element to act as a drag source for the specified graph.
Stores the (key, value) pairs in this dictionary.
Marks the markedState and fires a mark event.
mxCellMarker.prototype.mark = function()
Marks the markedState and fires a mark event.
mxCellMarker.prototype.markCell = function(cell,
color)
Marks the given cell using the given color, or validColor if no color is specified.
mxSwimlaneModel.prototype.maxChainDfs = function(parent,
root,
connectingEdge,
seen,
chainCount)
Performs a depth first search on the internal hierarchy model.
function MedianCellSorter()
Constructs a new median cell sorter.
mxCoordinateAssignment.prototype.medianPos = function(i,
model)
Performs one median positioning sweep in one direction
mxMedianHybridCrossingReduction.prototype.medianRank = function(rankValue,
downwardSweep)
Attempts to minimise the median placement of connected cells on this rank and one of the adjacent ranks
mxMedianHybridCrossingReduction.prototype.medianValue = function(
   connectedCells,
   rankValue
)
Calculates the median rank order positioning for the specified cell using the connected cells on the specified rank.
mxCoordinateAssignment.prototype.medianXValue = function(connectedCells,
rankValue)
Calculates the median position of the connected cell on the specified rank
mxCompactTreeLayout.prototype.merge = function(p1,
p2)
mxGraphModel.prototype.mergeChildren = function(from,
to,
cloneAllEdges)
Merges the children of the given cell into the given target cell inside this model.
mxCoordinateAssignment.prototype.minNode = function(model)
Performs one median positioning sweep in both directions
mxCoordinateAssignment.prototype.minPath = function(graph,
model)
Straightens out chains of virtual nodes where possibleacade to those stored after this layout processing step has completed.
Allow optimization by replacing VML with HTML.
mod: function(n,
m)
Returns the remainder of division of n by m.
mxCellTracker.prototype.mouseDown = function(sender,
me)
Ignores the event.
mxConnectionHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a new connection.
mxDragSource.prototype.mouseDown = function(evt)
Returns the drop target for the given graph and coordinates.
mxEdgeHandler.prototype.mouseDown = function(sender,
me)
Handles the event by checking if a special element of the handler was clicked, in which case the index parameter is non-null.
mxGraphHandler.prototype.mouseDown = function(sender,
me)
Handles the event by selecing the given cell and creating a handle for it.
mxOutline.prototype.mouseDown = function(sender,
me)
Handles the event by starting a translation or zoom.
mxPanningHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating the panning.
mxRubberband.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxSelectionCellsHandler.prototype.mouseDown = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxVertexHandler.prototype.mouseDown = function(sender,
me)
Handles the event if a handle has been clicked.
mxCellTracker.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting the cell under the mousepointer if it is over the hotspot region of the cell.
mxConnectionHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview edge or by highlighting a possible source or target terminal.
mxDragSource.prototype.mouseMove = function(evt)
Gets the graph for the given event using getGraphForEvent, updates the currentGraph, calling dragEnter and dragExit on the new and old graph, respectively, and invokes dragOver if currentGraph is not null.
mxEdgeHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxGraphHandler.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting possible drop targets and updating the preview.
mxOutline.prototype.mouseMove = function(sender,
me)
Handles the event by previewing the viewrect in graph and updating the rectangle that represents the viewrect in the outline.
mxPanningHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the panning on the graph.
mxRubberband.prototype.mouseMove = function(sender,
me)
Handles the event by updating therubberband selection.
mxSelectionCellsHandler.prototype.mouseMove = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the rubberband selection.
mxVertexHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxCellTracker.prototype.mouseUp = function(sender,
me)
Handles the event by reseting the highlight.
mxConnectionHandler.prototype.mouseUp = function(sender,
me)
Handles the event by inserting the new connection.
mxDragSource.prototype.mouseUp = function(evt)
Processes the mouse up event and invokes drop, dragExit and stopDrag as required.
mxEdgeHandler.prototype.mouseUp = function(sender,
me)
Handles the event to applying the previewed changes on the edge by using moveLabel, connect or changePoints.
mxGraphHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the selection cells.
mxOutline.prototype.mouseUp = function(sender,
me)
Handles the event by applying the translation or zoom to graph.
mxPanningHandler.prototype.mouseUp = function(sender,
me)
Handles the event by setting the translation on the view or showing the popupmenu.
mxRubberband.prototype.mouseUp = function(sender,
me)
Handles the event by selecting the region of the rubberband using mxGraph.selectRegion.
mxSelectionCellsHandler.prototype.mouseUp = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseUp = function(sender,
me)
Handles the event by resetting the tooltip timer or hiding the existing tooltip.
mxVertexHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the geometry.
mxGuide.prototype.move = function(bounds,
delta,
gridEnabled)
Moves the bounds by the given mxPoint and returnt the snapped point.
mxCompositeLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell by calling move on master or the first layout in layouts.
mxGraphLayout.prototype.moveCell = function(cell,
x,
y)
Notified when a cell is being moved in a parent that has automatic layout to update the cell state (eg.
mxPartitionLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxStackLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxGraph.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.
mxGraphHandler.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves the given cells by the specified amount.
mxVertexHandler.prototype.moveChildren = function(cell,
dx,
dy)
Moves the children of the given cell by the given vector.
mxEdgeHandler.prototype.moveLabel = function(edgeState,
x,
y)
Changes the coordinates for the label of the given edge.
mxCompactTreeLayout.prototype.moveNode = function(node,
dx,
dy)
Moves the specified node and all of its children by the given amount.
mxCellStatePreview.prototype.moveState = function(state,
dx,
dy,
add,
includeEdges)
mxAbstractCanvas2D.prototype.moveTo = function(x,
y)
Moves the current path the given coordinates.
mxXmlCanvas2D.prototype.moveTo = function(x,
y)
Moves the current path the given point.
function mxAbstractCanvas2D()
Constructs a new abstract canvas.
function mxActor(bounds,
fill,
stroke,
strokewidth)
Constructs a new actor shape.
function mxAnimation(delay)
Constructs an animation.
function mxArrow(points,
fill,
stroke,
strokewidth,
arrowWidth,
spacing,
endSize)
Constructs a new arrow shape.
function mxAutoSaveManager(graph)
Constructs a new automatic layout for the given graph.
function mxCell(value,
geometry,
style)
Constructs a new cell to be used in a graph model.
function mxCellAttributeChange(cell,
attribute,
value)
Constructs a change of a attribute of the DOM node stored as the value of the given mxCell.
function mxCellEditor(graph)
Constructs a new in-place editor for the specified graph.
function mxCellHighlight(graph,
highlightColor,
strokeWidth,
dashed)
Constructs a cell highlight.
function mxCellMarker(graph,
validColor,
invalidColor,
hotspot)
Constructs a new cell marker.
function mxCellOverlay(image,
tooltip,
align,
verticalAlign,
offset,
cursor)
Constructs a new overlay using the given image and tooltip.
function mxCellRenderer()
arrow, rectangle, ellipse, rhombus, image, line, label, cylinder, swimlane, connector, actor and cloud.
function mxCellState(view,
cell,
style)
Constructs a new object that represents the current state of the given cell in the specified view.
function mxCellStatePreview(graph)
Constructs a move preview for the given graph.
function mxCellTracker(graph,
color,
funct)
Constructs an event handler that highlights cells.
function mxChildChange(model,
parent,
child,
index)
Constructs a change of a child in the specified model.
function mxCircleLayout(graph,
radius)
Constructs a new circular layout for the specified radius.
function mxCloud(bounds,
fill,
stroke,
strokewidth)
Constructs a new cloud shape.
function mxCodec(document)
Constructs an XML encoder/decoder for the specified owner document.
function mxCollapseChange(model,
cell,
collapsed)
Constructs a change of a collapsed state in the specified model.
function mxCompactTreeLayout(graph,
horizontal,
invert)
Constructs a new compact tree layout for the specified graph and orientation.
Constructs a new fast organic layout for the specified graph.
Constructs a new fast organic layout for the specified graph.
function mxCompositeLayout(graph,
layouts,
master)
Constructs a new layout using the given layouts.
function mxConnectionConstraint(point,
perimeter)
Constructs a new connection constraint for the given point and boolean arguments.
function mxConnectionHandler(graph,
factoryMethod)
Constructs an event handler that connects vertices using the specified factory method to create the new edges.
function mxConnector(points,
stroke,
strokewidth)
Constructs a new connector shape.
function mxConstraintHandler(graph)
Constructs an new constraint handler.
function mxCoordinateAssignment(layout,
intraCellSpacing,
interRankCellSpacing,
orientation,
initialX,
parallelEdgeSpacing)
Creates a coordinate assignment.
function mxCurrentRootChange(view,
root)
Constructs a change of the current root in the given view.
Constructs a change of the current root in the given view.
function mxCylinder(bounds,
fill,
stroke,
strokewidth)
Constructs a new cylinder shape.
function mxDefaultKeyHandler(editor)
Constructs a new default key handler for the mxEditor.graph in the given mxEditor.
function mxDefaultPopupMenu(config)
Constructs a new popupmenu-factory based on given configuration.
function mxDefaultToolbar(container,
editor)
Constructs a new toolbar for the given container and editor.
function mxDivResizer(div,
container)
Constructs an object that maintains the size of a div element when the window is being resized.
function mxDoubleEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
function mxDragSource(element,
dropHandler)
Constructs a new drag source for the given element.
function mxEdgeHandler(state)
Constructs an edge handler for the specified mxCellState.
Constructs an edge handler for the specified mxCellState.
function mxEdgeLabelLayout(graph,
radius)
Constructs a new edge label layout.
function mxEditor(config)
Constructs a new editor.
function mxEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
function mxEventObject(name)
Constructs a new event object with the specified name.
Constructs a new dictionary which allows object to be used as keys.
function mxEventSource(eventSource)
Constructs a new event source.
function mxForm(className)
Creates a HTML table using the specified classname.
var mxGenericChangeCodec = function(obj,
variable)
Factory function that creates a mxObjectCodec for the specified change and fieldname.
function mxGeometry(x,
y,
width,
height)
Constructs a new object to describe the size and location of a vertex or the control points of an edge.
function mxGeometryChange(model,
cell,
geometry)
Constructs a change of a geometry in the specified model.
function mxGraph(container,
model,
renderHint,
stylesheet)
Constructs a new mxGraph in the specified container.
function mxGraphAbstractHierarchyCell()
Constructs a new hierarchical layout algorithm.
function mxGraphHandler(graph)
Constructs an event handler that creates handles for the selection cells.
function mxGraphHierarchyEdge(edges)
Constructs a hierarchy edge
function mxGraphHierarchyModel(layout,
vertices,
roots,
parent,
tightenToSource)
Creates an internal ordered graph model using the vertices passed in.
function mxGraphHierarchyNode(cell)
Constructs an internal node to represent the specified real graph cell
function mxGraphLayout(graph)
Constructs a new layout using the given layouts.
function mxGraphModel(root)
Constructs a new graph model.
function mxGraphSelectionModel(graph)
Constructs a new graph selection model for the given mxGraph.
function mxGraphView(graph)
Constructs a new view for the given mxGraph.
function mxGuide(graph,
states)
Constructs a new guide object.
function mxHexagon()
Constructs a new hexagon shape.
function mxHierarchicalLayout(graph,
orientation,
deterministic)
Constructs a new hierarchical layout algorithm.
function mxHierarchicalLayoutStage()
Constructs a new hierarchical layout stage.
function mxImage(src,
width,
height)
Constructs a new image.
function mxImageExport()
Constructs a new image export.
function mxImageShape(bounds,
image,
fill,
stroke,
strokewidth)
Constructs a new image shape.
function mxKeyHandler(graph,
target)
Constructs an event handler that executes functions bound to specific keystrokes.
function mxLabel(bounds,
fill,
stroke,
strokewidth)
Constructs a new label shape.
function mxLayoutManager(graph)
Constructs a new automatic layout for the given graph.
function mxLine(bounds,
stroke,
strokewidth)
Constructs a new line shape.
function mxMedianHybridCrossingReduction(layout)
Creates a coordinate assignment.
function mxMinimumCycleRemover(layout)
Creates a cycle remover for the given internal model.
function mxMorphing(graph,
steps,
ease,
delay)
Constructs an animation.
function mxMouseEvent(evt,
state)
Constructs a new event object for the given arguments.
function mxMultiplicity(source,
type,
attr,
value,
min,
max,
validNeighbors,
countError,
typeError,
validNeighborsAllowed)
Instantiate class mxMultiplicity in order to describe allowed connections in a graph.
function mxObjectCodec(template,
exclude,
idrefs,
mapping)
Constructs a new codec for the specified template object.
function mxOutline(source,
container)
Constructs a new outline for the specified graph inside the given container.
Constructs an event handler that creates a mxPopupMenu and pans the graph.
function mxPartitionLayout(graph,
horizontal,
spacing,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
function mxPoint(x,
y)
Constructs a new point for the optional x and y coordinates.
function mxPolyline(points,
stroke,
strokewidth)
Constructs a new polyline shape.
Constructs a popupmenu.
function mxPopupMenuHandler(graph,
factoryMethod)
Constructs an event handler that creates a mxPopupMenu.
function mxPrintPreview(graph,
scale,
pageFormat,
border,
x0,
y0,
borderColor,
title,
pageSelector)
Constructs a new print preview for the given parameters.
function mxRectangle(x,
y,
width,
height)
Constructs a new rectangle for the optional parameters.
Constructs a new rectangle for the optional parameters.
function mxRectangleShape(bounds,
fill,
stroke,
strokewidth)
Constructs a new rectangle shape.
function mxRhombus(bounds,
fill,
stroke,
strokewidth)
Constructs a new rhombus shape.
function mxRootChange(model,
root)
Constructs a change of the root in the specified model.
function mxRubberband(graph)
Constructs an event handler that selects rectangular regions in the graph using rubberband selection.
function mxSession(model,
urlInit,
urlPoll,
urlNotify)
Constructs a new session using the given mxGraphModel and URLs to communicate with the backend.
function mxShape(stencil)
Constructs a new shape.
function mxSpaceManager(graph,
shiftRightwards,
shiftDownwards,
extendParents)
Constructs a new automatic layout for the given graph.
function mxStackLayout(graph,
horizontal,
spacing,
x0,
y0,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
function mxStencil(desc)
Constructs a new generic shape by setting desc to the given XML node and invoking parseDescription and parseConstraints.
function mxStyleChange(model,
cell,
style)
Constructs a change of a style in the specified model.
function mxStylesheet()
Constructs a new stylesheet and assigns default styles.
function mxSvgCanvas2D(root,
styleEnabled)
Constructs a new SVG canvas.
function mxSwimlane(bounds,
fill,
stroke,
strokewidth)
Constructs a new swimlane shape.
function mxSwimlaneLayout(graph,
orientation,
deterministic)
Constructs a new hierarchical layout algorithm.
function mxSwimlaneManager(graph,
horizontal,
addEnabled,
resizeEnabled)
Constructs a new swimlane manager for the given graph.
function mxSwimlaneModel(layout,
vertices,
roots,
parent,
tightenToSource)
Creates an internal ordered graph model using the vertices passed in.
function mxSwimlaneOrdering(layout)
Creates a cycle remover for the given internal model.
function mxTerminalChange(model,
cell,
terminal,
source)
Constructs a change of a terminal in the specified model.
function mxText(value,
bounds,
align,
valign,
color,
family,
size,
fontStyle,
spacing,
spacingTop,
spacingRight,
spacingBottom,
spacingLeft,
horizontal,
background,
border,
wrap,
clipped,
overflow,
labelPadding)
Constructs a new text shape.
function mxToolbar(container)
Constructs a toolbar in the specified container.
function mxTooltipHandler(graph,
delay)
Constructs an event handler that displays tooltips with the specified delay (in milliseconds).
function mxTriangle()
Constructs a new triangle shape.
function mxUndoableEdit(source,
significant)
Constructs a new undoable edit for the given source.
function mxUndoManager(size)
Constructs a new undo manager with the given history size.
function mxValueChange(model,
cell,
value)
Constructs a change of a user object in the specified model.
function mxVertexHandler(state)
Constructs an event handler that allows to resize vertices and groups.
function mxVisibleChange(model,
cell,
visible)
Constructs a change of a visible state in the specified model.
function mxWindow(title,
content,
x,
y,
width,
height,
minimizable,
movable,
replaceNode,
style)
Constructs a new window with the given dimension and title to display the specified content.
function mxXmlCanvas2D(root)
Constructs a new abstract canvas.
function mxXmlRequest(url,
params,
method,
async,
username,
password)
Constructs an XML HTTP request.
+
makeDraggable: function(element,
graphF,
funct,
dragElement,
dx,
dy,
autoscroll,
scalePreview,
highlightDropTargets,
getDropTarget)
Configures the given DOM element to act as a drag source for the specified graph.
Stores the (key, value) pairs in this dictionary.
Marks the markedState and fires a mark event.
mxCellMarker.prototype.mark = function()
Marks the markedState and fires a mark event.
mxCellMarker.prototype.markCell = function(cell,
color)
Marks the given cell using the given color, or validColor if no color is specified.
mxSwimlaneModel.prototype.maxChainDfs = function(parent,
root,
connectingEdge,
seen,
chainCount)
Performs a depth first search on the internal hierarchy model.
function MedianCellSorter()
Constructs a new median cell sorter.
mxCoordinateAssignment.prototype.medianPos = function(i,
model)
Performs one median positioning sweep in one direction
mxMedianHybridCrossingReduction.prototype.medianRank = function(rankValue,
downwardSweep)
Attempts to minimise the median placement of connected cells on this rank and one of the adjacent ranks
mxMedianHybridCrossingReduction.prototype.medianValue = function(
   connectedCells,
   rankValue
)
Calculates the median rank order positioning for the specified cell using the connected cells on the specified rank.
mxCoordinateAssignment.prototype.medianXValue = function(connectedCells,
rankValue)
Calculates the median position of the connected cell on the specified rank
mxCompactTreeLayout.prototype.merge = function(p1,
p2)
mxGraphModel.prototype.mergeChildren = function(from,
to,
cloneAllEdges)
Merges the children of the given cell into the given target cell inside this model.
mxCoordinateAssignment.prototype.minNode = function(model)
Performs one median positioning sweep in both directions
mxCoordinateAssignment.prototype.minPath = function(graph,
model)
Straightens out chains of virtual nodes where possibleacade to those stored after this layout processing step has completed.
Allow optimization by replacing VML with HTML.
mod: function(n,
m)
Returns the remainder of division of n by m.
mxCellTracker.prototype.mouseDown = function(sender,
me)
Ignores the event.
mxConnectionHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a new connection.
mxDragSource.prototype.mouseDown = function(evt)
Returns the drop target for the given graph and coordinates.
mxEdgeHandler.prototype.mouseDown = function(sender,
me)
Handles the event by checking if a special element of the handler was clicked, in which case the index parameter is non-null.
mxGraphHandler.prototype.mouseDown = function(sender,
me)
Handles the event by selecing the given cell and creating a handle for it.
mxOutline.prototype.mouseDown = function(sender,
me)
Handles the event by starting a translation or zoom.
mxPanningHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating the panning.
mxRubberband.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxSelectionCellsHandler.prototype.mouseDown = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxVertexHandler.prototype.mouseDown = function(sender,
me)
Handles the event if a handle has been clicked.
mxCellTracker.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting the cell under the mousepointer if it is over the hotspot region of the cell.
mxConnectionHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview edge or by highlighting a possible source or target terminal.
mxDragSource.prototype.mouseMove = function(evt)
Gets the graph for the given event using getGraphForEvent, updates the currentGraph, calling dragEnter and dragExit on the new and old graph, respectively, and invokes dragOver if currentGraph is not null.
mxEdgeHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxGraphHandler.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting possible drop targets and updating the preview.
mxOutline.prototype.mouseMove = function(sender,
me)
Handles the event by previewing the viewrect in graph and updating the rectangle that represents the viewrect in the outline.
mxPanningHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the panning on the graph.
mxRubberband.prototype.mouseMove = function(sender,
me)
Handles the event by updating therubberband selection.
mxSelectionCellsHandler.prototype.mouseMove = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the rubberband selection.
mxVertexHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxCellTracker.prototype.mouseUp = function(sender,
me)
Handles the event by reseting the highlight.
mxConnectionHandler.prototype.mouseUp = function(sender,
me)
Handles the event by inserting the new connection.
mxDragSource.prototype.mouseUp = function(evt)
Processes the mouse up event and invokes drop, dragExit and stopDrag as required.
mxEdgeHandler.prototype.mouseUp = function(sender,
me)
Handles the event to applying the previewed changes on the edge by using moveLabel, connect or changePoints.
mxGraphHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the selection cells.
mxOutline.prototype.mouseUp = function(sender,
me)
Handles the event by applying the translation or zoom to graph.
mxPanningHandler.prototype.mouseUp = function(sender,
me)
Handles the event by setting the translation on the view or showing the popupmenu.
mxRubberband.prototype.mouseUp = function(sender,
me)
Handles the event by selecting the region of the rubberband using mxGraph.selectRegion.
mxSelectionCellsHandler.prototype.mouseUp = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseUp = function(sender,
me)
Handles the event by resetting the tooltip timer or hiding the existing tooltip.
mxVertexHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the geometry.
mxGuide.prototype.move = function(bounds,
delta,
gridEnabled)
Moves the bounds by the given mxPoint and returnt the snapped point.
mxCompositeLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell by calling move on master or the first layout in layouts.
mxGraphLayout.prototype.moveCell = function(cell,
x,
y)
Notified when a cell is being moved in a parent that has automatic layout to update the cell state (eg.
mxPartitionLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxStackLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxGraph.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.
mxGraphHandler.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves the given cells by the specified amount.
mxVertexHandler.prototype.moveChildren = function(cell,
dx,
dy)
Moves the children of the given cell by the given vector.
mxEdgeHandler.prototype.moveLabel = function(edgeState,
x,
y)
Changes the coordinates for the label of the given edge.
mxCompactTreeLayout.prototype.moveNode = function(node,
dx,
dy)
Moves the specified node and all of its children by the given amount.
mxCellStatePreview.prototype.moveState = function(state,
dx,
dy,
add,
includeEdges)
mxAbstractCanvas2D.prototype.moveTo = function(x,
y)
Moves the current path the given coordinates.
mxXmlCanvas2D.prototype.moveTo = function(x,
y)
Moves the current path the given point.
function mxAbstractCanvas2D()
Constructs a new abstract canvas.
function mxActor(bounds,
fill,
stroke,
strokewidth)
Constructs a new actor shape.
function mxAnimation(delay)
Constructs an animation.
function mxArrow(points,
fill,
stroke,
strokewidth,
arrowWidth,
spacing,
endSize)
Constructs a new arrow shape.
function mxAutoSaveManager(graph)
Constructs a new automatic layout for the given graph.
function mxCell(value,
geometry,
style)
Constructs a new cell to be used in a graph model.
function mxCellAttributeChange(cell,
attribute,
value)
Constructs a change of a attribute of the DOM node stored as the value of the given mxCell.
function mxCellEditor(graph)
Constructs a new in-place editor for the specified graph.
function mxCellHighlight(graph,
highlightColor,
strokeWidth,
dashed)
Constructs a cell highlight.
function mxCellMarker(graph,
validColor,
invalidColor,
hotspot)
Constructs a new cell marker.
function mxCellOverlay(image,
tooltip,
align,
verticalAlign,
offset,
cursor)
Constructs a new overlay using the given image and tooltip.
function mxCellRenderer()
arrow, rectangle, ellipse, rhombus, image, line, label, cylinder, swimlane, connector, actor and cloud.
function mxCellState(view,
cell,
style)
Constructs a new object that represents the current state of the given cell in the specified view.
function mxCellStatePreview(graph)
Constructs a move preview for the given graph.
function mxCellTracker(graph,
color,
funct)
Constructs an event handler that highlights cells.
function mxChildChange(model,
parent,
child,
index)
Constructs a change of a child in the specified model.
function mxCircleLayout(graph,
radius)
Constructs a new circular layout for the specified radius.
function mxCloud(bounds,
fill,
stroke,
strokewidth)
Constructs a new cloud shape.
function mxCodec(document)
Constructs an XML encoder/decoder for the specified owner document.
function mxCollapseChange(model,
cell,
collapsed)
Constructs a change of a collapsed state in the specified model.
function mxCompactTreeLayout(graph,
horizontal,
invert)
Constructs a new compact tree layout for the specified graph and orientation.
Constructs a new fast organic layout for the specified graph.
Constructs a new fast organic layout for the specified graph.
function mxCompositeLayout(graph,
layouts,
master)
Constructs a new layout using the given layouts.
function mxConnectionConstraint(point,
perimeter)
Constructs a new connection constraint for the given point and boolean arguments.
function mxConnectionHandler(graph,
factoryMethod)
Constructs an event handler that connects vertices using the specified factory method to create the new edges.
function mxConnector(points,
stroke,
strokewidth)
Constructs a new connector shape.
function mxConstraintHandler(graph)
Constructs an new constraint handler.
function mxCoordinateAssignment(layout,
intraCellSpacing,
interRankCellSpacing,
orientation,
initialX,
parallelEdgeSpacing)
Creates a coordinate assignment.
function mxCurrentRootChange(view,
root)
Constructs a change of the current root in the given view.
Constructs a change of the current root in the given view.
function mxCylinder(bounds,
fill,
stroke,
strokewidth)
Constructs a new cylinder shape.
function mxDefaultKeyHandler(editor)
Constructs a new default key handler for the mxEditor.graph in the given mxEditor.
function mxDefaultPopupMenu(config)
Constructs a new popupmenu-factory based on given configuration.
function mxDefaultToolbar(container,
editor)
Constructs a new toolbar for the given container and editor.
function mxDivResizer(div,
container)
Constructs an object that maintains the size of a div element when the window is being resized.
function mxDoubleEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
function mxDragSource(element,
dropHandler)
Constructs a new drag source for the given element.
function mxEdgeHandler(state)
Constructs an edge handler for the specified mxCellState.
Constructs an edge handler for the specified mxCellState.
function mxEdgeLabelLayout(graph,
radius)
Constructs a new edge label layout.
function mxEditor(config)
Constructs a new editor.
function mxEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
function mxEventObject(name)
Constructs a new event object with the specified name.
Constructs a new dictionary which allows object to be used as keys.
function mxEventSource(eventSource)
Constructs a new event source.
function mxForm(className)
Creates a HTML table using the specified classname.
var mxGenericChangeCodec = function(obj,
variable)
Factory function that creates a mxObjectCodec for the specified change and fieldname.
function mxGeometry(x,
y,
width,
height)
Constructs a new object to describe the size and location of a vertex or the control points of an edge.
function mxGeometryChange(model,
cell,
geometry)
Constructs a change of a geometry in the specified model.
function mxGraph(container,
model,
renderHint,
stylesheet)
Constructs a new mxGraph in the specified container.
function mxGraphAbstractHierarchyCell()
Constructs a new hierarchical layout algorithm.
function mxGraphHandler(graph)
Constructs an event handler that creates handles for the selection cells.
function mxGraphHierarchyEdge(edges)
Constructs a hierarchy edge
function mxGraphHierarchyModel(layout,
vertices,
roots,
parent,
tightenToSource)
Creates an internal ordered graph model using the vertices passed in.
function mxGraphHierarchyNode(cell)
Constructs an internal node to represent the specified real graph cell
function mxGraphLayout(graph)
Constructs a new layout using the given layouts.
function mxGraphModel(root)
Constructs a new graph model.
function mxGraphSelectionModel(graph)
Constructs a new graph selection model for the given mxGraph.
function mxGraphView(graph)
Constructs a new view for the given mxGraph.
function mxGuide(graph,
states)
Constructs a new guide object.
function mxHexagon()
Constructs a new hexagon shape.
function mxHierarchicalLayout(graph,
orientation,
deterministic)
Constructs a new hierarchical layout algorithm.
function mxHierarchicalLayoutStage()
Constructs a new hierarchical layout stage.
function mxImage(src,
width,
height)
Constructs a new image.
function mxImageExport()
Constructs a new image export.
function mxImageShape(bounds,
image,
fill,
stroke,
strokewidth)
Constructs a new image shape.
function mxKeyHandler(graph,
target)
Constructs an event handler that executes functions bound to specific keystrokes.
function mxLabel(bounds,
fill,
stroke,
strokewidth)
Constructs a new label shape.
function mxLayoutManager(graph)
Constructs a new automatic layout for the given graph.
function mxLine(bounds,
stroke,
strokewidth)
Constructs a new line shape.
function mxMedianHybridCrossingReduction(layout)
Creates a coordinate assignment.
function mxMinimumCycleRemover(layout)
Creates a cycle remover for the given internal model.
function mxMorphing(graph,
steps,
ease,
delay)
Constructs an animation.
function mxMouseEvent(evt,
state)
Constructs a new event object for the given arguments.
function mxMultiplicity(source,
type,
attr,
value,
min,
max,
validNeighbors,
countError,
typeError,
validNeighborsAllowed)
Instantiate class mxMultiplicity in order to describe allowed connections in a graph.
function mxObjectCodec(template,
exclude,
idrefs,
mapping)
Constructs a new codec for the specified template object.
function mxOutline(source,
container)
Constructs a new outline for the specified graph inside the given container.
Constructs an event handler that creates a mxPopupMenu and pans the graph.
function mxPartitionLayout(graph,
horizontal,
spacing,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
function mxPoint(x,
y)
Constructs a new point for the optional x and y coordinates.
function mxPolyline(points,
stroke,
strokewidth)
Constructs a new polyline shape.
Constructs a popupmenu.
function mxPopupMenuHandler(graph,
factoryMethod)
Constructs an event handler that creates a mxPopupMenu.
function mxPrintPreview(graph,
scale,
pageFormat,
border,
x0,
y0,
borderColor,
title,
pageSelector)
Constructs a new print preview for the given parameters.
function mxRectangle(x,
y,
width,
height)
Constructs a new rectangle for the optional parameters.
Constructs a new rectangle for the optional parameters.
function mxRectangleShape(bounds,
fill,
stroke,
strokewidth)
Constructs a new rectangle shape.
function mxRhombus(bounds,
fill,
stroke,
strokewidth)
Constructs a new rhombus shape.
function mxRootChange(model,
root)
Constructs a change of the root in the specified model.
function mxRubberband(graph)
Constructs an event handler that selects rectangular regions in the graph using rubberband selection.
function mxSession(model,
urlInit,
urlPoll,
urlNotify)
Constructs a new session using the given mxGraphModel and URLs to communicate with the backend.
function mxShape(stencil)
Constructs a new shape.
function mxSpaceManager(graph,
shiftRightwards,
shiftDownwards,
extendParents)
Constructs a new automatic layout for the given graph.
function mxStackLayout(graph,
horizontal,
spacing,
x0,
y0,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
function mxStencil(desc)
Constructs a new generic shape by setting desc to the given XML node and invoking parseDescription and parseConstraints.
function mxStyleChange(model,
cell,
style)
Constructs a change of a style in the specified model.
function mxStylesheet()
Constructs a new stylesheet and assigns default styles.
function mxSvgCanvas2D(root,
styleEnabled)
Constructs a new SVG canvas.
function mxSwimlane(bounds,
fill,
stroke,
strokewidth)
Constructs a new swimlane shape.
function mxSwimlaneLayout(graph,
orientation,
deterministic)
Constructs a new hierarchical layout algorithm.
function mxSwimlaneManager(graph,
horizontal,
addEnabled,
resizeEnabled)
Constructs a new swimlane manager for the given graph.
function mxSwimlaneModel(layout,
vertices,
roots,
parent,
tightenToSource)
Creates an internal ordered graph model using the vertices passed in.
function mxSwimlaneOrdering(layout)
Creates a cycle remover for the given internal model.
function mxTerminalChange(model,
cell,
terminal,
source)
Constructs a change of a terminal in the specified model.
function mxText(value,
bounds,
align,
valign,
color,
family,
size,
fontStyle,
spacing,
spacingTop,
spacingRight,
spacingBottom,
spacingLeft,
horizontal,
background,
border,
wrap,
clipped,
overflow,
labelPadding)
Constructs a new text shape.
function mxToolbar(container)
Constructs a toolbar in the specified container.
function mxTooltipHandler(graph,
delay)
Constructs an event handler that displays tooltips with the specified delay (in milliseconds).
function mxTriangle()
Constructs a new triangle shape.
function mxUndoableEdit(source,
significant)
Constructs a new undoable edit for the given source.
function mxUndoManager(size)
Constructs a new undo manager with the given history size.
function mxValueChange(model,
cell,
value)
Constructs a change of a user object in the specified model.
function mxVertexHandler(state)
Constructs an event handler that allows to resize vertices and groups.
function mxVisibleChange(model,
cell,
visible)
Constructs a change of a visible state in the specified model.
function mxWindow(title,
content,
x,
y,
width,
height,
minimizable,
movable,
replaceNode,
style)
Constructs a new window with the given dimension and title to display the specified content.
function mxXmlCanvas2D(root)
Constructs a new abstract canvas.
function mxXmlRequest(url,
params,
method,
async,
username,
password)
Constructs an XML HTTP request.
diff --git a/docs/js-api/index/Functions12.html b/docs/js-api/index/Functions12.html index 544bb7715..eb105ec85 100644 --- a/docs/js-api/index/Functions12.html +++ b/docs/js-api/index/Functions12.html @@ -11,13 +11,13 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
N
 notify
O
 offset, mxCompactTreeLayout
 onEncode, mxRootChangeCodec
 onInit
 open
 orderCells, mxGraph
 OrthConnector, mxEdgeStyle
 outline, mxOutline
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
N
 notify
O
 offset, mxCompactTreeLayout
 onEncode, mxRootChangeCodec
 onInit
 open
 orderCells, mxGraph
 OrthConnector, mxEdgeStyle
 outline, mxOutline
-
mxSession.prototype.notify = function(xml,
onLoad,
onError)
Sends out the specified XML to urlNotify and fires a notify event.
mxUndoableEdit.prototype.notify = function()
Hook to notify any listeners of the changes after an undo or redo has been carried out.
+
mxSession.prototype.notify = function(xml,
onLoad,
onError)
Sends out the specified XML to urlNotify and fires a notify event.
mxUndoableEdit.prototype.notify = function()
Hook to notify any listeners of the changes after an undo or redo has been carried out.
-
mxCompactTreeLayout.prototype.offset = function(p1,
p2,
a1,
a2,
b1,
b2)
Encodes the child recursively.
Called from within the constructor.
Called from within the constructor.
mxEditor.prototype.open = function (filename)
Opens the specified file synchronously and parses it using readGraphModel.
mxPrintPreview.prototype.open = function(css)
Shows the print preview window.
open: function(filename)
Opens the specified file from the local filesystem and returns the contents of the file as a string.
mxGraph.prototype.orderCells = function(back,
cells)
Moves the given cells to the front or back.
OrthConnector: function(state,
source,
target,
points,
result)
Implements a local orthogonal router between the given cells.
Reference to the mxGraph that renders the outline.
+
mxCompactTreeLayout.prototype.offset = function(p1,
p2,
a1,
a2,
b1,
b2)
Encodes the child recursively.
Called from within the constructor.
Called from within the constructor.
mxEditor.prototype.open = function (filename)
Opens the specified file synchronously and parses it using readGraphModel.
mxPrintPreview.prototype.open = function(css)
Shows the print preview window.
open: function(filename)
Opens the specified file from the local filesystem and returns the contents of the file as a string.
mxGraph.prototype.orderCells = function(back,
cells)
Moves the given cells to the front or back.
OrthConnector: function(state,
source,
target,
points,
result)
Implements a local orthogonal router between the given cells.
Reference to the mxGraph that renders the outline.
diff --git a/docs/js-api/index/Functions13.html b/docs/js-api/index/Functions13.html index 79b1e7d80..89d7930f6 100644 --- a/docs/js-api/index/Functions13.html +++ b/docs/js-api/index/Functions13.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
P
 paint
 paintBackground
 paintEdgeShape
 paintForeground
 paintGlassEffect, mxShape
 paintImage, mxLabel
 paintIndicator, mxLabel
 paintLine
 paintRoundedSwimlane, mxSwimlane
 paintStencilShape, mxShape
 paintSwimlane, mxSwimlane
 paintVertexShape
 panGraph
 para, mxUtils
 parentForCellChanged, mxGraphModel
 parse, mxResources
 parseConstraint, mxStencil
 parseConstraints, mxStencil
 parseDescription, mxStencil
 parseXml, mxUtils
 paste, mxClipboard
 placeLabels, mxEdgeLabelLayout
 placementStage
 plainText, mxVmlCanvas2D
 poll, mxSession
 popup
 post, mxUtils
 postConfigureShape, mxCellRenderer
 postDiagram, mxEditor
 postProcessCellStyle, mxGraph
 print, mxPrintPreview
 printScreen, mxUtils
 process, mxCellMarker
 processChange, mxGraph
 processDelta, mxSession
 processEdit, mxSession
 processInclude, mxObjectCodec
 processReversedEdge, mxCoordinateAssignment
 processState, mxSession
 prompt, mxUtils
 ptSeqDistSq, mxUtils
 put, mxDictionary
 putCellStyle, mxStylesheet
 putDefaultEdgeStyle, mxStylesheet
 putDefaultVertexStyle, mxStylesheet
 putImage, mxImageBundle
 putObject, mxCodec
 putValue, mxStyleRegistry
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
P
 paint
 paintBackground
 paintEdgeShape
 paintForeground
 paintGlassEffect, mxShape
 paintImage, mxLabel
 paintIndicator, mxLabel
 paintLine
 paintRoundedSwimlane, mxSwimlane
 paintStencilShape, mxShape
 paintSwimlane, mxSwimlane
 paintVertexShape
 panGraph
 para, mxUtils
 parentForCellChanged, mxGraphModel
 parse, mxResources
 parseConstraint, mxStencil
 parseConstraints, mxStencil
 parseDescription, mxStencil
 parseXml, mxUtils
 paste, mxClipboard
 placeLabels, mxEdgeLabelLayout
 placementStage
 plainText, mxVmlCanvas2D
 poll, mxSession
 popup
 post, mxUtils
 postConfigureShape, mxCellRenderer
 postDiagram, mxEditor
 postProcessCellStyle, mxGraph
 print, mxPrintPreview
 printScreen, mxUtils
 process, mxCellMarker
 processChange, mxGraph
 processDelta, mxSession
 processEdit, mxSession
 processInclude, mxObjectCodec
 processReversedEdge, mxCoordinateAssignment
 processState, mxSession
 prompt, mxUtils
 ptSeqDistSq, mxUtils
 put, mxDictionary
 putCellStyle, mxStylesheet
 putDefaultEdgeStyle, mxStylesheet
 putDefaultVertexStyle, mxStylesheet
 putImage, mxImageBundle
 putObject, mxCodec
 putValue, mxStyleRegistry
-
mxShape.prototype.paint = function(c)
Generic rendering code.
mxText.prototype.paint = function(c)
Generic rendering code.
mxDoubleEllipse.prototype.paintBackground = function(c,
x,
y,
w,
h)
Paints the background.
mxRectangleShape.prototype.paintBackground = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxShape.prototype.paintBackground = function(c,
x,
y,
w,
h)
Hook for subclassers.
mxArrow.prototype.paintEdgeShape = function(c,
pts)
Paints the line shape.
mxConnector.prototype.paintEdgeShape = function(c,
pts)
Paints the line shape.
mxPolyline.prototype.paintEdgeShape = function(c,
pts)
Paints the line shape.
mxShape.prototype.paintEdgeShape = function(c,
pts)
Hook for subclassers.
mxDoubleEllipse.prototype.paintForeground = function(c,
x,
y,
w,
h)
Paints the foreground.
mxLabel.prototype.paintForeground = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxRectangleShape.prototype.paintForeground = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxShape.prototype.paintForeground = function(c,
x,
y,
w,
h)
Hook for subclassers.
mxShape.prototype.paintGlassEffect = function(c,
x,
y,
w,
h,
arc)
Paints the glass gradient effect.
mxLabel.prototype.paintImage = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxLabel.prototype.paintIndicator = function(c,
x,
y,
w,
h)
Generic background painting implementation.
Paints the line shape.
mxPolyline.prototype.paintLine = function(c,
pts,
rounded)
Paints the line shape.
mxSwimlane.prototype.paintRoundedSwimlane = function(c,
x,
y,
w,
h,
start,
r,
fill,
swimlaneLine)
Paints the swimlane vertex shape.
mxShape.prototype.paintStencilShape = function(c,
x,
y,
w,
h)
Paints the line shape.
mxSwimlane.prototype.paintSwimlane = function(c,
x,
y,
w,
h,
start,
fill,
swimlaneLine)
Paints the swimlane vertex shape.
mxActor.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Redirects to redrawPath for subclasses to work.
mxCylinder.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Redirects to redrawPath for subclasses to work.
mxEllipse.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Paints the ellipse shape.
mxImageShape.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxLine.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Redirects to redrawPath for subclasses to work.
mxRhombus.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Generic painting implementation.
mxShape.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Paints the vertex shape.
mxSwimlane.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Paints the swimlane vertex shape.
mxGraph.prototype.panGraph = function(dx,
dy)
Shifts the graph display by the given amount.
mxPanningHandler.prototype.panGraph = function(dx,
dy)
Pans graph by the given amount.
para: function(parent,
text)
Appends a new paragraph with the given text to the specified parent and returns the paragraph.
mxGraphModel.prototype.parentForCellChanged = function(cell,
parent,
index)
Inner callback to update the parent of a cell using mxCell.insert on the parent and return the previous parent.
parse: function(text)
Parses the key, value pairs in the specified text and stores them as local resources.
mxStencil.prototype.parseConstraint = function(node)
Parses the given XML node and returns its mxConnectionConstraint.
mxStencil.prototype.parseConstraints = function()
Reads the constraints from desc into constraints using parseConstraint.
mxStencil.prototype.parseDescription = function()
Reads w0, h0, aspect, bgNodes and fgNodes from desc.
parseXml: function()
Parses the specified XML string into a new XML document and returns the new document.
paste: function(graph)
Pastes the cells into the specified graph restoring the relation to parents, if possible.
mxEdgeLabelLayout.prototype.placeLabels = function(v,
e)
Places the labels of the given edges.
mxHierarchicalLayout.prototype.placementStage = function(initialX,
parent)
Executes the placement stage using mxCoordinateAssignment.
mxSwimlaneLayout.prototype.placementStage = function(initialX,
parent)
Executes the placement stage using mxCoordinateAssignment.
mxVmlCanvas2D.prototype.plainText = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the outline of the current path.
mxSession.prototype.poll = function()
Sends an asynchronous GET request to urlPoll.
mxPopupMenu.prototype.popup = function(x,
y,
cell,
evt)
Shows the popup menu for the given event and cell.
popup: function(content,
isInternalWindow)
Shows the specified text content in a new mxWindow or a new browser window if isInternalWindow is false.
post: function(url,
params,
onload,
onerror)
Posts the specified params to the given URL asynchronously and invokes the given functions depending on the request status.
mxCellRenderer.prototype.postConfigureShape = function(state)
Replaces any reserved words used for attributes, eg.
mxEditor.prototype.postDiagram = function (url,
data)
Hook for subclassers to override the posting of a diagram represented by the given node to the given URL.
mxGraph.prototype.postProcessCellStyle = function(style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
mxPrintPreview.prototype.print = function(css)
Opens the print preview and shows the print dialog.
printScreen: function(graph)
Prints the specified graph using a new window and the built-in print dialog.
mxCellMarker.prototype.process = function(me)
Processes the given event and cell and marks the state returned by getState with the color returned by getMarkerColor.
mxGraph.prototype.processChange = function(change)
Processes the given change and invalidates the respective cached data in view.
mxSession.prototype.processDelta = function(node)
Processes the given delta node which contains a sequence of edits which in turn map to one transaction on the remote model each.
mxSession.prototype.processEdit = function(node)
Processes the given edit by executing its changes and firing the required events via the model.
mxObjectCodec.prototype.processInclude = function(dec,
node,
into)
Returns true if the given node is an include directive and executes the include by decoding the XML document.
mxCoordinateAssignment.prototype.processReversedEdge = function(graph,
model)
Hook to add additional processing
mxSession.prototype.processState = function(node)
Processes the given state node which contains the current state of the remote model.
prompt: function(message,
defaultValue)
Displays the given message in a prompt dialog.
Returns the square distance between a segment and a point.
mxDictionary.prototype.put = function(key,
value)
Stores the value under the given key and returns the previous value for that key.
mxStylesheet.prototype.putCellStyle = function(name,
style)
Stores the given map of key, value pairs under the given name in styles.
mxStylesheet.prototype.putDefaultEdgeStyle = function(style)
Sets the default style for edges using defaultEdge as the stylename.
mxStylesheet.prototype.putDefaultVertexStyle = function(style)
Sets the default style for vertices using defaultVertex as the stylename.
mxImageBundle.prototype.putImage = function(key,
value,
fallback)
Adds the specified entry to the map.
mxCodec.prototype.putObject = function(id,
obj)
Assoiates the given object with the given ID and returns the given object.
putValue: function(name,
obj)
Puts the given object into the registry under the given name.
+
mxShape.prototype.paint = function(c)
Generic rendering code.
mxText.prototype.paint = function(c)
Generic rendering code.
mxDoubleEllipse.prototype.paintBackground = function(c,
x,
y,
w,
h)
Paints the background.
mxRectangleShape.prototype.paintBackground = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxShape.prototype.paintBackground = function(c,
x,
y,
w,
h)
Hook for subclassers.
mxArrow.prototype.paintEdgeShape = function(c,
pts)
Paints the line shape.
mxConnector.prototype.paintEdgeShape = function(c,
pts)
Paints the line shape.
mxPolyline.prototype.paintEdgeShape = function(c,
pts)
Paints the line shape.
mxShape.prototype.paintEdgeShape = function(c,
pts)
Hook for subclassers.
mxDoubleEllipse.prototype.paintForeground = function(c,
x,
y,
w,
h)
Paints the foreground.
mxLabel.prototype.paintForeground = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxRectangleShape.prototype.paintForeground = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxShape.prototype.paintForeground = function(c,
x,
y,
w,
h)
Hook for subclassers.
mxShape.prototype.paintGlassEffect = function(c,
x,
y,
w,
h,
arc)
Paints the glass gradient effect.
mxLabel.prototype.paintImage = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxLabel.prototype.paintIndicator = function(c,
x,
y,
w,
h)
Generic background painting implementation.
Paints the line shape.
mxPolyline.prototype.paintLine = function(c,
pts,
rounded)
Paints the line shape.
mxSwimlane.prototype.paintRoundedSwimlane = function(c,
x,
y,
w,
h,
start,
r,
fill,
swimlaneLine)
Paints the swimlane vertex shape.
mxShape.prototype.paintStencilShape = function(c,
x,
y,
w,
h)
Paints the line shape.
mxSwimlane.prototype.paintSwimlane = function(c,
x,
y,
w,
h,
start,
fill,
swimlaneLine)
Paints the swimlane vertex shape.
mxActor.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Redirects to redrawPath for subclasses to work.
mxCylinder.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Redirects to redrawPath for subclasses to work.
mxEllipse.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Paints the ellipse shape.
mxImageShape.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxLine.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Redirects to redrawPath for subclasses to work.
mxRhombus.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Generic painting implementation.
mxShape.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Paints the vertex shape.
Paints the swimlane vertex shape.
mxGraph.prototype.panGraph = function(dx,
dy)
Shifts the graph display by the given amount.
mxPanningHandler.prototype.panGraph = function(dx,
dy)
Pans graph by the given amount.
para: function(parent,
text)
Appends a new paragraph with the given text to the specified parent and returns the paragraph.
mxGraphModel.prototype.parentForCellChanged = function(cell,
parent,
index)
Inner callback to update the parent of a cell using mxCell.insert on the parent and return the previous parent.
parse: function(text)
Parses the key, value pairs in the specified text and stores them as local resources.
mxStencil.prototype.parseConstraint = function(node)
Parses the given XML node and returns its mxConnectionConstraint.
mxStencil.prototype.parseConstraints = function()
Reads the constraints from desc into constraints using parseConstraint.
mxStencil.prototype.parseDescription = function()
Reads w0, h0, aspect, bgNodes and fgNodes from desc.
parseXml: function()
Parses the specified XML string into a new XML document and returns the new document.
paste: function(graph)
Pastes the cells into the specified graph restoring the relation to parents, if possible.
mxEdgeLabelLayout.prototype.placeLabels = function(v,
e)
Places the labels of the given edges.
mxHierarchicalLayout.prototype.placementStage = function(initialX,
parent)
Executes the placement stage using mxCoordinateAssignment.
mxSwimlaneLayout.prototype.placementStage = function(initialX,
parent)
Executes the placement stage using mxCoordinateAssignment.
mxVmlCanvas2D.prototype.plainText = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the outline of the current path.
mxSession.prototype.poll = function()
Sends an asynchronous GET request to urlPoll.
mxPopupMenu.prototype.popup = function(x,
y,
cell,
evt)
Shows the popup menu for the given event and cell.
popup: function(content,
isInternalWindow)
Shows the specified text content in a new mxWindow or a new browser window if isInternalWindow is false.
post: function(url,
params,
onload,
onerror)
Posts the specified params to the given URL asynchronously and invokes the given functions depending on the request status.
mxCellRenderer.prototype.postConfigureShape = function(state)
Replaces any reserved words used for attributes, eg.
mxEditor.prototype.postDiagram = function (url,
data)
Hook for subclassers to override the posting of a diagram represented by the given node to the given URL.
mxGraph.prototype.postProcessCellStyle = function(style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
mxPrintPreview.prototype.print = function(css)
Opens the print preview and shows the print dialog.
printScreen: function(graph)
Prints the specified graph using a new window and the built-in print dialog.
mxCellMarker.prototype.process = function(me)
Processes the given event and cell and marks the state returned by getState with the color returned by getMarkerColor.
mxGraph.prototype.processChange = function(change)
Processes the given change and invalidates the respective cached data in view.
mxSession.prototype.processDelta = function(node)
Processes the given delta node which contains a sequence of edits which in turn map to one transaction on the remote model each.
mxSession.prototype.processEdit = function(node)
Processes the given edit by executing its changes and firing the required events via the model.
mxObjectCodec.prototype.processInclude = function(dec,
node,
into)
Returns true if the given node is an include directive and executes the include by decoding the XML document.
mxCoordinateAssignment.prototype.processReversedEdge = function(graph,
model)
Hook to add additional processing
mxSession.prototype.processState = function(node)
Processes the given state node which contains the current state of the remote model.
prompt: function(message,
defaultValue)
Displays the given message in a prompt dialog.
Returns the square distance between a segment and a point.
mxDictionary.prototype.put = function(key,
value)
Stores the value under the given key and returns the previous value for that key.
mxStylesheet.prototype.putCellStyle = function(name,
style)
Stores the given map of key, value pairs under the given name in styles.
mxStylesheet.prototype.putDefaultEdgeStyle = function(style)
Sets the default style for edges using defaultEdge as the stylename.
mxStylesheet.prototype.putDefaultVertexStyle = function(style)
Sets the default style for vertices using defaultVertex as the stylename.
mxImageBundle.prototype.putImage = function(key,
value,
fallback)
Adds the specified entry to the map.
mxCodec.prototype.putObject = function(id,
obj)
Assoiates the given object with the given ID and returns the given object.
putValue: function(name,
obj)
Puts the given object into the registry under the given name.
diff --git a/docs/js-api/index/Functions14.html b/docs/js-api/index/Functions14.html index fb6b2959f..770276a3a 100644 --- a/docs/js-api/index/Functions14.html +++ b/docs/js-api/index/Functions14.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
Q
 quadTo
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
Q
 quadTo
-
mxAbstractCanvas2D.prototype.quadTo = function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
mxVmlCanvas2D.prototype.quadTo = function(x1,
y1,
x2,
y2)
Replaces quadratic curve with bezier curve in VML.
mxXmlCanvas2D.prototype.quadTo = function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
+
mxAbstractCanvas2D.prototype.quadTo = function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
mxVmlCanvas2D.prototype.quadTo = function(x1,
y1,
x2,
y2)
Replaces quadratic curve with bezier curve in VML.
mxXmlCanvas2D.prototype.quadTo = function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
diff --git a/docs/js-api/index/Functions15.html b/docs/js-api/index/Functions15.html index 654a9a134..713347cbc 100644 --- a/docs/js-api/index/Functions15.html +++ b/docs/js-api/index/Functions15.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 rankCoordinates, mxCoordinateAssignment
 rankMedianPosition, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 reconfigure, mxShape
 rect
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 redirectMouseEvents, mxEvent
 redo
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawHandles
 redrawHtml, mxRectangleShape
 redrawHtmlShape
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxShape
 reduceTemperature, mxFastOrganicLayout
 reference, mxCodec
 refresh
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgGradients, mxShape
 remove
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent, mxGraph
 removeCursors, mxUtils
 removeEdge, mxCell
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeGestureListeners, mxEvent
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderPage, mxPrintPreview
 repaint
 repositionValid, mxCoordinateAssignment
 reset
 resetEdge, mxGraph
 resetEdges, mxGraph
 resetFirstTime, mxEditor
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resetValidationState, mxGraphView
 resize
 resizeCell
 resizeCells, mxGraph
 resizeChildCells, mxGraph
 resizeHeight, mxDivResizer
 resizeSwimlane, mxSwimlaneManager
 resizeWidth, mxDivResizer
 resolve, mxCellPath
 resolveColor, mxCellRenderer
 restore
 restoreClone, mxGraphModel
 resume, mxSession
 revalidate, mxGraphView
 revalidateState, mxCellStatePreview
 reversePortConstraints, mxUtils
 RhombusPerimeter, mxPerimeter
 rootChanged, mxGraphModel
 rotate
 rotateCell, mxVertexHandler
 rotateLabelBounds, mxCellRenderer
 rotatePoint, mxAbstractCanvas2D
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 rankCoordinates, mxCoordinateAssignment
 rankMedianPosition, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 reconfigure, mxShape
 rect
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 redirectMouseEvents, mxEvent
 redo
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawHandles
 redrawHtml, mxRectangleShape
 redrawHtmlShape
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxShape
 reduceTemperature, mxFastOrganicLayout
 reference, mxCodec
 refresh
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgGradients, mxShape
 remove
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent, mxGraph
 removeCursors, mxUtils
 removeEdge, mxCell
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeGestureListeners, mxEvent
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderPage, mxPrintPreview
 repaint
 repositionValid, mxCoordinateAssignment
 reset
 resetEdge, mxGraph
 resetEdges, mxGraph
 resetFirstTime, mxEditor
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resetValidationState, mxGraphView
 resize
 resizeCell
 resizeCells, mxGraph
 resizeChildCells, mxGraph
 resizeHeight, mxDivResizer
 resizeSwimlane, mxSwimlaneManager
 resizeWidth, mxDivResizer
 resolve, mxCellPath
 resolveColor, mxCellRenderer
 restore
 restoreClone, mxGraphModel
 resume, mxSession
 revalidate, mxGraphView
 revalidateState, mxCellStatePreview
 reversePortConstraints, mxUtils
 RhombusPerimeter, mxPerimeter
 rootChanged, mxGraphModel
 rotate
 rotateCell, mxVertexHandler
 rotateLabelBounds, mxCellRenderer
 rotatePoint, mxAbstractCanvas2D
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run
-
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSvgCanvas2D.prototype.rect = function(x,
y,
w,
h)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Sets the current path to a rectangle.
mxXmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Puts a rectangle into the drawing buffer.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
mxEdgeSegmentHandler.prototype.redraw = function()
Overridden to invoke refresh before the redraw.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redrawHtmlShape = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Reconfigures this shape.
mxShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state,
forced)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state,
forced)
Redraws the control for the given cell state.
mxEdgeHandler.prototype.redrawHandles = function()
Redraws the handles.
mxVertexHandler.prototype.redrawHandles = function()
Redraws the handles.
mxRectangleShape.prototype.redrawHtmlShape = function()
Allow optimization by replacing VML with HTML.
mxLabel.prototype.redrawHtmlShape = function()
Generic background painting implementation.
mxText.prototype.redrawHtmlShape = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state,
forced)
Redraws the label for the given cell state.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(c,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxShape.prototype.releaseSvgGradients = function(grads)
Paints the line shape.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
removeGestureListeners: function(node,
startListener,
moveListener,
endListener)
Removes the given listeners from mousedown, mousemove, mouseup and the respective touch events if mxClient.IS_TOUCH is true.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxPrintPreview.prototype.renderPage = function(w,
h,
dx,
dy,
content)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxCellHighlight.prototype.repaint = function()
Updates the highlight after a change of the model or view.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxAbstractCanvas2D.prototype.reset = function()
Resets the state of this canvas.
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxSvgCanvas2D.prototype.reset = function()
Returns any offsets for rendering pixels.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxGraphView.prototype.resetValidationState = function()
Resets the current validation state.
mxCellEditor.prototype.resize = function()
Returns modified.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
mxGraph.prototype.resizeCell = function(cell,
bounds,
recurse)
Sets the bounds of the given cell using resizeCells.
mxVertexHandler.prototype.resizeCell = function(cell,
dx,
dy,
index,
gridEnabled,
constrained)
Uses the given vector to change the bounds of the given cell in the graph using mxGraph.resizeCell.
mxGraph.prototype.resizeCells = function(cells,
bounds,
recurse)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
mxGraph.prototype.resizeChildCells = function(cell,
newGeo)
Resizes the child cells of the given cell for the given new geometry with respect to the current geometry of the cell.
Boolean specifying if the height should be updated.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h,
parentHorizontal)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
mxAbstractCanvas2D.prototype.restore = function()
Restores the current state.
mxXmlCanvas2D.prototype.restore = function()
Restores the drawing state.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
mxSvgCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxVmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxXmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the output around a given center.
mxVertexHandler.prototype.rotateCell = function(cell,
delta)
Rotates the given cell to the given rotation.
mxCellRenderer.prototype.rotateLabelBounds = function(state,
bounds)
Adds the shape rotation to the given label bounds and applies the alignment and offsets.
mxAbstractCanvas2D.prototype.rotatePoint = function(x,
y,
theta,
cx,
cy)
Rotates the given point and returns the result as an mxPoint.
mxSvgCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxXmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Puts a rounded rectangle into the drawing buffer.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
mxSwimlaneLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
+
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSvgCanvas2D.prototype.rect = function(x,
y,
w,
h)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Sets the current path to a rectangle.
mxXmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Puts a rectangle into the drawing buffer.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
mxEdgeSegmentHandler.prototype.redraw = function()
Overridden to invoke refresh before the redraw.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redrawHtmlShape = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Reconfigures this shape.
mxShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state,
forced)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state,
forced)
Redraws the control for the given cell state.
mxEdgeHandler.prototype.redrawHandles = function()
Redraws the handles.
mxVertexHandler.prototype.redrawHandles = function()
Redraws the handles.
mxRectangleShape.prototype.redrawHtmlShape = function()
Allow optimization by replacing VML with HTML.
mxLabel.prototype.redrawHtmlShape = function()
Generic background painting implementation.
mxText.prototype.redrawHtmlShape = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state,
forced)
Redraws the label for the given cell state.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(c,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxShape.prototype.releaseSvgGradients = function(grads)
Paints the line shape.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
removeGestureListeners: function(node,
startListener,
moveListener,
endListener)
Removes the given listeners from mousedown, mousemove, mouseup and the respective touch events if mxClient.IS_TOUCH is true.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxPrintPreview.prototype.renderPage = function(w,
h,
dx,
dy,
content)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxCellHighlight.prototype.repaint = function()
Updates the highlight after a change of the model or view.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxAbstractCanvas2D.prototype.reset = function()
Resets the state of this canvas.
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxSvgCanvas2D.prototype.reset = function()
Returns any offsets for rendering pixels.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxGraphView.prototype.resetValidationState = function()
Resets the current validation state.
mxCellEditor.prototype.resize = function()
Returns modified.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
mxGraph.prototype.resizeCell = function(cell,
bounds,
recurse)
Sets the bounds of the given cell using resizeCells.
mxVertexHandler.prototype.resizeCell = function(cell,
dx,
dy,
index,
gridEnabled,
constrained)
Uses the given vector to change the bounds of the given cell in the graph using mxGraph.resizeCell.
mxGraph.prototype.resizeCells = function(cells,
bounds,
recurse)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
mxGraph.prototype.resizeChildCells = function(cell,
newGeo)
Resizes the child cells of the given cell for the given new geometry with respect to the current geometry of the cell.
Boolean specifying if the height should be updated.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h,
parentHorizontal)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
mxAbstractCanvas2D.prototype.restore = function()
Restores the current state.
mxXmlCanvas2D.prototype.restore = function()
Restores the drawing state.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
mxSvgCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxVmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxXmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the output around a given center.
mxVertexHandler.prototype.rotateCell = function(cell,
delta)
Rotates the given cell to the given rotation.
mxCellRenderer.prototype.rotateLabelBounds = function(state,
bounds)
Adds the shape rotation to the given label bounds and applies the alignment and offsets.
mxAbstractCanvas2D.prototype.rotatePoint = function(x,
y,
theta,
cx,
cy)
Rotates the given point and returns the result as an mxPoint.
mxSvgCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxXmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Puts a rounded rectangle into the drawing buffer.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
mxSwimlaneLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
diff --git a/docs/js-api/index/Functions16.html b/docs/js-api/index/Functions16.html index 6b6146d82..4d620dff6 100644 --- a/docs/js-api/index/Functions16.html +++ b/docs/js-api/index/Functions16.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 save
 saveAs, mxUtils
 scale
 scaleAndTranslate, mxGraphView
 scaleCell, mxGraph
 scaleGraph, mxPanningHandler
 scrollCellToVisible, mxGraph
 scrollPointToVisible, mxGraph
 scrollRectToVisible, mxGraph
 SegmentConnector, mxEdgeStyle
 selectAll, mxGraph
 selectCell, mxGraph
 selectCellForEvent, mxGraph
 selectCells
 selectCellsForEvent, mxGraph
 selectChildCell, mxGraph
 selectDelayed, mxGraphHandler
 selectMode, mxToolbar
 selectNextCell, mxGraph
 selectParentCell, mxGraph
 selectPreviousCell, mxGraph
 selectRegion, mxGraph
 selectVertices, mxGraph
 send, mxXmlRequest
 setAbsoluteTerminalPoint, mxCellState
 setAddEnabled, mxSwimlaneManager
 setAllowDanglingEdges, mxGraph
 setAllowEval, mxGraphView
 setAllowLoops, mxGraph
 setAlpha
 setAttribute
 setAutoSizeCells, mxGraph
 setBackgroundImage, mxGraph
 setBaseDomain, mxUrlConverter
 setBaseUrl, mxUrlConverter
 setBinary, mxXmlRequest
 setBorder, mxGraph
 setBubbling, mxLayoutManager
 setCell, mxGraphSelectionModel
 setCellHeights, mxCompactTreeLayout
 setCellLocations, mxCoordinateAssignment
 setCells
 setCellsBendable, mxGraph
 setCellsCloneable, mxGraph
 setCellsDeletable, mxGraph
 setCellsDisconnectable, mxGraph
 setCellsEditable, mxGraph
 setCellsMovable, mxGraph
 setCellsResizable, mxGraph
 setCellsSelectable, mxGraph
 setCellStyle, mxGraph
 setCellStyleFlags
 setCellStyles
 setCellWarning, mxGraph
 setCloneEnabled, mxGraphHandler
 setCloneInvalidEdges, mxGraph
 setClosable, mxWindow
 setCollapsed
 setConnectable
 setConnectableEdges, mxGraph
 setConnectionConstraint, mxGraph
 setConstrainChildren, mxGraph
 setConstrainChildrenOnResize, mxGraph
 setCreateIds, mxGraphModel
 setCreateTarget, mxConnectionHandler
 setCurrentRoot, mxGraphView
 setCursor
 setDashed
 setDashPattern
 setDefaultParent, mxGraph
 setDisconnectOnMove, mxGraph
 setDropEnabled, mxGraph
 setEdge, mxCell
 setEdgePoints, mxGraphLayout
 setEdgePosition, mxCoordinateAssignment
 setEdgeStyleEnabled, mxGraphLayout
 setEnabled
 setEnterStopsCellEditing, mxGraph
 setEscapeEnabled, mxGraph
 setEventsEnabled, mxEventSource
 setEventSource, mxEventSource
 setExtendParents, mxGraph
 setExtendParentsOnAdd, mxGraph
 setFillColor
 setFontBackgroundColor, mxXmlCanvas2D
 setFontBorderColor, mxXmlCanvas2D
 setFontColor
 setFontFamily
 setFontSize
 setFontStyle
 setGeneralPurposeVariable
 setGeometry
 setGradient
 setGraph
 setGraphBounds, mxGraphView
 setGraphContainer, mxEditor
 setGridEnabled
 setGridSize, mxGraph
 setGuidesEnabled, mxDragSource
 setHideOnHover, mxTooltipHandler
 setHighlightColor
 setHorizontal, mxSwimlaneManager
 setHotspot, mxCellMarker
 setHotspotEnabled, mxCellMarker
 setHtmlLabels, mxGraph
 setId, mxCell
 setImage, mxWindow
 setInvokesStopCellEditing, mxGraph
 setLineCap
 setLineJoin
 setLocation, mxWindow
 setLocked, mxGraph
 setMaximizable, mxWindow
 setMinimizable, mxWindow
 setMiterLimit
 setMode, mxEditor
 setModified
 setMoveEnabled, mxGraphHandler
 setMultigraph, mxGraph
 setOpacity, mxUtils
 setOrthogonalEdge, mxGraphLayout
 setPanning, mxGraph
 setPanningEnabled, mxPanningHandler
 setParent, mxCell
 setPortsEnabled, mxGraph
 setPrefixedStyle, mxUtils
 setPreviewColor, mxEdgeHandler
 setRect, mxRectangle
 setRecursiveResize, mxGraph
 setRemoveCellsFromParent, mxGraphHandler
 setRendering, mxGraphView
 setRequestHeaders, mxXmlRequest
 setResizable, mxWindow
 setResizeContainer, mxGraph
 setResizeEnabled, mxSwimlaneManager
 setRoot, mxGraphModel
 setScale, mxGraphView
 setScrollable, mxWindow
 setSelectEnabled, mxGraphHandler
 setSelectionCell, mxGraph
 setSelectionCells, mxGraph
 setSelectionModel, mxGraph
 setShadow
 setShadowAlpha
 setShadowColor
 setShadowOffset
 setShiftDownwards, mxSpaceManager
 setShiftRightwards, mxSpaceManager
 setSingleSelection, mxGraphSelectionModel
 setSize, mxWindow
 setSplitEnabled, mxGraph
 setStates
 setStatus, mxEditor
 setStatusContainer, mxEditor
 setStrokeColor
 setStrokeWidth
 setStyle
 setStyleFlag, mxUtils
 setStylesheet, mxGraph
 setSwimlaneNesting, mxGraph
 setSwimlaneSelectionEnabled, mxGraph
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTextContent, mxUtils
 setTitle, mxWindow
 setTitleContainer, mxEditor
 setTolerance, mxGraph
 setToolbarContainer, mxEditor
 setTooltips, mxGraph
 setTranslate, mxGraphView
 setTransparentBackgroundImage, mxShape
 setValue
 setVertex, mxCell
 setVertexLabelsMovable, mxGraph
 setVertexLocation
 setVisible
 setVisibleTerminalState, mxCellState
 setX, mxGraphAbstractHierarchyCell
 setY, mxGraphAbstractHierarchyCell
 setZoomEnabled, mxOutline
 shiftCell, mxSpaceManager
 shouldRemoveCellsFromParent, mxGraphHandler
 show
 showHelp, mxEditor
 showMenu, mxPopupMenu
 showOutline, mxEditor
 showProperties, mxEditor
 showSubmenu, mxPopupMenu
 showTasks, mxEditor
 SideToSide, mxEdgeStyle
 simulate, mxXmlRequest
 sizeDidChange, mxGraph
 snap
 sortCells, mxUtils
 sortOutgoingEdges, mxCompactTreeLayout
 source, mxOutline
 splitEdge, mxGraph
 start
 startAnimation, mxAnimation
 startDrag, mxDragSource
 startEditing
 startEditingAtCell, mxGraph
 stateValidated, mxGraphView
 stop, mxSession
 stopAnimation, mxAnimation
 stopDrag, mxDragSource
 stopEditing
 stopRecursion, mxMorphing
 stroke
 styleForCellChanged, mxGraphModel
 styles, mxStylesheet
 submit, mxUtils
 suspend, mxSession
 swap, mxGeometry
 swapBounds, mxGraph
 swapStyles, mxEditor
 swimlaneAdded, mxSwimlaneManager
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 save
 saveAs, mxUtils
 scale
 scaleAndTranslate, mxGraphView
 scaleCell, mxGraph
 scaleGraph, mxPanningHandler
 scrollCellToVisible, mxGraph
 scrollPointToVisible, mxGraph
 scrollRectToVisible, mxGraph
 SegmentConnector, mxEdgeStyle
 selectAll, mxGraph
 selectCell, mxGraph
 selectCellForEvent, mxGraph
 selectCells
 selectCellsForEvent, mxGraph
 selectChildCell, mxGraph
 selectDelayed, mxGraphHandler
 selectMode, mxToolbar
 selectNextCell, mxGraph
 selectParentCell, mxGraph
 selectPreviousCell, mxGraph
 selectRegion, mxGraph
 selectVertices, mxGraph
 send, mxXmlRequest
 setAbsoluteTerminalPoint, mxCellState
 setAddEnabled, mxSwimlaneManager
 setAllowDanglingEdges, mxGraph
 setAllowEval, mxGraphView
 setAllowLoops, mxGraph
 setAlpha
 setAttribute
 setAutoSizeCells, mxGraph
 setBackgroundImage, mxGraph
 setBaseDomain, mxUrlConverter
 setBaseUrl, mxUrlConverter
 setBinary, mxXmlRequest
 setBorder, mxGraph
 setBubbling, mxLayoutManager
 setCell, mxGraphSelectionModel
 setCellHeights, mxCompactTreeLayout
 setCellLocations, mxCoordinateAssignment
 setCells
 setCellsBendable, mxGraph
 setCellsCloneable, mxGraph
 setCellsDeletable, mxGraph
 setCellsDisconnectable, mxGraph
 setCellsEditable, mxGraph
 setCellsMovable, mxGraph
 setCellsResizable, mxGraph
 setCellsSelectable, mxGraph
 setCellStyle, mxGraph
 setCellStyleFlags
 setCellStyles
 setCellWarning, mxGraph
 setCloneEnabled, mxGraphHandler
 setCloneInvalidEdges, mxGraph
 setClosable, mxWindow
 setCollapsed
 setConnectable
 setConnectableEdges, mxGraph
 setConnectionConstraint, mxGraph
 setConstrainChildren, mxGraph
 setConstrainChildrenOnResize, mxGraph
 setCreateIds, mxGraphModel
 setCreateTarget, mxConnectionHandler
 setCurrentRoot, mxGraphView
 setCursor
 setDashed
 setDashPattern
 setDefaultParent, mxGraph
 setDisconnectOnMove, mxGraph
 setDropEnabled, mxGraph
 setEdge, mxCell
 setEdgePoints, mxGraphLayout
 setEdgePosition, mxCoordinateAssignment
 setEdgeStyleEnabled, mxGraphLayout
 setEnabled
 setEnterStopsCellEditing, mxGraph
 setEscapeEnabled, mxGraph
 setEventsEnabled, mxEventSource
 setEventSource, mxEventSource
 setExtendParents, mxGraph
 setExtendParentsOnAdd, mxGraph
 setFillColor
 setFontBackgroundColor, mxXmlCanvas2D
 setFontBorderColor, mxXmlCanvas2D
 setFontColor
 setFontFamily
 setFontSize
 setFontStyle
 setGeneralPurposeVariable
 setGeometry
 setGradient
 setGraph
 setGraphBounds, mxGraphView
 setGraphContainer, mxEditor
 setGridEnabled
 setGridSize, mxGraph
 setGuidesEnabled, mxDragSource
 setHideOnHover, mxTooltipHandler
 setHighlightColor
 setHorizontal, mxSwimlaneManager
 setHotspot, mxCellMarker
 setHotspotEnabled, mxCellMarker
 setHtmlLabels, mxGraph
 setId, mxCell
 setImage, mxWindow
 setInvokesStopCellEditing, mxGraph
 setLineCap
 setLineJoin
 setLocation, mxWindow
 setLocked, mxGraph
 setMaximizable, mxWindow
 setMinimizable, mxWindow
 setMiterLimit
 setMode, mxEditor
 setModified
 setMoveEnabled, mxGraphHandler
 setMultigraph, mxGraph
 setOpacity, mxUtils
 setOrthogonalEdge, mxGraphLayout
 setPanning, mxGraph
 setPanningEnabled, mxPanningHandler
 setParent, mxCell
 setPortsEnabled, mxGraph
 setPrefixedStyle, mxUtils
 setPreviewColor, mxEdgeHandler
 setRect, mxRectangle
 setRecursiveResize, mxGraph
 setRemoveCellsFromParent, mxGraphHandler
 setRendering, mxGraphView
 setRequestHeaders, mxXmlRequest
 setResizable, mxWindow
 setResizeContainer, mxGraph
 setResizeEnabled, mxSwimlaneManager
 setRoot, mxGraphModel
 setScale, mxGraphView
 setScrollable, mxWindow
 setSelectEnabled, mxGraphHandler
 setSelectionCell, mxGraph
 setSelectionCells, mxGraph
 setSelectionModel, mxGraph
 setShadow
 setShadowAlpha
 setShadowColor
 setShadowOffset
 setShiftDownwards, mxSpaceManager
 setShiftRightwards, mxSpaceManager
 setSingleSelection, mxGraphSelectionModel
 setSize, mxWindow
 setSplitEnabled, mxGraph
 setStates
 setStatus, mxEditor
 setStatusContainer, mxEditor
 setStrokeColor
 setStrokeWidth
 setStyle
 setStyleFlag, mxUtils
 setStylesheet, mxGraph
 setSwimlaneNesting, mxGraph
 setSwimlaneSelectionEnabled, mxGraph
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTextContent, mxUtils
 setTitle, mxWindow
 setTitleContainer, mxEditor
 setTolerance, mxGraph
 setToolbarContainer, mxEditor
 setTooltips, mxGraph
 setTranslate, mxGraphView
 setTransparentBackgroundImage, mxShape
 setValue
 setVertex, mxCell
 setVertexLabelsMovable, mxGraph
 setVertexLocation
 setVisible
 setVisibleTerminalState, mxCellState
 setX, mxGraphAbstractHierarchyCell
 setY, mxGraphAbstractHierarchyCell
 setZoomEnabled, mxOutline
 shiftCell, mxSpaceManager
 shouldRemoveCellsFromParent, mxGraphHandler
 show
 showHelp, mxEditor
 showMenu, mxPopupMenu
 showOutline, mxEditor
 showProperties, mxEditor
 showSubmenu, mxPopupMenu
 showTasks, mxEditor
 SideToSide, mxEdgeStyle
 simulate, mxXmlRequest
 sizeDidChange, mxGraph
 snap
 sortCells, mxUtils
 sortOutgoingEdges, mxCompactTreeLayout
 source, mxOutline
 splitEdge, mxGraph
 start
 startAnimation, mxAnimation
 startDrag, mxDragSource
 startEditing
 startEditingAtCell, mxGraph
 stateValidated, mxGraphView
 stop, mxSession
 stopAnimation, mxAnimation
 stopDrag, mxDragSource
 stopEditing
 stopRecursion, mxMorphing
 stroke
 styleForCellChanged, mxGraphModel
 styles, mxStylesheet
 submit, mxUtils
 suspend, mxSession
 swap, mxGeometry
 swapBounds, mxGraph
 swapStyles, mxEditor
 swimlaneAdded, mxSwimlaneManager
-
mxAbstractCanvas2D.prototype.save = function()
Saves the current state.
mxAutoSaveManager.prototype.save = function()
Empty hook that is called if the graph should be saved.
mxEditor.prototype.save = function (url,
linefeed)
Posts the string returned by writeGraphModel to the given URL or the URL returned by getUrlPost.
save: function(filename,
content)
Saves the specified content in the given file on the local file system.
mxXmlCanvas2D.prototype.save = function()
Saves the drawing state.
saveAs: function(content)
Saves the specified content by displaying a dialog to save the content as a file on the local filesystem.
mxAbstractCanvas2D.prototype.scale = function(value)
Scales the current state.
mxXmlCanvas2D.prototype.scale = function(value)
Scales the output.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxGraph.prototype.scaleCell = function(cell,
dx,
dy,
recurse)
Scales the points, position and size of the given cell according to the given vertical and horizontal scaling factors.
mxPanningHandler.prototype.scaleGraph = function(scale,
preview)
Handles pinch events on touch devices.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
SegmentConnector: function(state,
source,
target,
hints,
result)
Implements an orthogonal edge style.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxConnectionHandler.prototype.selectCells = function(edge,
target)
Selects the given edge after adding a new connection.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraphHandler.prototype.selectDelayed = function(me)
Implements the delayed selection for the given mouse event.
mxToolbar.prototype.selectMode = function(domNode,
funct)
Resets the state of the previously selected mode and displays the given DOM node as selected.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxXmlRequest.prototype.send = function(onload,
onerror)
Send the request to the target URL using the specified functions to process the response asychronously.
mxCellState.prototype.setAbsoluteTerminalPoint = function (point,
isSource)
Sets the first or last point in absolutePoints depending on isSource.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
mxAbstractCanvas2D.prototype.setAlpha = function(value)
Sets the current alpha.
mxXmlCanvas2D.prototype.setAlpha = function(value)
Sets the current alpha.
mxCell.prototype.setAttribute = function(name,
value)
Sets the specified attribute on the user object if it is an XML node.
mxCodec.prototype.setAttribute = function(node,
attribute,
value)
Sets the attribute on the specified node to value.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
setBaseDomain: function(value)
Sets baseDomain.
setBaseUrl: function(value)
Sets baseUrl.
mxXmlRequest.prototype.setBinary = function(value)
Sets binary.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxLayoutManager.prototype.setBubbling = function(value)
Sets bubbling.
mxGraphSelectionModel.prototype.setCell = function(cell)
Selects the specified mxCell using setCells.
mxCompactTreeLayout.prototype.setCellHeights = function(node,
rank)
Set the cells heights (relative to the layout direction) when the tops of each rank are to be aligned
mxCoordinateAssignment.prototype.setCellLocations = function(graph,
model)
Sets the cell locations in the facade to those stored after this layout processing step has completed.
setCells: function(cells)
Sets the cells in the clipboard.
mxGraphSelectionModel.prototype.setCells = function(cells)
Selects the given array of mxCells and fires a change event.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlags: function(model,
cells,
key,
flag,
value)
Sets or toggles the flag bit for the given key in the cell’s styles.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
setCellStyles: function(model,
cells,
key,
value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraphHandler.prototype.setCloneEnabled = function(value)
Sets cloneEnabled.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxWindow.prototype.setClosable = function(closable)
Sets the image associated with the window.
mxCell.prototype.setCollapsed = function(collapsed)
Sets the collapsed state.
mxGraphModel.prototype.setCollapsed = function(cell,
collapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
mxCell.prototype.setConnectable = function(connectable)
Sets the connectable state.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraph.prototype.setConstrainChildrenOnResize = function(value)
Sets constrainChildrenOnResize.
mxGraphModel.prototype.setCreateIds = function(value)
Sets createIds.
mxConnectionHandler.prototype.setCreateTarget = function(value)
Sets createTarget.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxCellState.prototype.setCursor = function (cursor)
Sets the given cursor on the shape and text shape.
mxShape.prototype.setCursor = function(cursor)
Sets the cursor on the given shape.
mxAbstractCanvas2D.prototype.setDashed = function(value)
Enables or disables dashed lines.
mxXmlCanvas2D.prototype.setDashed = function(value)
Enables or disables dashed lines.
mxAbstractCanvas2D.prototype.setDashPattern = function(value)
Sets the current dash pattern.
mxXmlCanvas2D.prototype.setDashPattern = function(value)
Sets the current dash pattern.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxCell.prototype.setEdge = function(edge)
Specifies if the cell is an edge.
mxGraphLayout.prototype.setEdgePoints = function(edge,
points)
Replaces the array of mxPoints in the geometry of the given edge with the given array of mxPoints.
mxCoordinateAssignment.prototype.setEdgePosition = function(cell)
Fixes the control points
mxGraphLayout.prototype.setEdgeStyleEnabled = function(edge,
value)
Disables or enables the edge style of the given edge.
mxAutoSaveManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxCellMarker.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConnectionHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConstraintHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxDragSource.prototype.setEnabled = function(value)
Sets enabled.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraphHandler.prototype.setEnabled = function(value)
Sets enabled.
mxKeyHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling by updating enabled.
mxLayoutManager.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxOutline.prototype.setEnabled = function(value)
Enables or disables event handling.
mxPopupMenu.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxRubberband.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxSelectionCellsHandler.prototype.setEnabled = function(value)
Sets enabled.
mxSpaceManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxTooltipHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
setEnabled: function(value)
Sets enabled.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxEventSource.prototype.setEventsEnabled = function(value)
Sets eventsEnabled.
mxEventSource.prototype.setEventSource = function(value)
Sets eventSource.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
mxAbstractCanvas2D.prototype.setFillColor = function(value)
Sets the current fill color.
mxXmlCanvas2D.prototype.setFillColor = function(value)
Sets the current fill color.
mxXmlCanvas2D.prototype.setFontBackgroundColor = function(value)
Sets the current font background color.
mxXmlCanvas2D.prototype.setFontBorderColor = function(value)
Sets the current font border color.
mxAbstractCanvas2D.prototype.setFontColor = function(value)
Sets the current font color.
mxXmlCanvas2D.prototype.setFontColor = function(value)
Sets the current font color.
mxAbstractCanvas2D.prototype.setFontFamily = function(value)
Sets the current font family.
mxXmlCanvas2D.prototype.setFontFamily = function(value)
Sets the current font family.
mxAbstractCanvas2D.prototype.setFontSize = function(value)
Sets the current font size.
mxXmlCanvas2D.prototype.setFontSize = function(value)
Sets the current font size.
mxAbstractCanvas2D.prototype.setFontStyle = function(value)
Sets the current font style.
mxXmlCanvas2D.prototype.setFontStyle = function(value)
Sets the current font style.
mxGraphAbstractHierarchyCell.prototype.setGeneralPurposeVariable = function(
   layer,
   value
)
Set the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxGraphHierarchyNode.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxCell.prototype.setGeometry = function(geometry)
Sets the mxGeometry to be used as the geometry.
mxGraphModel.prototype.setGeometry = function(cell,
geometry)
Sets the mxGeometry of the given mxCell.
mxAbstractCanvas2D.prototype.setGradient = function(color1,
color2,
x,
y,
w,
h,
direction,
alpha1,
alpha2)
Sets the current gradient.
mxXmlCanvas2D.prototype.setGradient = function(color1,
color2,
x,
y,
w,
h,
direction,
alpha1,
alpha2)
Sets the gradient.
mxAutoSaveManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxLayoutManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSpaceManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxEditor.prototype.setGraphContainer = function (container)
Sets the graph’s container using mxGraph.init.
mxDragSource.prototype.setGridEnabled = function(value)
Sets gridEnabled.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxDragSource.prototype.setGuidesEnabled = function(value)
Sets guidesEnabled.
mxTooltipHandler.prototype.setHideOnHover = function(value)
Sets hideOnHover.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxGraphHandler.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxCellMarker.prototype.setHotspot = function(hotspot)
Sets the hotspot.
mxCellMarker.prototype.setHotspotEnabled = function(enabled)
Specifies whether the hotspot should be used in intersects.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxCell.prototype.setId = function(id)
Sets the Id of the cell to the given string.
mxWindow.prototype.setImage = function(image)
Sets the image associated with the window.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
mxAbstractCanvas2D.prototype.setLineCap = function(value)
Sets the current line cap.
mxXmlCanvas2D.prototype.setLineCap = function(value)
Sets the line cap.
mxAbstractCanvas2D.prototype.setLineJoin = function(value)
Sets the current line join.
mxXmlCanvas2D.prototype.setLineJoin = function(value)
Sets the line join.
mxWindow.prototype.setLocation = function(x,
y)
Sets the upper, left corner of the window.
Sets if any cell may be moved, sized, bended, disconnected, edited or selected.
mxWindow.prototype.setMaximizable = function(maximizable)
Sets if the window is maximizable.
mxWindow.prototype.setMinimizable = function(minimizable)
Sets if the window is minimizable.
mxAbstractCanvas2D.prototype.setMiterLimit = function(value)
Sets the current miter limit.
mxXmlCanvas2D.prototype.setMiterLimit = function(value)
Sets the miter limit.
mxEditor.prototype.setMode = function(modename)
Puts the graph into the specified mode.
mxCellEditor.prototype.setModified = function(value)
Sets modified to the specified boolean value.
mxEditor.prototype.setModified = function (value)
Sets modified to the specified boolean value.
mxGraphHandler.prototype.setMoveEnabled = function(value)
Sets moveEnabled.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
setOpacity: function(node,
value)
Sets the opacity of the specified DOM node to the given value in %.
mxGraphLayout.prototype.setOrthogonalEdge = function(edge,
value)
Disables or enables orthogonal end segments of the given edge.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxCell.prototype.setParent = function(parent)
Sets the parent cell.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
setPrefixedStyle: function()
Adds the given style with the standard name and an optional vendor prefix for the current browser.
mxEdgeHandler.prototype.setPreviewColor = function(color)
Sets the color of the preview to the given value.
mxRectangle.prototype.setRect = function(x,
y,
w,
h)
Sets this rectangle to the specified values
mxGraph.prototype.setRecursiveResize = function(value)
Sets recursiveResize.
mxGraphHandler.prototype.setRemoveCellsFromParent = function(value)
Sets removeCellsFromParent.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxXmlRequest.prototype.setRequestHeaders = function(request,
params)
Sets the headers for the given request and parameters.
mxWindow.prototype.setResizable = function(resizable)
Sets if the window should be resizable.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxGraphModel.prototype.setRoot = function(root)
Sets the root of the model using mxRootChange and adds the change to the current transaction.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxWindow.prototype.setScrollable = function(scrollable)
Sets if the window contents should be scrollable.
mxGraphHandler.prototype.setSelectEnabled = function(value)
Sets selectEnabled.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxAbstractCanvas2D.prototype.setShadow = function(enabled)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadow = function(value)
Enables or disables shadows.
mxAbstractCanvas2D.prototype.setShadowAlpha = function(value)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadowAlpha = function(value)
Sets the current shadows alpha.
mxAbstractCanvas2D.prototype.setShadowColor = function(value)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadowColor = function(value)
Sets the current shadow color.
mxAbstractCanvas2D.prototype.setShadowOffset = function(dx,
dy)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadowOffset = function(dx,
dy)
Sets the current shadow offset.
mxSpaceManager.prototype.setShiftDownwards = function(value)
Enables or disables event handling.
mxSpaceManager.prototype.setShiftRightwards = function(value)
Enables or disables event handling.
mxGraphSelectionModel.prototype.setSingleSelection = function(singleSelection)
Sets the singleSelection flag.
mxWindow.prototype.setSize = function(width,
height)
Sets the size of the window.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGuide.prototype.setStates = function(states)
Sets the mxCellStates that should be used for alignment.
mxEditor.prototype.setStatus = function (message)
Display the specified message in the status bar.
mxEditor.prototype.setStatusContainer = function (container)
Creates the status using the specified container.
mxAbstractCanvas2D.prototype.setStrokeColor = function(value)
Sets the current stroke color.
mxXmlCanvas2D.prototype.setStrokeColor = function(value)
Sets the current stroke color.
mxAbstractCanvas2D.prototype.setStrokeWidth = function(value)
Sets the current stroke width.
mxXmlCanvas2D.prototype.setStrokeWidth = function(value)
Sets the current stroke width.
mxCell.prototype.setStyle = function(style)
Sets the string to be used as the style.
mxGraphModel.prototype.setStyle = function(cell,
style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
setStyle: function(style,
key,
value)
Adds or removes the given key, value pair to the style and returns the new style.
setStyleFlag: function(style,
key,
flag,
value)
Sets or removes the given key from the specified style and returns the new style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxCell.prototype.setTerminal = function(terminal,
isSource)
Sets the source or target terminal and returns the new terminal.
mxGraphModel.prototype.setTerminal = function(edge,
terminal,
isSource)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
mxGeometry.prototype.setTerminalPoint = function(point,
isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
mxGraphModel.prototype.setTerminals = function(edge,
source,
target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
setTextContent: function(node,
text)
Sets the text content of the specified node.
mxWindow.prototype.setTitle = function(title)
Sets the window title to the given string.
mxEditor.prototype.setTitleContainer = function (container)
Creates a listener to update the inner HTML of the specified DOM node with the value of getTitle.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxEditor.prototype.setToolbarContainer = function (container)
Initializes the toolbar for the given container.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxShape.prototype.setTransparentBackgroundImage = function(node)
Sets a transparent background CSS style to catch all events.
mxCell.prototype.setValue = function(value)
Sets the user object of the cell.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxCell.prototype.setVertex = function(vertex)
Specifies if the cell is a vertex.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxCoordinateAssignment.prototype.setVertexLocation = function(cell)
Fixes the position of the specified vertex.
mxGraphLayout.prototype.setVertexLocation = function(cell,
x,
y)
Sets the new position of the given cell taking into account the size of the bounding box if useBoundingBox is true.
mxCell.prototype.setVisible = function(visible)
Specifies if the cell is visible.
mxGraphModel.prototype.setVisible = function(cell,
visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
setVisible: function(visible)
Shows or hides the console.
mxWindow.prototype.setVisible = function(visible)
Shows or hides the window depending on the given flag.
mxCellState.prototype.setVisibleTerminalState = function (terminalState,
source)
Sets the visible source or target terminal state.
mxGraphAbstractHierarchyCell.prototype.setX = function(layer,
value)
Set the value of x for the specified layer
mxGraphAbstractHierarchyCell.prototype.setY = function(layer,
value)
Set the value of y for the specified layer
mxOutline.prototype.setZoomEnabled = function(value)
Enables or disables the zoom handling by showing or hiding the respective handle.
mxSpaceManager.prototype.shiftCell = function(cell,
dx,
dy,
Ox0,
y0,
right,
bottom,
fx,
fy,
extendParent)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxGraphHandler.prototype.shouldRemoveCellsFromParent = function(parent,
cells,
evt)
Returns true if the given cells should be removed from the parent for the specified mousereleased event.
mxCellStatePreview.prototype.show = function(visitor)
show: function()
Shows the console.
mxMorphing.prototype.show = function(move)
Shows the changes in the given mxCellStatePreview.
mxTooltipHandler.prototype.show = function(tip,
x,
y)
Shows the tooltip for the specified cell and optional index at the specified location (with a vertical offset of 10 pixels).
show: function(graph,
doc,
x0,
y0,
w,
h)
Copies the styles and the markup from the graph’s container into the given document and removes all cursor styles.
mxWindow.prototype.show = function()
Shows the window.
mxEditor.prototype.showHelp = function (tasks)
Shows the help window.
mxPopupMenu.prototype.showMenu = function()
Shows the menu.
mxEditor.prototype.showOutline = function ()
Shows the outline window.
mxEditor.prototype.showProperties = function (cell)
Creates and shows the properties dialog for the given cell.
mxPopupMenu.prototype.showSubmenu = function(parent,
row)
Shows the submenu inside the given parent row.
mxEditor.prototype.showTasks = function ()
Shows the tasks window.
SideToSide: function (state,
source,
target,
points,
result)
Implements a vertical elbow edge.
mxXmlRequest.prototype.simulate = function(doc,
target)
Creates and posts a request to the given target URL using a dynamically created form inside the given document.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraphHandler.prototype.snap = function(vector)
Snaps the given vector to the grid and returns the given mxPoint instance.
sortCells: function(cells,
ascending)
Sorts the given cells according to the order in the cell hierarchy.
mxCompactTreeLayout.prototype.sortOutgoingEdges = function(source,
edges)
Called if sortEdges is true to sort the array of outgoing edges in place.
Reference to the source mxGraph.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxConnectionHandler.prototype.start = function(state,
x,
y,
edgeState)
Starts a new connection for the given state and coordinates.
mxEdgeHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxGraphHandler.prototype.start = function(cell,
x,
y)
Starts the handling of the mouse gesture.
mxPanningHandler.prototype.start = function(me)
Starts panning at the given event.
mxRubberband.prototype.start = function(x,
y)
Sets the start point for the rubberband selection.
mxSession.prototype.start = function()
mxVertexHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxAnimation.prototype.startAnimation = function()
Starts the animation by repeatedly invoking updateAnimation.
mxDragSource.prototype.startDrag = function(evt)
Creates the dragElement using createDragElement.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxGraphView.prototype.stateValidated = function(state)
Invoked when a state has been processed in validatePoints.
mxSession.prototype.stop = function(reason)
Stops the session and fires a disconnect event.
mxAnimation.prototype.stopAnimation = function()
Stops the animation by deleting the timer and fires an mxEvent.DONE.
mxDragSource.prototype.stopDrag = function(evt)
Removes and destroys the dragElement.
mxCellEditor.prototype.stopEditing = function(cancel)
Stops the editor and applies the value if cancel is false.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxMorphing.prototype.stopRecursion = function(state,
delta)
Returns true if the animation should not recursively find more deltas for children if the given parent state has been animated.
mxSvgCanvas2D.prototype.stroke = function()
Paints the outline of the current path.
mxVmlCanvas2D.prototype.stroke = function()
Paints the outline of the current path.
mxXmlCanvas2D.prototype.stroke = function()
Paints the outline of the current drawing buffer.
mxGraphModel.prototype.styleForCellChanged = function(cell,
style)
Inner callback to update the style of the given mxCell using mxCell.setStyle and return the previous style.
Maps from names to cell styles.
submit: function(url,
params,
doc,
target)
Submits the given parameters to the specified URL using mxXmlRequest.simulate and returns the mxXmlRequest.
mxSession.prototype.suspend = function()
Suspends the polling.
mxGeometry.prototype.swap = function()
Swaps the x, y, width and height with the values stored in alternateBounds and puts the previous values into alternateBounds as a rectangle.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxEditor.prototype.swapStyles = function (first,
second)
Swaps the styles for the given names in the graph’s stylesheet and refreshes the graph.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
+
mxAbstractCanvas2D.prototype.save = function()
Saves the current state.
mxAutoSaveManager.prototype.save = function()
Empty hook that is called if the graph should be saved.
mxEditor.prototype.save = function (url,
linefeed)
Posts the string returned by writeGraphModel to the given URL or the URL returned by getUrlPost.
save: function(filename,
content)
Saves the specified content in the given file on the local file system.
mxXmlCanvas2D.prototype.save = function()
Saves the drawing state.
saveAs: function(content)
Saves the specified content by displaying a dialog to save the content as a file on the local filesystem.
mxAbstractCanvas2D.prototype.scale = function(value)
Scales the current state.
mxXmlCanvas2D.prototype.scale = function(value)
Scales the output.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxGraph.prototype.scaleCell = function(cell,
dx,
dy,
recurse)
Scales the points, position and size of the given cell according to the given vertical and horizontal scaling factors.
mxPanningHandler.prototype.scaleGraph = function(scale,
preview)
Handles pinch events on touch devices.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
SegmentConnector: function(state,
source,
target,
hints,
result)
Implements an orthogonal edge style.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxConnectionHandler.prototype.selectCells = function(edge,
target)
Selects the given edge after adding a new connection.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraphHandler.prototype.selectDelayed = function(me)
Implements the delayed selection for the given mouse event.
mxToolbar.prototype.selectMode = function(domNode,
funct)
Resets the state of the previously selected mode and displays the given DOM node as selected.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxXmlRequest.prototype.send = function(onload,
onerror)
Send the request to the target URL using the specified functions to process the response asychronously.
mxCellState.prototype.setAbsoluteTerminalPoint = function (point,
isSource)
Sets the first or last point in absolutePoints depending on isSource.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
mxAbstractCanvas2D.prototype.setAlpha = function(value)
Sets the current alpha.
mxXmlCanvas2D.prototype.setAlpha = function(value)
Sets the current alpha.
mxCell.prototype.setAttribute = function(name,
value)
Sets the specified attribute on the user object if it is an XML node.
mxCodec.prototype.setAttribute = function(node,
attribute,
value)
Sets the attribute on the specified node to value.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
setBaseDomain: function(value)
Sets baseDomain.
setBaseUrl: function(value)
Sets baseUrl.
mxXmlRequest.prototype.setBinary = function(value)
Sets binary.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxLayoutManager.prototype.setBubbling = function(value)
Sets bubbling.
mxGraphSelectionModel.prototype.setCell = function(cell)
Selects the specified mxCell using setCells.
mxCompactTreeLayout.prototype.setCellHeights = function(node,
rank)
Set the cells heights (relative to the layout direction) when the tops of each rank are to be aligned
mxCoordinateAssignment.prototype.setCellLocations = function(graph,
model)
Sets the cell locations in the facade to those stored after this layout processing step has completed.
setCells: function(cells)
Sets the cells in the clipboard.
mxGraphSelectionModel.prototype.setCells = function(cells)
Selects the given array of mxCells and fires a change event.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlags: function(model,
cells,
key,
flag,
value)
Sets or toggles the flag bit for the given key in the cell’s styles.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
setCellStyles: function(model,
cells,
key,
value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraphHandler.prototype.setCloneEnabled = function(value)
Sets cloneEnabled.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxWindow.prototype.setClosable = function(closable)
Sets the image associated with the window.
mxCell.prototype.setCollapsed = function(collapsed)
Sets the collapsed state.
mxGraphModel.prototype.setCollapsed = function(cell,
collapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
mxCell.prototype.setConnectable = function(connectable)
Sets the connectable state.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraph.prototype.setConstrainChildrenOnResize = function(value)
Sets constrainChildrenOnResize.
mxGraphModel.prototype.setCreateIds = function(value)
Sets createIds.
mxConnectionHandler.prototype.setCreateTarget = function(value)
Sets createTarget.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxCellState.prototype.setCursor = function (cursor)
Sets the given cursor on the shape and text shape.
mxShape.prototype.setCursor = function(cursor)
Sets the cursor on the given shape.
mxAbstractCanvas2D.prototype.setDashed = function(value)
Enables or disables dashed lines.
mxXmlCanvas2D.prototype.setDashed = function(value)
Enables or disables dashed lines.
mxAbstractCanvas2D.prototype.setDashPattern = function(value)
Sets the current dash pattern.
mxXmlCanvas2D.prototype.setDashPattern = function(value)
Sets the current dash pattern.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxCell.prototype.setEdge = function(edge)
Specifies if the cell is an edge.
mxGraphLayout.prototype.setEdgePoints = function(edge,
points)
Replaces the array of mxPoints in the geometry of the given edge with the given array of mxPoints.
mxCoordinateAssignment.prototype.setEdgePosition = function(cell)
Fixes the control points
mxGraphLayout.prototype.setEdgeStyleEnabled = function(edge,
value)
Disables or enables the edge style of the given edge.
mxAutoSaveManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxCellMarker.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConnectionHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConstraintHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxDragSource.prototype.setEnabled = function(value)
Sets enabled.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraphHandler.prototype.setEnabled = function(value)
Sets enabled.
mxKeyHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling by updating enabled.
mxLayoutManager.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxOutline.prototype.setEnabled = function(value)
Enables or disables event handling.
mxPopupMenu.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxRubberband.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxSelectionCellsHandler.prototype.setEnabled = function(value)
Sets enabled.
mxSpaceManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxTooltipHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
setEnabled: function(value)
Sets enabled.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxEventSource.prototype.setEventsEnabled = function(value)
Sets eventsEnabled.
mxEventSource.prototype.setEventSource = function(value)
Sets eventSource.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
mxAbstractCanvas2D.prototype.setFillColor = function(value)
Sets the current fill color.
mxXmlCanvas2D.prototype.setFillColor = function(value)
Sets the current fill color.
mxXmlCanvas2D.prototype.setFontBackgroundColor = function(value)
Sets the current font background color.
mxXmlCanvas2D.prototype.setFontBorderColor = function(value)
Sets the current font border color.
mxAbstractCanvas2D.prototype.setFontColor = function(value)
Sets the current font color.
mxXmlCanvas2D.prototype.setFontColor = function(value)
Sets the current font color.
mxAbstractCanvas2D.prototype.setFontFamily = function(value)
Sets the current font family.
mxXmlCanvas2D.prototype.setFontFamily = function(value)
Sets the current font family.
mxAbstractCanvas2D.prototype.setFontSize = function(value)
Sets the current font size.
mxXmlCanvas2D.prototype.setFontSize = function(value)
Sets the current font size.
mxAbstractCanvas2D.prototype.setFontStyle = function(value)
Sets the current font style.
mxXmlCanvas2D.prototype.setFontStyle = function(value)
Sets the current font style.
mxGraphAbstractHierarchyCell.prototype.setGeneralPurposeVariable = function(
   layer,
   value
)
Set the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxGraphHierarchyNode.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxCell.prototype.setGeometry = function(geometry)
Sets the mxGeometry to be used as the geometry.
mxGraphModel.prototype.setGeometry = function(cell,
geometry)
Sets the mxGeometry of the given mxCell.
mxAbstractCanvas2D.prototype.setGradient = function(color1,
color2,
x,
y,
w,
h,
direction,
alpha1,
alpha2)
Sets the current gradient.
mxXmlCanvas2D.prototype.setGradient = function(color1,
color2,
x,
y,
w,
h,
direction,
alpha1,
alpha2)
Sets the gradient.
mxAutoSaveManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxLayoutManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSpaceManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxEditor.prototype.setGraphContainer = function (container)
Sets the graph’s container using mxGraph.init.
mxDragSource.prototype.setGridEnabled = function(value)
Sets gridEnabled.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxDragSource.prototype.setGuidesEnabled = function(value)
Sets guidesEnabled.
mxTooltipHandler.prototype.setHideOnHover = function(value)
Sets hideOnHover.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxGraphHandler.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxCellMarker.prototype.setHotspot = function(hotspot)
Sets the hotspot.
mxCellMarker.prototype.setHotspotEnabled = function(enabled)
Specifies whether the hotspot should be used in intersects.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxCell.prototype.setId = function(id)
Sets the Id of the cell to the given string.
mxWindow.prototype.setImage = function(image)
Sets the image associated with the window.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
mxAbstractCanvas2D.prototype.setLineCap = function(value)
Sets the current line cap.
mxXmlCanvas2D.prototype.setLineCap = function(value)
Sets the line cap.
mxAbstractCanvas2D.prototype.setLineJoin = function(value)
Sets the current line join.
mxXmlCanvas2D.prototype.setLineJoin = function(value)
Sets the line join.
mxWindow.prototype.setLocation = function(x,
y)
Sets the upper, left corner of the window.
Sets if any cell may be moved, sized, bended, disconnected, edited or selected.
mxWindow.prototype.setMaximizable = function(maximizable)
Sets if the window is maximizable.
mxWindow.prototype.setMinimizable = function(minimizable)
Sets if the window is minimizable.
mxAbstractCanvas2D.prototype.setMiterLimit = function(value)
Sets the current miter limit.
mxXmlCanvas2D.prototype.setMiterLimit = function(value)
Sets the miter limit.
mxEditor.prototype.setMode = function(modename)
Puts the graph into the specified mode.
mxCellEditor.prototype.setModified = function(value)
Sets modified to the specified boolean value.
mxEditor.prototype.setModified = function (value)
Sets modified to the specified boolean value.
mxGraphHandler.prototype.setMoveEnabled = function(value)
Sets moveEnabled.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
setOpacity: function(node,
value)
Sets the opacity of the specified DOM node to the given value in %.
mxGraphLayout.prototype.setOrthogonalEdge = function(edge,
value)
Disables or enables orthogonal end segments of the given edge.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxCell.prototype.setParent = function(parent)
Sets the parent cell.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
setPrefixedStyle: function()
Adds the given style with the standard name and an optional vendor prefix for the current browser.
mxEdgeHandler.prototype.setPreviewColor = function(color)
Sets the color of the preview to the given value.
mxRectangle.prototype.setRect = function(x,
y,
w,
h)
Sets this rectangle to the specified values
mxGraph.prototype.setRecursiveResize = function(value)
Sets recursiveResize.
mxGraphHandler.prototype.setRemoveCellsFromParent = function(value)
Sets removeCellsFromParent.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxXmlRequest.prototype.setRequestHeaders = function(request,
params)
Sets the headers for the given request and parameters.
mxWindow.prototype.setResizable = function(resizable)
Sets if the window should be resizable.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxGraphModel.prototype.setRoot = function(root)
Sets the root of the model using mxRootChange and adds the change to the current transaction.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxWindow.prototype.setScrollable = function(scrollable)
Sets if the window contents should be scrollable.
mxGraphHandler.prototype.setSelectEnabled = function(value)
Sets selectEnabled.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxAbstractCanvas2D.prototype.setShadow = function(enabled)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadow = function(value)
Enables or disables shadows.
mxAbstractCanvas2D.prototype.setShadowAlpha = function(value)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadowAlpha = function(value)
Sets the current shadows alpha.
mxAbstractCanvas2D.prototype.setShadowColor = function(value)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadowColor = function(value)
Sets the current shadow color.
mxAbstractCanvas2D.prototype.setShadowOffset = function(dx,
dy)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadowOffset = function(dx,
dy)
Sets the current shadow offset.
mxSpaceManager.prototype.setShiftDownwards = function(value)
Enables or disables event handling.
mxSpaceManager.prototype.setShiftRightwards = function(value)
Enables or disables event handling.
mxGraphSelectionModel.prototype.setSingleSelection = function(singleSelection)
Sets the singleSelection flag.
mxWindow.prototype.setSize = function(width,
height)
Sets the size of the window.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGuide.prototype.setStates = function(states)
Sets the mxCellStates that should be used for alignment.
mxEditor.prototype.setStatus = function (message)
Display the specified message in the status bar.
mxEditor.prototype.setStatusContainer = function (container)
Creates the status using the specified container.
mxAbstractCanvas2D.prototype.setStrokeColor = function(value)
Sets the current stroke color.
mxXmlCanvas2D.prototype.setStrokeColor = function(value)
Sets the current stroke color.
mxAbstractCanvas2D.prototype.setStrokeWidth = function(value)
Sets the current stroke width.
mxXmlCanvas2D.prototype.setStrokeWidth = function(value)
Sets the current stroke width.
mxCell.prototype.setStyle = function(style)
Sets the string to be used as the style.
mxGraphModel.prototype.setStyle = function(cell,
style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
setStyle: function(style,
key,
value)
Adds or removes the given key, value pair to the style and returns the new style.
setStyleFlag: function(style,
key,
flag,
value)
Sets or removes the given key from the specified style and returns the new style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxCell.prototype.setTerminal = function(terminal,
isSource)
Sets the source or target terminal and returns the new terminal.
mxGraphModel.prototype.setTerminal = function(edge,
terminal,
isSource)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
mxGeometry.prototype.setTerminalPoint = function(point,
isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
mxGraphModel.prototype.setTerminals = function(edge,
source,
target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
setTextContent: function(node,
text)
Sets the text content of the specified node.
mxWindow.prototype.setTitle = function(title)
Sets the window title to the given string.
mxEditor.prototype.setTitleContainer = function (container)
Creates a listener to update the inner HTML of the specified DOM node with the value of getTitle.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxEditor.prototype.setToolbarContainer = function (container)
Initializes the toolbar for the given container.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxShape.prototype.setTransparentBackgroundImage = function(node)
Sets a transparent background CSS style to catch all events.
mxCell.prototype.setValue = function(value)
Sets the user object of the cell.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxCell.prototype.setVertex = function(vertex)
Specifies if the cell is a vertex.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxCoordinateAssignment.prototype.setVertexLocation = function(cell)
Fixes the position of the specified vertex.
mxGraphLayout.prototype.setVertexLocation = function(cell,
x,
y)
Sets the new position of the given cell taking into account the size of the bounding box if useBoundingBox is true.
mxCell.prototype.setVisible = function(visible)
Specifies if the cell is visible.
mxGraphModel.prototype.setVisible = function(cell,
visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
setVisible: function(visible)
Shows or hides the console.
mxWindow.prototype.setVisible = function(visible)
Shows or hides the window depending on the given flag.
mxCellState.prototype.setVisibleTerminalState = function (terminalState,
source)
Sets the visible source or target terminal state.
mxGraphAbstractHierarchyCell.prototype.setX = function(layer,
value)
Set the value of x for the specified layer
mxGraphAbstractHierarchyCell.prototype.setY = function(layer,
value)
Set the value of y for the specified layer
mxOutline.prototype.setZoomEnabled = function(value)
Enables or disables the zoom handling by showing or hiding the respective handle.
mxSpaceManager.prototype.shiftCell = function(cell,
dx,
dy,
Ox0,
y0,
right,
bottom,
fx,
fy,
extendParent)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxGraphHandler.prototype.shouldRemoveCellsFromParent = function(parent,
cells,
evt)
Returns true if the given cells should be removed from the parent for the specified mousereleased event.
mxCellStatePreview.prototype.show = function(visitor)
show: function()
Shows the console.
mxMorphing.prototype.show = function(move)
Shows the changes in the given mxCellStatePreview.
mxTooltipHandler.prototype.show = function(tip,
x,
y)
Shows the tooltip for the specified cell and optional index at the specified location (with a vertical offset of 10 pixels).
show: function(graph,
doc,
x0,
y0,
w,
h)
Copies the styles and the markup from the graph’s container into the given document and removes all cursor styles.
mxWindow.prototype.show = function()
Shows the window.
mxEditor.prototype.showHelp = function (tasks)
Shows the help window.
mxPopupMenu.prototype.showMenu = function()
Shows the menu.
mxEditor.prototype.showOutline = function ()
Shows the outline window.
mxEditor.prototype.showProperties = function (cell)
Creates and shows the properties dialog for the given cell.
mxPopupMenu.prototype.showSubmenu = function(parent,
row)
Shows the submenu inside the given parent row.
mxEditor.prototype.showTasks = function ()
Shows the tasks window.
SideToSide: function (state,
source,
target,
points,
result)
Implements a vertical elbow edge.
mxXmlRequest.prototype.simulate = function(doc,
target)
Creates and posts a request to the given target URL using a dynamically created form inside the given document.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraphHandler.prototype.snap = function(vector)
Snaps the given vector to the grid and returns the given mxPoint instance.
sortCells: function(cells,
ascending)
Sorts the given cells according to the order in the cell hierarchy.
mxCompactTreeLayout.prototype.sortOutgoingEdges = function(source,
edges)
Called if sortEdges is true to sort the array of outgoing edges in place.
Reference to the source mxGraph.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxConnectionHandler.prototype.start = function(state,
x,
y,
edgeState)
Starts a new connection for the given state and coordinates.
mxEdgeHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxGraphHandler.prototype.start = function(cell,
x,
y)
Starts the handling of the mouse gesture.
mxPanningHandler.prototype.start = function(me)
Starts panning at the given event.
mxRubberband.prototype.start = function(x,
y)
Sets the start point for the rubberband selection.
mxSession.prototype.start = function()
mxVertexHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxAnimation.prototype.startAnimation = function()
Starts the animation by repeatedly invoking updateAnimation.
mxDragSource.prototype.startDrag = function(evt)
Creates the dragElement using createDragElement.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxGraphView.prototype.stateValidated = function(state)
Invoked when a state has been processed in validatePoints.
mxSession.prototype.stop = function(reason)
Stops the session and fires a disconnect event.
mxAnimation.prototype.stopAnimation = function()
Stops the animation by deleting the timer and fires an mxEvent.DONE.
mxDragSource.prototype.stopDrag = function(evt)
Removes and destroys the dragElement.
mxCellEditor.prototype.stopEditing = function(cancel)
Stops the editor and applies the value if cancel is false.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxMorphing.prototype.stopRecursion = function(state,
delta)
Returns true if the animation should not recursively find more deltas for children if the given parent state has been animated.
mxSvgCanvas2D.prototype.stroke = function()
Paints the outline of the current path.
mxVmlCanvas2D.prototype.stroke = function()
Paints the outline of the current path.
mxXmlCanvas2D.prototype.stroke = function()
Paints the outline of the current drawing buffer.
mxGraphModel.prototype.styleForCellChanged = function(cell,
style)
Inner callback to update the style of the given mxCell using mxCell.setStyle and return the previous style.
Maps from names to cell styles.
submit: function(url,
params,
doc,
target)
Submits the given parameters to the specified URL using mxXmlRequest.simulate and returns the mxXmlRequest.
mxSession.prototype.suspend = function()
Suspends the polling.
mxGeometry.prototype.swap = function()
Swaps the x, y, width and height with the values stored in alternateBounds and puts the previous values into alternateBounds as a rectangle.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxEditor.prototype.swapStyles = function (first,
second)
Swaps the styles for the given names in the graph’s stylesheet and refreshes the graph.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
diff --git a/docs/js-api/index/Functions17.html b/docs/js-api/index/Functions17.html index c83f1585d..66b93aed0 100644 --- a/docs/js-api/index/Functions17.html +++ b/docs/js-api/index/Functions17.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 tapAndHold, mxGraph
 terminalForCellChanged, mxGraphModel
 text
 toggleCells, mxGraph
 toggleCellStyle, mxGraph
 toggleCellStyleFlags, mxGraph
 toggleCellStyles, mxGraph
 TopToBottom, mxEdgeStyle
 toRadians, mxUtils
 toString
 transformControlPoint, mxGraphView
 translate
 translateCell, mxGraph
 translateState, mxCellStatePreview
 transpose, mxMedianHybridCrossingReduction
 traverse
 treeLayout, mxEditor
 TrianglePerimeter, mxPerimeter
 trim
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 tapAndHold, mxGraph
 terminalForCellChanged, mxGraphModel
 text
 toggleCells, mxGraph
 toggleCellStyle, mxGraph
 toggleCellStyleFlags, mxGraph
 toggleCellStyles, mxGraph
 TopToBottom, mxEdgeStyle
 toRadians, mxUtils
 toString
 transformControlPoint, mxGraphView
 translate
 translateCell, mxGraph
 translateState, mxCellStatePreview
 transpose, mxMedianHybridCrossingReduction
 traverse
 treeLayout, mxEditor
 TrianglePerimeter, mxPerimeter
 trim
-
mxGraph.prototype.tapAndHold = function(me)
Handles the mxMouseEvent by highlighting the mxCellState.
mxGraphModel.prototype.terminalForCellChanged = function(edge,
terminal,
isSource)
Inner helper function to update the terminal of the edge using mxCell.insertEdge and return the previous terminal.
mxSvgCanvas2D.prototype.text = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the given text.
mxVmlCanvas2D.prototype.text = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the given text.
mxXmlCanvas2D.prototype.text = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the given text.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
TopToBottom: function(state,
source,
target,
points,
result)
Implements a horizontal elbow edge.
toRadians: function(deg)
Converts the given degree to radians.
mxCellOverlay.prototype.toString = function()
Returns the textual representation of the overlay to be used as the tooltip.
toString: function(obj)
Returns a textual representation of the specified object.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxAbstractCanvas2D.prototype.translate = function(dx,
dy)
Translates the current state.
mxGeometry.prototype.translate = function(dx,
dy)
Translates the geometry by the specified amount.
mxXmlCanvas2D.prototype.translate = function(dx,
dy)
Translates the output.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxCellStatePreview.prototype.translateState = function(parentState,
state,
dx,
dy)
mxMedianHybridCrossingReduction.prototype.transpose = function(
   mainLoopIteration,
   model
)
Takes each possible adjacent cell pair on each rank and checks if swapping them around reduces the number of crossing
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraphLayout.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxEditor.prototype.treeLayout = function (cell,
horizontal)
Executes a vertical or horizontal compact tree layout using the specified cell as an argument.
TrianglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a triangle perimeter.
mxUndoManager.prototype.trim = function()
Removes all pending steps after indexOfNextAdd from the history, invoking die on each edit.
trim: function(str,
chars)
Strips all whitespaces from both end of the string.
+
mxGraph.prototype.tapAndHold = function(me)
Handles the mxMouseEvent by highlighting the mxCellState.
mxGraphModel.prototype.terminalForCellChanged = function(edge,
terminal,
isSource)
Inner helper function to update the terminal of the edge using mxCell.insertEdge and return the previous terminal.
mxSvgCanvas2D.prototype.text = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the given text.
mxVmlCanvas2D.prototype.text = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the given text.
mxXmlCanvas2D.prototype.text = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the given text.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
TopToBottom: function(state,
source,
target,
points,
result)
Implements a horizontal elbow edge.
toRadians: function(deg)
Converts the given degree to radians.
mxCellOverlay.prototype.toString = function()
Returns the textual representation of the overlay to be used as the tooltip.
toString: function(obj)
Returns a textual representation of the specified object.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxAbstractCanvas2D.prototype.translate = function(dx,
dy)
Translates the current state.
mxGeometry.prototype.translate = function(dx,
dy)
Translates the geometry by the specified amount.
mxXmlCanvas2D.prototype.translate = function(dx,
dy)
Translates the output.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxCellStatePreview.prototype.translateState = function(parentState,
state,
dx,
dy)
mxMedianHybridCrossingReduction.prototype.transpose = function(
   mainLoopIteration,
   model
)
Takes each possible adjacent cell pair on each rank and checks if swapping them around reduces the number of crossing
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraphLayout.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxEditor.prototype.treeLayout = function (cell,
horizontal)
Executes a vertical or horizontal compact tree layout using the specified cell as an argument.
TrianglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a triangle perimeter.
mxUndoManager.prototype.trim = function()
Removes all pending steps after indexOfNextAdd from the history, invoking die on each edit.
trim: function(str,
chars)
Strips all whitespaces from both end of the string.
diff --git a/docs/js-api/index/Functions18.html b/docs/js-api/index/Functions18.html index c37e9e76f..c411e656a 100644 --- a/docs/js-api/index/Functions18.html +++ b/docs/js-api/index/Functions18.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
U
 undo
 undoableEditHappened, mxUndoManager
 ungroupCells, mxGraph
 union, mxVertexHandler
 unmark, mxCellMarker
 update
 updateAlternateBounds, mxGraph
 updateAnimation
 updateBoundingBox
 updateBoundsFromPoints, mxShape
 updateCellSize, mxGraph
 updateContainerStyle, mxGraphView
 updateCurrentState, mxConnectionHandler
 updateEdgeBounds, mxGraphView
 updateEdgeLabelOffset, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateFill, mxSvgCanvas2D
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateFont
 updateGroupBounds
 updateHtmlCanvasSize, mxGraphView
 updateHtmlFilter, mxText
 updateHtmlFilters, mxRectangleShape
 updateHtmlTransform, mxText
 updateIcons, mxConnectionHandler
 updateMinBounds, mxVertexHandler
 updateMouseEvent, mxGraph
 updatePoints, mxGraphView
 updatePreviewShape, mxGraphHandler
 updatePreviewState, mxEdgeHandler
 updateSize, mxText
 updateStroke, mxSvgCanvas2D
 updateStrokeAttributes, mxSvgCanvas2D
 updateTransform, mxShape
 updateValue, mxText
 updateVertexLabelOffset, mxGraphView
 updateVmlContainer
 updatingDocumentResource, mxGraphView
 useGuidesForEvent, mxGraphHandler
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
U
 undo
 undoableEditHappened, mxUndoManager
 ungroupCells, mxGraph
 union, mxVertexHandler
 unmark, mxCellMarker
 update
 updateAlternateBounds, mxGraph
 updateAnimation
 updateBoundingBox
 updateBoundsFromPoints, mxShape
 updateCellSize, mxGraph
 updateContainerStyle, mxGraphView
 updateCurrentState, mxConnectionHandler
 updateEdgeBounds, mxGraphView
 updateEdgeLabelOffset, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateFill, mxSvgCanvas2D
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateFont
 updateGroupBounds
 updateHtmlCanvasSize, mxGraphView
 updateHtmlFilter, mxText
 updateHtmlFilters, mxRectangleShape
 updateHtmlTransform, mxText
 updateIcons, mxConnectionHandler
 updateMinBounds, mxVertexHandler
 updateMouseEvent, mxGraph
 updatePoints, mxGraphView
 updatePreviewShape, mxGraphHandler
 updatePreviewState, mxEdgeHandler
 updateSize, mxText
 updateStroke, mxSvgCanvas2D
 updateStrokeAttributes, mxSvgCanvas2D
 updateTransform, mxShape
 updateValue, mxText
 updateVertexLabelOffset, mxGraphView
 updateVmlContainer
 updatingDocumentResource, mxGraphView
 useGuidesForEvent, mxGraphHandler
-
mxEditor.prototype.undo = function ()
Undo the last change in graph.
mxUndoableEdit.prototype.undo = function()
Undoes all changes in this edit.
mxUndoManager.prototype.undo = function()
Undoes the last change.
mxUndoManager.prototype.undoableEditHappened = function(undoableEdit)
Method to be called to add new undoable edits to the history.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxVertexHandler.prototype.union = function(bounds,
dx,
dy,
index,
gridEnabled,
scale,
tr,
constrained)
Returns the union of the given bounds and location for the specified handle index.
mxCellMarker.prototype.unmark = function()
Hides the marker and fires a mark event.
mxConstraintHandler.prototype.update = function(me,
source)
Updates the state of this handler based on the given mxMouseEvent.
mxOutline.prototype.update = function(revalidate)
Updates the outline.
mxRubberband.prototype.update = function(x,
y)
Sets currentX and currentY and calls repaint.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxAnimation.prototype.updateAnimation = function()
Hook for subclassers to implement the animation.
mxMorphing.prototype.updateAnimation = function()
Animation step.
mxShape.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using createBoundingBox and augmentBoundingBox and stores the result in boundingBox.
mxText.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using the given node and position.
mxShape.prototype.updateBoundsFromPoints = function()
Updates the bounds based on the points.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxGraphView.prototype.updateContainerStyle = function(container)
Updates the style of the container after installing the SVG DOM elements.
mxConnectionHandler.prototype.updateCurrentState = function(me)
Updates the current state for a given mouse move event by using the marker.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of t he absolute points.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxGraphModel.prototype.updateEdgeParent = function(edge,
root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
mxGraphModel.prototype.updateEdgeParents = function(cell,
root)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
mxSvgCanvas2D.prototype.updateFill = function()
Transfers the stroke attributes from state to node.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxSvgCanvas2D.prototype.updateFont = function(node)
Updates the text properties for the given node.
mxText.prototype.updateFont = function(node)
Updates the HTML node(s) to reflect the latest bounds and scale.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxSwimlaneLayout.prototype.updateGroupBounds = function()
Updates the bounds of the given array of groups so that it includes all child vertices.
mxGraphView.prototype.updateHtmlCanvasSize = function(width,
height)
Updates the size of the HTML canvas.
mxText.prototype.updateHtmlFilter = function()
Rotated text rendering quality is bad for IE9 quirks/IE8 standards
mxRectangleShape.prototype.updateHtmlFilters = function(node)
Allow optimization by replacing VML with HTML.
mxText.prototype.updateHtmlTransform = function()
Returns the spacing as an mxPoint.
mxConnectionHandler.prototype.updateIcons = function(state,
icons,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxVertexHandler.prototype.updateMinBounds = function()
Initializes the shapes required for this vertex handler.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required and returned the event.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphHandler.prototype.updatePreviewShape = function()
Updates the bounds of the preview shape.
mxEdgeHandler.prototype.updatePreviewState = function(edge,
point,
terminalState)
Updates the given preview state taking into account the state of the constraint handler.
mxText.prototype.updateSize = function(node)
Updates the HTML node(s) to reflect the latest bounds and scale.
mxSvgCanvas2D.prototype.updateStroke = function()
Transfers the stroke attributes from state to node.
mxSvgCanvas2D.prototype.updateStrokeAttributes = function()
Transfers the stroke attributes from state to node.
mxShape.prototype.updateTransform = function(c,
x,
y,
w,
h)
Sets the scale and rotation on the given canvas.
mxText.prototype.updateValue = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxShape.prototype.updateVmlContainer = function()
Updates the bounds of the VML container.
mxText.prototype.updateVmlContainer = function()
Sets the width and height of the container to 1px.
Specifies the resource key for the status message while the document is being updated.
mxGraphHandler.prototype.useGuidesForEvent = function(me)
Returns true if the guides should be used for the given mxMouseEvent.
+
mxEditor.prototype.undo = function ()
Undo the last change in graph.
mxUndoableEdit.prototype.undo = function()
Undoes all changes in this edit.
mxUndoManager.prototype.undo = function()
Undoes the last change.
mxUndoManager.prototype.undoableEditHappened = function(undoableEdit)
Method to be called to add new undoable edits to the history.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxVertexHandler.prototype.union = function(bounds,
dx,
dy,
index,
gridEnabled,
scale,
tr,
constrained)
Returns the union of the given bounds and location for the specified handle index.
mxCellMarker.prototype.unmark = function()
Hides the marker and fires a mark event.
mxConstraintHandler.prototype.update = function(me,
source)
Updates the state of this handler based on the given mxMouseEvent.
mxOutline.prototype.update = function(revalidate)
Updates the outline.
mxRubberband.prototype.update = function(x,
y)
Sets currentX and currentY and calls repaint.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxAnimation.prototype.updateAnimation = function()
Hook for subclassers to implement the animation.
mxMorphing.prototype.updateAnimation = function()
Animation step.
mxShape.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using createBoundingBox and augmentBoundingBox and stores the result in boundingBox.
mxText.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using the given node and position.
mxShape.prototype.updateBoundsFromPoints = function()
Updates the bounds based on the points.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxGraphView.prototype.updateContainerStyle = function(container)
Updates the style of the container after installing the SVG DOM elements.
mxConnectionHandler.prototype.updateCurrentState = function(me)
Updates the current state for a given mouse move event by using the marker.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of t he absolute points.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxGraphModel.prototype.updateEdgeParent = function(edge,
root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
mxGraphModel.prototype.updateEdgeParents = function(cell,
root)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
mxSvgCanvas2D.prototype.updateFill = function()
Transfers the stroke attributes from state to node.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxSvgCanvas2D.prototype.updateFont = function(node)
Updates the text properties for the given node.
mxText.prototype.updateFont = function(node)
Updates the HTML node(s) to reflect the latest bounds and scale.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxSwimlaneLayout.prototype.updateGroupBounds = function()
Updates the bounds of the given array of groups so that it includes all child vertices.
mxGraphView.prototype.updateHtmlCanvasSize = function(width,
height)
Updates the size of the HTML canvas.
mxText.prototype.updateHtmlFilter = function()
Rotated text rendering quality is bad for IE9 quirks/IE8 standards
mxRectangleShape.prototype.updateHtmlFilters = function(node)
Allow optimization by replacing VML with HTML.
mxText.prototype.updateHtmlTransform = function()
Returns the spacing as an mxPoint.
mxConnectionHandler.prototype.updateIcons = function(state,
icons,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxVertexHandler.prototype.updateMinBounds = function()
Initializes the shapes required for this vertex handler.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required and returned the event.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphHandler.prototype.updatePreviewShape = function()
Updates the bounds of the preview shape.
mxEdgeHandler.prototype.updatePreviewState = function(edge,
point,
terminalState)
Updates the given preview state taking into account the state of the constraint handler.
mxText.prototype.updateSize = function(node)
Updates the HTML node(s) to reflect the latest bounds and scale.
mxSvgCanvas2D.prototype.updateStroke = function()
Transfers the stroke attributes from state to node.
mxSvgCanvas2D.prototype.updateStrokeAttributes = function()
Transfers the stroke attributes from state to node.
mxShape.prototype.updateTransform = function(c,
x,
y,
w,
h)
Sets the scale and rotation on the given canvas.
mxText.prototype.updateValue = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxShape.prototype.updateVmlContainer = function()
Updates the bounds of the VML container.
mxText.prototype.updateVmlContainer = function()
Sets the width and height of the container to 1px.
Specifies the resource key for the status message while the document is being updated.
mxGraphHandler.prototype.useGuidesForEvent = function(me)
Returns true if the guides should be used for the given mxMouseEvent.
diff --git a/docs/js-api/index/Functions19.html b/docs/js-api/index/Functions19.html index 31df28e17..0460ab168 100644 --- a/docs/js-api/index/Functions19.html +++ b/docs/js-api/index/Functions19.html @@ -11,17 +11,17 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 validate, mxGraphView
 validateBackground, mxGraphView
 validateBackgroundImage, mxGraphView
 validateBackgroundPage, mxGraphView
 validateBounds, mxGraphView
 validateCell, mxGraph
 validateConnection
 validateEdge, mxGraph
 validateGraph, mxGraph
 validatePoints, mxGraphView
 validationAlert, mxGraph
 valueChanged, mxCell
 valueForCellChanged, mxGraphModel
 verticalLayout, mxCompactTreeLayout
 visibleStateForCellChanged, mxGraphModel
 visit
W
 warn, mxLog
 WeightedCellSorter, WeightedCellSorter
 weightedMedian, mxMedianHybridCrossingReduction
 write
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeDefaults, mxXmlCanvas2D
 writeGraphModel, mxEditor
 writeHead, mxPrintPreview
 writeln
 writePrimitiveAttribute, mxObjectCodec
Z
 zoom, mxGraph
 zoomActual, mxGraph
 zoomIn, mxGraph
 zoomOut, mxGraph
 zoomTo, mxGraph
 zoomToRect, mxGraph
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 validate, mxGraphView
 validateBackground, mxGraphView
 validateBackgroundImage, mxGraphView
 validateBackgroundPage, mxGraphView
 validateBounds, mxGraphView
 validateCell, mxGraph
 validateConnection
 validateEdge, mxGraph
 validateGraph, mxGraph
 validatePoints, mxGraphView
 validationAlert, mxGraph
 valueChanged, mxCell
 valueForCellChanged, mxGraphModel
 verticalLayout, mxCompactTreeLayout
 visibleStateForCellChanged, mxGraphModel
 visit
W
 warn, mxLog
 WeightedCellSorter, WeightedCellSorter
 weightedMedian, mxMedianHybridCrossingReduction
 write
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeDefaults, mxXmlCanvas2D
 writeGraphModel, mxEditor
 writeHead, mxPrintPreview
 writeln
 writePrimitiveAttribute, mxObjectCodec
Z
 zoom, mxGraph
 zoomActual, mxGraph
 zoomIn, mxGraph
 zoomOut, mxGraph
 zoomTo, mxGraph
 zoomToRect, mxGraph
-
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.validateBackground = function()
Calls validateBackgroundImage and validateBackgroundPage.
mxGraphView.prototype.validateBackgroundImage = function()
Validates the background image.
mxGraphView.prototype.validateBackgroundPage = function()
Validates the background page.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
mxSwimlaneModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
+
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.validateBackground = function()
Calls validateBackgroundImage and validateBackgroundPage.
mxGraphView.prototype.validateBackgroundImage = function()
Validates the background image.
mxGraphView.prototype.validateBackgroundPage = function()
Validates the background page.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
mxSwimlaneModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
-
warn: function()
Adds all arguments to the console if WARN is enabled.
function WeightedCellSorter(cell,
weightedValue)
Constructs a new weighted cell sorted for the given cell and weight.
mxMedianHybridCrossingReduction.prototype.weightedMedian = function(iteration,
model)
Sweeps up or down the layout attempting to minimise the median placement of connected cells on adjacent ranks
write: function()
Adds the specified strings to the console.
write: function(parent,
text)
Creates a text node for the given string and appends it to the given parent.
mxObjectCodec.prototype.writeAttribute = function(enc,
obj,
name,
value,
node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
mxObjectCodec.prototype.writeComplexAttribute = function(enc,
obj,
name,
value,
node)
Writes the given value as a child node of the given node.
mxXmlCanvas2D.prototype.writeDefaults = function()
mxEditor.prototype.writeGraphModel = function (linefeed)
Hook to create the string representation of the diagram.
mxPrintPreview.prototype.writeHead = function(doc,
css)
Writes the HEAD section into the given document, without the opening and closing HEAD tags.
writeln: function()
Adds the specified strings to the console, appending a linefeed at the end of each string.
writeln: function(parent,
text)
Creates a text node for the given string and appends it to the given parent with an additional linefeed.
mxObjectCodec.prototype.writePrimitiveAttribute = function(enc,
obj,
name,
value,
node)
Writes the given value as an attribute of the given node.
+
warn: function()
Adds all arguments to the console if WARN is enabled.
function WeightedCellSorter(cell,
weightedValue)
Constructs a new weighted cell sorted for the given cell and weight.
mxMedianHybridCrossingReduction.prototype.weightedMedian = function(iteration,
model)
Sweeps up or down the layout attempting to minimise the median placement of connected cells on adjacent ranks
write: function()
Adds the specified strings to the console.
write: function(parent,
text)
Creates a text node for the given string and appends it to the given parent.
mxObjectCodec.prototype.writeAttribute = function(enc,
obj,
name,
value,
node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
mxObjectCodec.prototype.writeComplexAttribute = function(enc,
obj,
name,
value,
node)
Writes the given value as a child node of the given node.
mxXmlCanvas2D.prototype.writeDefaults = function()
mxEditor.prototype.writeGraphModel = function (linefeed)
Hook to create the string representation of the diagram.
mxPrintPreview.prototype.writeHead = function(doc,
css)
Writes the HEAD section into the given document, without the opening and closing HEAD tags.
writeln: function()
Adds the specified strings to the console, appending a linefeed at the end of each string.
writeln: function(parent,
text)
Creates a text node for the given string and appends it to the given parent with an additional linefeed.
mxObjectCodec.prototype.writePrimitiveAttribute = function(enc,
obj,
name,
value,
node)
Writes the given value as an attribute of the given node.
-
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
mxGraph.prototype.zoomToRect = function(rect)
Zooms the graph to the specified rectangle.
+
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
mxGraph.prototype.zoomToRect = function(rect)
Zooms the graph to the specified rectangle.
diff --git a/docs/js-api/index/Functions7.html b/docs/js-api/index/Functions7.html index 28113eba0..4eb480521 100644 --- a/docs/js-api/index/Functions7.html +++ b/docs/js-api/index/Functions7.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
G
 geometryForCellChanged, mxGraphModel
 get
 getAlignmentAsPoint, mxUtils
 getAlignmentTolerance, mxConnectionHandler
 getAllConnectionConstraints, mxGraph
 getAllEdges, mxGraph
 getAlternateContent, mxSvgCanvas2D
 getAppendices, mxPrintPreview
 getArcSize
 getAttribute, mxCell
 getAttributeName, mxObjectCodec
 getBackgroundImage, mxGraph
 getBackgroundPageBounds, mxGraphView
 getBackgroundPane, mxGraphView
 getBaseDomain, mxUrlConverter
 getBaseUrl, mxUrlConverter
 getBorder, mxGraph
 getBorderSizes, mxGraph
 getBoundingBox
 getBoundingBoxFromGeometry, mxGraph
 getBounds
 getBoundsForGroup, mxGraph
 getCanvas, mxGraphView
 getCell
 getCellAt, mxGraph
 getCellBounds, mxGraph
 getCellContainmentArea, mxGraph
 getCellForPopupEvent, mxPanningHandler
 getCellGeometry, mxGraph
 getCellOverlays, mxGraph
 getCells
 getCellsBeyond, mxGraph
 getCellsForChange, mxLayoutManager
 getCellsForEdit, mxLayoutManager
 getCellsForGroup, mxGraph
 getCellStates, mxGraphView
 getCellsToShift, mxSpaceManager
 getCellStyle
 getCellValidationError, mxGraph
 getCenterX, mxRectangle
 getCenterY, mxRectangle
 getChildAt
 getChildCells
 getChildCount
 getChildEdges
 getChildNodes, mxUtils
 getChildOffsetForCell, mxGraph
 getChildren, mxGraphModel
 getChildVertices
 getClientX, mxEvent
 getClientY, mxEvent
 getCloneableCells, mxGraph
 getCodec, mxCodecRegistry
 getColor, mxUtils
 getConnectImage, mxConnectionHandler
 getConnectionConstraint, mxGraph
 getConnectionPoint, mxGraph
 getConnections
 getConstraint, mxGraphLayout
 getControlBounds, mxCellRenderer
 getCoreCell
 getCoverPages, mxPrintPreview
 getCurrentRoot, mxGraph
 getCurrentStyle, mxUtils
 getCurrentValue, mxCellEditor
 getCursor, mxShape
 getCursorForBend, mxElbowEdgeHandler
 getCursorForCell, mxGraph
 getCursorForMouseEvent, mxGraph
 getDefaultBundle, mxResources
 getDefaultEdgeStyle, mxStylesheet
 getDefaultParent, mxGraph
 getDefaultVertexStyle, mxStylesheet
 getDeletableCells, mxGraph
 getDelta
 getDescendants, mxGraphModel
 getDirectedEdgeCount, mxGraphModel
 getDocType, mxPrintPreview
 getDocumentElement, mxXmlRequest
 getDocumentHeight, mxDivResizer
 getDocumentScrollOrigin, mxUtils
 getDocumentWidth, mxDivResizer
 getDrawPane, mxGraphView
 getDropTarget
 getEdgeAt
 getEdgeColor, mxConnectionHandler
 getEdgeCount
 getEdgeId, mxParallelEdgeLayout
 getEdgeIndex, mxCell
 getEdges
 getEdgesBetween
 getEdgeStyle
 getEdgeValidationError, mxGraph
 getEdgeWidth, mxConnectionHandler
 getEditingCell, mxCellEditor
 getEditingValue, mxGraph
 getEditorBounds, mxCellEditor
 getElement, mxWindow
 getElementById, mxCodec
 getEmptyLabelText, mxCellEditor
 getEvent, mxMouseEvent
 getEventSource, mxEventSource
 getExportableCells, mxGraph
 getFieldName, mxObjectCodec
 getFieldTemplate, mxObjectCodec
 getFirstSelectableCell, mxGraphSelectionModel
 getFoldableCells, mxGraph
 getFoldingImage, mxGraph
 getFunction, mxKeyHandler
 getFunctionName, mxUtils
 getGeneralPurposeVariable
 getGeometry
 getGradientBounds
 getGraph
 getGraphBounds
 getGraphForEvent, mxDragSource
 getGraphX, mxMouseEvent
 getGraphY, mxMouseEvent
 getGridSize, mxGraph
 getGuideStates, mxGraphHandler
 getGuideTolerance, mxGuide
 getHandleFillColor, mxEdgeHandler
 getHandleForEvent
 getHandler, mxSelectionCellsHandler
 getHotspot, mxCellMarker
 getId
 getImage
 getImageBounds
 getImageForConstraint, mxConstraintHandler
 getImageFromBundles, mxGraph
 getImportableCells, mxGraph
 getIncomingEdges
 getIndex, mxCell
 getIndicatorBounds, mxLabel
 getIndicatorColor, mxGraph
 getIndicatorGradientColor, mxGraph
 getIndicatorImage, mxGraph
 getIndicatorShape, mxGraph
 getInitialCellForEvent, mxGraphHandler
 getInitialValue, mxCellEditor
 getInnerHtml, mxUtils
 getKeys, mxDictionary
 getLabel, mxGraph
 getLabelBounds
 getLabelValue, mxCellRenderer
 getLayout, mxLayoutManager
 getMainEvent, mxEvent
 getMargin, mxText
 getMarkedState, mxCellMarker
 getMarkerColor, mxCellMarker
 getMaximumGraphBounds, mxGraph
 getMinimumSize
 getModel
 getMovableCells, mxGraph
 getName
 getNearestCommonAncestor, mxGraphModel
 getNextLayerConnectedCells
 getNextPoint, mxGraphView
 getNumber, mxUtils
 getObject, mxCodec
 getOffset, mxUtils
 getOpposites
 getOrigin, mxGraphModel
 getOriginForCell, mxMorphing
 getOuterHtml, mxUtils
 getOutgoingEdges
 getOutlineOffset, mxOutline
 getOverlap, mxGraph
 getOverlayPane, mxGraphView
 getParent
 getParentOffset, mxGraphLayout
 getParentPath, mxCellPath
 getParents, mxGraphModel
 getParentSize, mxStackLayout
 getPerimeterBounds
 getPerimeterFunction, mxGraphView
 getPerimeterPoint, mxGraphView
 getPoint
 getPointForEvent
 getPreferredPageSize, mxGraph
 getPreferredSizeForCell, mxGraph
 getPrettyXML, mxUtils
 getPreviewBounds, mxGraphHandler
 getPreviewPoints
 getPreviewTerminalState, mxEdgeHandler
 getPreviousLayerConnectedCells
 getProperties, mxEventObject
 getProperty, mxEventObject
 getRadius, mxCircleLayout
 getRankValue, mxGraphHierarchyNode
 getRelativePoint, mxGraphView
 getRemovedCellsForChanges, mxGraph
 getRoot
 getRootTitle, mxEditor
 getRotatedPoint, mxUtils
 getRotation
 getRoutingCenterX, mxGraphView
 getRoutingCenterY, mxGraphView
 getScale, mxGraphView
 getScaleForPageCount, mxUtils
 getScrollOrigin, mxUtils
 getSelectionBounds, mxVertexHandler
 getSelectionCell, mxGraph
 getSelectionCells, mxGraph
 getSelectionCellsForChanges, mxGraph
 getSelectionColor
 getSelectionCount, mxGraph
 getSelectionModel, mxGraph
 getSelectionPoints, mxEdgeHandler
 getSelectionStrokeWidth
 getShape, mxCellRenderer
 getShapeConstructor, mxCellRenderer
 getShapeRotation
 getShapesForState, mxCellRenderer
 getSizeForString, mxUtils
 getSnapToTerminalTolerance, mxEdgeHandler
 getSource
 getSourceContainerSize, mxOutline
 getSourcePerimeterPoint, mxConnectionHandler
 getSpacing, mxText
 getSpecialBundle, mxResources
 getStartSize, mxGraph
 getState
 getStateForEvent, mxGraph
 getStates, mxGraphView
 getStateToMark, mxCellMarker
 getStatus, mxXmlRequest
 getStencil, mxStencilRegistry
 getStringValue, mxStylesheetCodec
 getStyle
 getStylename, mxUtils
 getStylenames, mxUtils
 getStylesheet, mxGraph
 getSvgGradient, mxSvgCanvas2D
 getSvgScreenOffset
 getSwimlane, mxGraph
 getSwimlaneAt, mxGraph
 getTable, mxForm
 getTargetPerimeterPoint, mxConnectionHandler
 getTemplate, mxEditor
 getTerminal
 getTerminalForPort, mxGraph
 getTerminalPoint, mxGeometry
 getTerminalPort, mxGraphView
 getText, mxXmlRequest
 getTextContent, mxUtils
 getTextRotation
 getTextScale, mxCellRenderer
 getTitle, mxEditor
 getTolerance
 getTooltip, mxGraph
 getTooltipForCell, mxGraph
 getTooltipForNode, mxElbowEdgeHandler
 getTopmostCells, mxGraphModel
 getTranslate, mxGraphView
 getTranslateForEvent, mxOutline
 getTranslateForRoot, mxGraph
 getUrlImage, mxEditor
 getUrlPost, mxEditor
 getValidState, mxCellMarker
 getValue
 getValues, mxDictionary
 getVertexBounds, mxGraphLayout
 getVerticalAlign, mxGraph
 getView, mxGraph
 getViewXml, mxUtils
 getVisibleTerminal
 getVisibleTerminalState, mxCellState
 getVmlDashPattern, mxVmlCanvas2D
 getWindow, mxPrintPreview
 getX
 getXml
 getY
 graphContainsEvent, mxDragSource
 graphModelChanged
 graphRenderHint, mxOutline
 groupCells
 grow, mxRectangle
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
G
 geometryForCellChanged, mxGraphModel
 get
 getAlignmentAsPoint, mxUtils
 getAlignmentTolerance, mxConnectionHandler
 getAllConnectionConstraints, mxGraph
 getAllEdges, mxGraph
 getAlternateContent, mxSvgCanvas2D
 getAppendices, mxPrintPreview
 getArcSize
 getAttribute, mxCell
 getAttributeName, mxObjectCodec
 getBackgroundImage, mxGraph
 getBackgroundPageBounds, mxGraphView
 getBackgroundPane, mxGraphView
 getBaseDomain, mxUrlConverter
 getBaseUrl, mxUrlConverter
 getBorder, mxGraph
 getBorderSizes, mxGraph
 getBoundingBox
 getBoundingBoxFromGeometry, mxGraph
 getBounds
 getBoundsForGroup, mxGraph
 getCanvas, mxGraphView
 getCell
 getCellAt, mxGraph
 getCellBounds, mxGraph
 getCellContainmentArea, mxGraph
 getCellForPopupEvent, mxPanningHandler
 getCellGeometry, mxGraph
 getCellOverlays, mxGraph
 getCells
 getCellsBeyond, mxGraph
 getCellsForChange, mxLayoutManager
 getCellsForEdit, mxLayoutManager
 getCellsForGroup, mxGraph
 getCellStates, mxGraphView
 getCellsToShift, mxSpaceManager
 getCellStyle
 getCellValidationError, mxGraph
 getCenterX, mxRectangle
 getCenterY, mxRectangle
 getChildAt
 getChildCells
 getChildCount
 getChildEdges
 getChildNodes, mxUtils
 getChildOffsetForCell, mxGraph
 getChildren, mxGraphModel
 getChildVertices
 getClientX, mxEvent
 getClientY, mxEvent
 getCloneableCells, mxGraph
 getCodec, mxCodecRegistry
 getColor, mxUtils
 getConnectImage, mxConnectionHandler
 getConnectionConstraint, mxGraph
 getConnectionPoint, mxGraph
 getConnections
 getConstraint, mxGraphLayout
 getControlBounds, mxCellRenderer
 getCoreCell
 getCoverPages, mxPrintPreview
 getCurrentRoot, mxGraph
 getCurrentStyle, mxUtils
 getCurrentValue, mxCellEditor
 getCursor, mxShape
 getCursorForBend, mxElbowEdgeHandler
 getCursorForCell, mxGraph
 getCursorForMouseEvent, mxGraph
 getDefaultBundle, mxResources
 getDefaultEdgeStyle, mxStylesheet
 getDefaultParent, mxGraph
 getDefaultVertexStyle, mxStylesheet
 getDeletableCells, mxGraph
 getDelta
 getDescendants, mxGraphModel
 getDirectedEdgeCount, mxGraphModel
 getDocType, mxPrintPreview
 getDocumentElement, mxXmlRequest
 getDocumentHeight, mxDivResizer
 getDocumentScrollOrigin, mxUtils
 getDocumentWidth, mxDivResizer
 getDrawPane, mxGraphView
 getDropTarget
 getEdgeAt
 getEdgeColor, mxConnectionHandler
 getEdgeCount
 getEdgeId, mxParallelEdgeLayout
 getEdgeIndex, mxCell
 getEdges
 getEdgesBetween
 getEdgeStyle
 getEdgeValidationError, mxGraph
 getEdgeWidth, mxConnectionHandler
 getEditingCell, mxCellEditor
 getEditingValue, mxGraph
 getEditorBounds, mxCellEditor
 getElement, mxWindow
 getElementById, mxCodec
 getEmptyLabelText, mxCellEditor
 getEvent, mxMouseEvent
 getEventSource, mxEventSource
 getExportableCells, mxGraph
 getFieldName, mxObjectCodec
 getFieldTemplate, mxObjectCodec
 getFirstSelectableCell, mxGraphSelectionModel
 getFoldableCells, mxGraph
 getFoldingImage, mxGraph
 getFunction, mxKeyHandler
 getFunctionName, mxUtils
 getGeneralPurposeVariable
 getGeometry
 getGradientBounds
 getGraph
 getGraphBounds
 getGraphForEvent, mxDragSource
 getGraphX, mxMouseEvent
 getGraphY, mxMouseEvent
 getGridSize, mxGraph
 getGuideStates, mxGraphHandler
 getGuideTolerance, mxGuide
 getHandleFillColor, mxEdgeHandler
 getHandleForEvent
 getHandler, mxSelectionCellsHandler
 getHotspot, mxCellMarker
 getId
 getImage
 getImageBounds
 getImageForConstraint, mxConstraintHandler
 getImageFromBundles, mxGraph
 getImportableCells, mxGraph
 getIncomingEdges
 getIndex, mxCell
 getIndicatorBounds, mxLabel
 getIndicatorColor, mxGraph
 getIndicatorGradientColor, mxGraph
 getIndicatorImage, mxGraph
 getIndicatorShape, mxGraph
 getInitialCellForEvent, mxGraphHandler
 getInitialValue, mxCellEditor
 getInnerHtml, mxUtils
 getKeys, mxDictionary
 getLabel, mxGraph
 getLabelBounds
 getLabelValue, mxCellRenderer
 getLayout, mxLayoutManager
 getMainEvent, mxEvent
 getMargin, mxText
 getMarkedState, mxCellMarker
 getMarkerColor, mxCellMarker
 getMaximumGraphBounds, mxGraph
 getMinimumSize
 getModel
 getMovableCells, mxGraph
 getName
 getNearestCommonAncestor, mxGraphModel
 getNextLayerConnectedCells
 getNextPoint, mxGraphView
 getNumber, mxUtils
 getObject, mxCodec
 getOffset, mxUtils
 getOpposites
 getOrigin, mxGraphModel
 getOriginForCell, mxMorphing
 getOuterHtml, mxUtils
 getOutgoingEdges
 getOutlineOffset, mxOutline
 getOverlap, mxGraph
 getOverlayPane, mxGraphView
 getParent
 getParentOffset, mxGraphLayout
 getParentPath, mxCellPath
 getParents, mxGraphModel
 getParentSize, mxStackLayout
 getPerimeterBounds
 getPerimeterFunction, mxGraphView
 getPerimeterPoint, mxGraphView
 getPoint
 getPointForEvent
 getPreferredPageSize, mxGraph
 getPreferredSizeForCell, mxGraph
 getPrettyXML, mxUtils
 getPreviewBounds, mxGraphHandler
 getPreviewPoints
 getPreviewTerminalState, mxEdgeHandler
 getPreviousLayerConnectedCells
 getProperties, mxEventObject
 getProperty, mxEventObject
 getRadius, mxCircleLayout
 getRankValue, mxGraphHierarchyNode
 getRelativePoint, mxGraphView
 getRemovedCellsForChanges, mxGraph
 getRoot
 getRootTitle, mxEditor
 getRotatedPoint, mxUtils
 getRotation
 getRoutingCenterX, mxGraphView
 getRoutingCenterY, mxGraphView
 getScale, mxGraphView
 getScaleForPageCount, mxUtils
 getScrollOrigin, mxUtils
 getSelectionBounds, mxVertexHandler
 getSelectionCell, mxGraph
 getSelectionCells, mxGraph
 getSelectionCellsForChanges, mxGraph
 getSelectionColor
 getSelectionCount, mxGraph
 getSelectionModel, mxGraph
 getSelectionPoints, mxEdgeHandler
 getSelectionStrokeWidth
 getShape, mxCellRenderer
 getShapeConstructor, mxCellRenderer
 getShapeRotation
 getShapesForState, mxCellRenderer
 getSizeForString, mxUtils
 getSnapToTerminalTolerance, mxEdgeHandler
 getSource
 getSourceContainerSize, mxOutline
 getSourcePerimeterPoint, mxConnectionHandler
 getSpacing, mxText
 getSpecialBundle, mxResources
 getStartSize, mxGraph
 getState
 getStateForEvent, mxGraph
 getStates, mxGraphView
 getStateToMark, mxCellMarker
 getStatus, mxXmlRequest
 getStencil, mxStencilRegistry
 getStringValue, mxStylesheetCodec
 getStyle
 getStylename, mxUtils
 getStylenames, mxUtils
 getStylesheet, mxGraph
 getSvgGradient, mxSvgCanvas2D
 getSvgScreenOffset
 getSwimlane, mxGraph
 getSwimlaneAt, mxGraph
 getTable, mxForm
 getTargetPerimeterPoint, mxConnectionHandler
 getTemplate, mxEditor
 getTerminal
 getTerminalForPort, mxGraph
 getTerminalPoint, mxGeometry
 getTerminalPort, mxGraphView
 getText, mxXmlRequest
 getTextContent, mxUtils
 getTextRotation
 getTextScale, mxCellRenderer
 getTitle, mxEditor
 getTolerance
 getTooltip, mxGraph
 getTooltipForCell, mxGraph
 getTooltipForNode, mxElbowEdgeHandler
 getTopmostCells, mxGraphModel
 getTranslate, mxGraphView
 getTranslateForEvent, mxOutline
 getTranslateForRoot, mxGraph
 getUrlImage, mxEditor
 getUrlPost, mxEditor
 getValidState, mxCellMarker
 getValue
 getValues, mxDictionary
 getVertexBounds, mxGraphLayout
 getVerticalAlign, mxGraph
 getView, mxGraph
 getViewXml, mxUtils
 getVisibleTerminal
 getVisibleTerminalState, mxCellState
 getVmlDashPattern, mxVmlCanvas2D
 getWindow, mxPrintPreview
 getX
 getXml
 getY
 graphContainsEvent, mxDragSource
 graphModelChanged
 graphRenderHint, mxOutline
 groupCells
 grow, mxRectangle
-
mxGraphModel.prototype.geometryForCellChanged = function(cell,
geometry)
Inner callback to update the mxGeometry of the given mxCell using mxCell.setGeometry and return the previous mxGeometry.
mxDictionary.prototype.get = function(key)
Returns the value for the given key.
get: function(obj)
Returns the object id for the given object.
get: function(key,
params,
defaultValue)
Returns the value for the specified resource key.
mxSession.prototype.get = function(url,
onLoad,
onError)
Sends an asynchronous get request to the given URL, fires a get event and invokes the given onLoad function when a response is received.
get: function(url,
onload,
onerror)
Loads the specified URL asynchronously and invokes the given functions depending on the request status.
getAlignmentAsPoint: function(align,
valign)
Returns an mxPoint that represents the horizontal and vertical alignment for numeric computations.
mxConnectionHandler.prototype.getAlignmentTolerance = function()
Returns the tolerance for aligning new targets to sources.
mxGraph.prototype.getAllConnectionConstraints = function(terminal,
source)
Returns an array of all mxConnectionConstraints for the given terminal.
mxGraph.prototype.getAllEdges = function(cells)
Returns all edges connected to the given cells or its descendants.
Returns the alternate content for the given foreignObject.
mxPrintPreview.prototype.getAppendices = function()
Returns the pages to be added after the print output.
mxShape.prototype.getArcSize = function(w,
h)
Returns the arc size for the given dimension.
mxSwimlane.prototype.getArcSize = function(w,
h,
start)
Returns the arcsize for the swimlane.
mxCell.prototype.getAttribute = function(name,
defaultValue)
Returns the specified attribute from the user object if it is an XML node.
mxObjectCodec.prototype.getAttributeName = function(fieldname)
Returns the attributename for the given fieldname.
mxGraph.prototype.getBackgroundImage = function()
Returns the backgroundImage as an mxImage.
mxGraphView.prototype.getBackgroundPageBounds = function()
Returns the bounds for the background page.
mxGraphView.prototype.getBackgroundPane = function()
Returns the DOM node that represents the background layer.
getBaseDomain: function()
Returns baseDomain.
getBaseUrl: function()
Returns baseUrl.
mxGraph.prototype.getBorder = function()
Returns the value of border.
mxGraph.prototype.getBorderSizes = function()
Returns the size of the border and padding on all four sides of the container.
mxGraphHandler.prototype.getBoundingBox = function(cells)
Returns the mxRectangle that represents the bounding box for the given cells.
getBoundingBox: function(rect,
rotation)
Returns the bounding box for the rotated rectangle.
mxGraph.prototype.getBoundingBoxFromGeometry = function(cells,
includeEdges)
Returns the bounding box for the geometries of the vertices in the given array of cells.
mxCellOverlay.prototype.getBounds = function(state)
Returns the bounds of the overlay for the given mxCellState as an mxRectangle.
mxGraphView.prototype.getBounds = function(cells)
Returns the bounds (on the screen) for the given array of mxCells.
mxGraph.prototype.getBoundsForGroup = function(group,
children,
border)
Returns the bounds to be used for the given group and children.
mxGraphView.prototype.getCanvas = function()
Returns the DOM node that contains the background-, draw- and overlaypane.
mxCellMarker.prototype.getCell = function(me)
Returns the mxCell for the given event and cell.
mxGraphModel.prototype.getCell = function(id)
Returns the mxCell for the specified Id or null if no cell can be found for the given Id.
mxMouseEvent.prototype.getCell = function()
Returns the mxCell in state is not null.
mxGraph.prototype.getCellAt = function(x,
y,
parent,
vertices,
edges)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.
mxGraph.prototype.getCellBounds = function(cell,
includeEdges,
includeDescendants)
Returns the scaled, translated bounds for the given cell.
mxGraph.prototype.getCellContainmentArea = function(cell)
Returns the mxRectangle inside which a cell is to be kept.
mxPopupMenuHandler.prototype.getCellForPopupEvent = function(me)
Hook to return the cell for the mouse up popup trigger handling.
mxGraph.prototype.getCellGeometry = function(cell)
Returns the mxGeometry for the given cell.
mxGraph.prototype.getCellOverlays = function(cell)
Returns the array of mxCellOverlays for the given cell or null, if no overlays are defined.
getCells: function()
Returns the cells in the clipboard.
mxGraph.prototype.getCells = function(x,
y,
width,
height,
parent,
result)
Returns the children of the given parent that are contained in the given rectangle (x, y, width, height).
mxGraphHandler.prototype.getCells = function(initialCell)
Returns the cells to be modified by this handler.
mxGraph.prototype.getCellsBeyond = function(x0,
y0,
parent,
rightHalfpane,
bottomHalfpane)
Returns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.
mxLayoutManager.prototype.getCellsForChange = function(change)
Executes all layouts which have been scheduled during the changes.
Returns the cells to be layouted for the given sequence of changes.
mxGraph.prototype.getCellsForGroup = function(cells)
Returns the cells with the same parent as the first cell in the given array.
mxGraphView.prototype.getCellStates = function(cells)
Returns the mxCellStates for the given array of mxCells.
mxSpaceManager.prototype.getCellsToShift = function(state)
Returns the cells to shift after a resize of the specified mxCellState.
mxGraph.prototype.getCellStyle = function(cell)
Returns an array of key, value pairs representing the cell style for the given cell.
mxStylesheet.prototype.getCellStyle = function(name,
defaultStyle)
Returns the cell style for the specified stylename or the given defaultStyle if no style can be found for the given stylename.
mxGraph.prototype.getCellValidationError = function(cell)
Checks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.
mxRectangle.prototype.getCenterX = function ()
Returns the x-coordinate of the center point.
mxRectangle.prototype.getCenterY = function ()
Returns the y-coordinate of the center point.
mxCell.prototype.getChildAt = function(index)
Returns the child at the specified index.
mxGraphModel.prototype.getChildAt = function(cell,
index)
Returns the child of the given mxCell at the given index.
mxGraph.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the visible child vertices or edges in the given parent.
mxGraphModel.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the children of the given cell that are vertices and/or edges depending on the arguments.
mxCell.prototype.getChildCount = function()
Returns the number of child cells.
mxGraphModel.prototype.getChildCount = function(cell)
Returns the number of children in the given cell.
mxGraph.prototype.getChildEdges = function(parent)
Returns the visible child edges of the given parent.
mxGraphModel.prototype.getChildEdges = function(parent)
Returns the child edges of the given parent.
getChildNodes: function(node,
nodeType)
Returns an array of child nodes that are of the given node type.
mxGraph.prototype.getChildOffsetForCell = function(cell)
Returns the offset to be used for the cells inside the given cell.
mxGraphModel.prototype.getChildren = function(cell)
Returns all children of the given mxCell as an array of mxCells.
mxGraph.prototype.getChildVertices = function(parent)
Returns the visible child vertices of the given parent.
mxGraphModel.prototype.getChildVertices = function(parent)
Returns the child vertices of the given parent.
getClientX: function(e)
Returns true if the meta key is pressed for the given event.
getClientY: function(e)
Returns true if the meta key is pressed for the given event.
mxGraph.prototype.getCloneableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
getCodec: function(ctor)
Returns a codec that handles objects that are constructed using the given constructor.
getColor: function(array,
key,
defaultValue)
Returns the color value for the given key in the given associative array or the given default value if the value is null.
mxConnectionHandler.prototype.getConnectImage = function(state)
Hook to return the mxImage used for the connection icon of the given mxCellState.
mxGraph.prototype.getConnectionConstraint = function(edge,
terminal,
source)
Returns an mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.getConnectionPoint = function(vertex,
constraint)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
mxGraph.prototype.getConnections = function(cell,
parent)
Returns all visible edges connected to the given cell without loops.
mxGraphModel.prototype.getConnections = function(cell)
Returns all edges of the given cell without loops.
mxGraphLayout.prototype.getConstraint = function(key,
cell,
edge,
source)
Returns the constraint for the given key and cell.
mxCellRenderer.prototype.getControlBounds = function(state,
w,
h)
Returns the bounds to be used to draw the control (folding icon) of the given state.
mxGraphHierarchyEdge.prototype.getCoreCell = function()
Gets the first core edge associated with this wrapper
mxGraphHierarchyNode.prototype.getCoreCell = function()
Gets the core vertex associated with this wrapper
mxPrintPreview.prototype.getCoverPages = function()
Returns the pages to be added before the print output.
mxGraph.prototype.getCurrentRoot = function()
Returns the current root of the displayed cell hierarchy.
getCurrentStyle: function()
Returns the current style of the specified element.
mxCellEditor.prototype.getCurrentValue = function()
Returns the current editing value.
mxShape.prototype.getCursor = function()
Returns the current cursor.
mxElbowEdgeHandler.prototype.getCursorForBend = function()
Returns the cursor to be used for the bend.
mxGraph.prototype.getCursorForCell = function(cell)
Returns the cursor value to be used for the CSS of the shape for the given cell.
mxGraph.prototype.getCursorForMouseEvent = function(me)
Returns the cursor value to be used for the CSS of the shape for the given event.
getDefaultBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxStylesheet.prototype.getDefaultEdgeStyle = function()
Sets the default style for edges.
mxGraph.prototype.getDefaultParent = function()
Returns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.
mxStylesheet.prototype.getDefaultVertexStyle = function()
Returns the default style for vertices.
mxGraph.prototype.getDeletableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxGraphHandler.prototype.getDelta = function(me)
Returns an mxPoint that represents the vector for moving the cells for the given mxMouseEvent.
mxMorphing.prototype.getDelta = function(state)
Returns the vector between the current rendered state and the future location of the state after the display will be updated.
mxGraphModel.prototype.getDescendants = function(parent)
Returns all descendants of the given cell and the cell itself in an array.
mxGraphModel.prototype.getDirectedEdgeCount = function(cell,
outgoing,
ignoredEdge)
Returns the number of incoming or outgoing edges, ignoring the given edge.
Returns the string that should go before the HTML tag in the print preview page.
mxXmlRequest.prototype.getDocumentElement = function()
Returns the document element of the response XML document.
mxDivResizer.prototype.getDocumentHeight = function()
Hook for subclassers to return the height of the document (without scrollbars).
getDocumentScrollOrigin: function(doc)
Returns the scroll origin of the given document or the current document if no document is given.
mxDivResizer.prototype.getDocumentWidth = function()
Hook for subclassers to return the width of the document (without scrollbars).
mxGraphView.prototype.getDrawPane = function()
Returns the DOM node that represents the main drawing layer.
mxDragSource.prototype.getDropTarget = function(graph,
x,
y)
Returns the drop target for the given graph and coordinates.
mxGraph.prototype.getDropTarget = function(cells,
evt,
cell)
Returns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.
mxCell.prototype.getEdgeAt = function(index)
Returns the edge at the specified index in edges.
mxGraphModel.prototype.getEdgeAt = function(cell,
index)
Returns the edge of cell at the given index.
mxConnectionHandler.prototype.getEdgeColor = function(valid)
Returns the color used to draw the preview edge.
mxCell.prototype.getEdgeCount = function()
Returns the number of edges in the edge array.
mxGraphModel.prototype.getEdgeCount = function(cell)
Returns the number of distinct edges connected to the given cell.
mxParallelEdgeLayout.prototype.getEdgeId = function(edge)
Returns a unique ID for the given edge.
mxCell.prototype.getEdgeIndex = function(edge)
Returns the index of the specified edge in edges.
mxGraph.prototype.getEdges = function(cell,
parent,
incoming,
outgoing,
includeLoops,
recurse)
Returns the incoming and/or outgoing edges for the given cell.
mxGraphModel.prototype.getEdges = function(cell,
incoming,
outgoing,
includeLoops)
Returns all distinct edges connected to this cell as a new array of mxCells.
mxHierarchicalLayout.prototype.getEdges = function(cell)
Returns the connected edges for the given cell.
mxSwimlaneLayout.prototype.getEdges = function(cell)
Returns the connected edges for the given cell.
mxGraph.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxGraphModel.prototype.getEdgesBetween = function(source,
target,
directed)
Returns all edges between the given source and target pair.
mxHierarchicalLayout.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxSwimlaneLayout.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxEditor.prototype.getEdgeStyle = function ()
Returns a string identifying the style of new edges.
mxGraphView.prototype.getEdgeStyle = function(edge,
points,
source,
target)
Returns the edge style function to be used to render the given edge state.
mxGraph.prototype.getEdgeValidationError = function(edge,
source,
target)
Returns the validation error message to be displayed when inserting or changing an edges’ connectivity.
mxConnectionHandler.prototype.getEdgeWidth = function(valid)
Returns the width used to draw the preview edge.
mxCellEditor.prototype.getEditingCell = function ()
Returns the cell that is currently being edited or null if no cell is being edited.
mxGraph.prototype.getEditingValue = function(cell,
evt)
Returns the initial value for in-place editing.
mxCellEditor.prototype.getEditorBounds = function(state)
Returns the mxRectangle that defines the bounds of the editor.
mxWindow.prototype.getElement = function()
Returuns the outermost DOM node that makes up the window.
mxCodec.prototype.getElementById = function(id,
attr)
Returns the element with the given ID from document.
mxCellEditor.prototype.getEmptyLabelText = function (cell)
Returns the initial label value to be used of the label of the given cell is empty.
mxMouseEvent.prototype.getEvent = function()
Returns evt.
mxEventSource.prototype.getEventSource = function()
Returns eventSource.
mxGraph.prototype.getExportableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxObjectCodec.prototype.getFieldName = function(attributename)
Returns the fieldname for the given attributename.
mxObjectCodec.prototype.getFieldTemplate = function(obj,
fieldname,
child)
Returns the template instance for the given field.
mxGraphSelectionModel.prototype.getFirstSelectableCell = function(cells)
Returns the first selectable cell in the given array of cells.
mxGraph.prototype.getFoldableCells = function(cells,
collapse)
Returns the cells which are movable in the given array of cells.
mxGraph.prototype.getFoldingImage = function(state)
Returns the mxImage used to display the collapsed state of the specified cell state.
mxKeyHandler.prototype.getFunction = function(evt)
Returns the function associated with the given key event or null if no function is associated with the given event.
getFunctionName: function(f)
Returns the name for the given function.
mxGraphAbstractHierarchyCell.prototype.getGeneralPurposeVariable = function(
   layer
)
Gets the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxGraphHierarchyNode.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxCell.prototype.getGeometry = function()
Returns the mxGeometry that describes the geometry.
mxGraphModel.prototype.getGeometry = function(cell)
Returns the mxGeometry of the given mxCell.
mxShape.prototype.getGradientBounds = function(c,
x,
y,
w,
h)
Returns the bounding box for the gradient box for this shape.
mxSwimlane.prototype.getGradientBounds = function(c,
x,
y,
w,
h)
Returns the bounding box for the gradient box for this shape.
mxGraphLayout.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxLayoutManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSpaceManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSwimlaneManager.prototype.getGraph = function()
Returns the graph that this manager operates on.
mxGraph.prototype.getGraphBounds = function()
Returns the bounds of the visible graph.
mxGraphView.prototype.getGraphBounds = function()
Returns graphBounds.
mxDragSource.prototype.getGraphForEvent = function(evt)
Returns the graph for the given mouse event.
mxMouseEvent.prototype.getGraphX = function()
Returns graphX.
mxMouseEvent.prototype.getGraphY = function()
Returns graphY.
mxGraph.prototype.getGridSize = function()
Returns gridSize.
mxGraphHandler.prototype.getGuideStates = function()
Creates an array of cell states which should be used as guides.
mxGuide.prototype.getGuideTolerance = function()
Returns the tolerance for the guides.
mxEdgeHandler.prototype.getHandleFillColor = function(index)
Returns the fillcolor for the handle at the given index.
mxEdgeHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxVertexHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxSelectionCellsHandler.prototype.getHandler = function(cell)
Returns the handler for the given cell.
mxCellMarker.prototype.getHotspot = function()
Returns the hotspot.
mxCell.prototype.getId = function()
Returns the Id of the cell as a string.
mxCodec.prototype.getId = function(obj)
Returns the ID of the specified object.
mxGraph.prototype.getImage = function(state)
Returns the image URL for the given cell state.
mxImageBundle.prototype.getImage = function(key)
Returns the value for the given key.
mxLabel.prototype.getImageBounds = function(x,
y,
w,
h)
Generic background painting implementation.
mxSwimlane.prototype.getImageBounds = function(x,
y,
w,
h)
Paints the swimlane vertex shape.
mxConstraintHandler.prototype.getImageForConstraint = function(state,
constraint,
point)
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getImageFromBundles = function(key)
Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
mxGraph.prototype.getImportableCells = function(cells)
Returns the cells which may be imported in the given array of cells.
mxGraph.prototype.getIncomingEdges = function(cell,
parent)
Returns the visible incoming edges for the given cell.
mxGraphModel.prototype.getIncomingEdges = function(cell)
Returns the incoming edges of the given cell without loops.
mxCell.prototype.getIndex = function(child)
Returns the index of the specified child in the child array.
mxLabel.prototype.getIndicatorBounds = function(x,
y,
w,
h)
Generic background painting implementation.
mxGraph.prototype.getIndicatorColor = function(state)
Returns the indicator color for the given cell state.
mxGraph.prototype.getIndicatorGradientColor = function(state)
Returns the indicator gradient color for the given cell state.
mxGraph.prototype.getIndicatorImage = function(state)
Returns the indicator image for the given cell state.
mxGraph.prototype.getIndicatorShape = function(state)
Returns the indicator shape for the given cell state.
mxGraphHandler.prototype.getInitialCellForEvent = function(me)
Hook to return initial cell for the given event.
mxCellEditor.prototype.getInitialValue = function(state,
trigger)
Gets the initial editing value for the given cell.
getInnerHtml: function()
Returns the inner HTML for the given node as a string or an empty string if no node was specified.
mxDictionary.prototype.getKeys = function()
Returns all keys as an array.
mxGraph.prototype.getLabel = function(cell)
Returns a string or DOM node that represents the label for the given cell.
mxCellRenderer.prototype.getLabelBounds = function(state)
Returns the bounds to be used to draw the label of the given state.
mxShape.prototype.getLabelBounds = function(rect)
Returns the mxRectangle for the label bounds of this shape, based on the given scaled and translated bounds of the shape.
mxCellRenderer.prototype.getLabelValue = function(state)
Returns the value to be used for the label.
mxLayoutManager.prototype.getLayout = function(parent)
Returns the layout to be executed for the given graph and parent.
getMainEvent: function(e)
Returns the touch or mouse event that contains the mouse coordinates.
Returns the spacing as an mxPoint.
mxCellMarker.prototype.getMarkedState = function()
Returns the markedState.
mxCellMarker.prototype.getMarkerColor = function(evt,
state,
isValid)
Returns the valid- or invalidColor depending on the value of isValid.
mxGraph.prototype.getMaximumGraphBounds = function()
Returns the bounds inside which the diagram should be kept as an mxRectangle.
mxCellEditor.prototype.getMinimumSize = function(state)
Returns the minimum width and height for editing the given state.
mxWindow.prototype.getMinimumSize = function()
Returns an mxRectangle that specifies the size for the minimized window.
mxGraph.prototype.getModel = function()
Returns the mxGraphModel that contains the cells.
mxHierarchicalLayout.prototype.getModel = function()
Returns the internal mxGraphHierarchyModel for this layout algorithm.
mxSwimlaneLayout.prototype.getModel = function()
Returns the internal mxSwimlaneModel for this layout algorithm.
mxGraph.prototype.getMovableCells = function(cells)
Returns the cells which are movable in the given array of cells.
mxEventObject.prototype.getName = function()
Returns name.
mxObjectCodec.prototype.getName = function()
Returns the name used for the nodenames and lookup of the codec when classes are encoded and nodes are decoded.
getName: function(value)
Returns the name for the given value.
mxGraphModel.prototype.getNearestCommonAncestor = function(cell1,
cell2)
Returns the nearest common ancestor for the specified cells.
mxGraphAbstractHierarchyCell.prototype.getNextLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyEdge.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyNode.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphView.prototype.getNextPoint = function(edge,
opposite,
source)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
getNumber: function(array,
key,
defaultValue)
Returns the numeric value for the given key in the given associative array or the given default value (or 0) if the value is null.
mxCodec.prototype.getObject = function(id)
Returns the decoded object for the element with the specified ID in document.
getOffset: function(container,
scrollOffset)
Returns the offset for the specified container as an mxPoint.
mxGraph.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all distinct visible opposite cells for the specified terminal on the given edges.
mxGraphModel.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all opposite vertices wrt terminal for the given edges, only returning sources and/or targets as specified.
mxGraphModel.prototype.getOrigin = function(cell)
Returns the absolute, accumulated origin for the children inside the given parent as an mxPoint.
mxMorphing.prototype.getOriginForCell = function(cell)
Returns the top, left corner of the given cell.
getOuterHtml: function()
Returns the outer HTML for the given node as a string or an empty string if no node was specified.
mxGraph.prototype.getOutgoingEdges = function(cell,
parent)
Returns the visible outgoing edges for the given cell.
mxGraphModel.prototype.getOutgoingEdges = function(cell)
Returns the outgoing edges of the given cell without loops.
mxOutline.prototype.getOutlineOffset = function(scale)
Returns the offset for drawing the outline graph.
mxGraph.prototype.getOverlap = function(cell)
Returns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.
mxGraphView.prototype.getOverlayPane = function()
Returns the DOM node that represents the topmost drawing layer.
mxCell.prototype.getParent = function()
Returns the cell’s parent.
mxGraphModel.prototype.getParent = function(cell)
Returns the parent of the given cell.
mxGraphLayout.prototype.getParentOffset = function(parent)
Determines the offset of the given parent to the parent of the layout
getParentPath: function(path)
Returns the path for the parent of the cell represented by the given path.
mxGraphModel.prototype.getParents = function(cells)
Returns an array that represents the set (no duplicates) of all parents for the given array of cells.
mxStackLayout.prototype.getParentSize = function(parent)
Returns the size for the parent container or the size of the graph container if the parent is a layer or the root of the model.
mxCellState.prototype.getPerimeterBounds = function (border,
bounds)
Returns the mxRectangle that should be used as the perimeter of the cell.
mxGraphView.prototype.getPerimeterBounds = function(terminal,
border)
Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
mxGraphView.prototype.getPerimeterFunction = function(state)
Returns the perimeter function for the given state.
mxGraphView.prototype.getPerimeterPoint = function(terminal,
next,
orthogonal,
border)
Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
mxGraphView.prototype.getPoint = function(state,
geometry)
Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
mxRectangle.prototype.getPoint = function()
Returns the top, left corner as a new mxPoint.
mxEdgeHandler.prototype.getPointForEvent = function(me)
Returns the point for the given event.
mxGraph.prototype.getPointForEvent = function(evt,
addOffset)
Returns an mxPoint representing the given event in the unscaled, non-translated coordinate space of container and applies the grid.
mxGraph.prototype.getPreferredPageSize = function(bounds,
width,
height)
Returns the preferred size of the background page if preferPageSize is true.
mxGraph.prototype.getPreferredSizeForCell = function(cell)
Returns the preferred width and height of the given mxCell as an mxRectangle.
Returns a pretty printed string that represents the XML tree for the given node.
mxGraphHandler.prototype.getPreviewBounds = function(cells)
Returns the mxRectangle used as the preview bounds for moving the given cells.
mxEdgeSegmentHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewTerminalState = function(me)
Updates the given preview state taking into account the state of the constraint handler.
mxGraphAbstractHierarchyCell.prototype.getPreviousLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyEdge.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyNode.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxEventObject.prototype.getProperties = function()
Returns properties.
mxEventObject.prototype.getProperty = function(key)
Returns the property for the given key.
mxCircleLayout.prototype.getRadius = function(count,
max)
Returns the radius to be used for the given vertex count.
mxGraphHierarchyNode.prototype.getRankValue = function(layer)
Returns the integer value of the layer that this node resides in
mxGraphView.prototype.getRelativePoint = function(edgeState,
x,
y)
Gets the relative point that describes the given, absolute label position for the given edge state.
mxGraph.prototype.getRemovedCellsForChanges = function(changes)
Returns the cells that have been removed from the model.
mxGraphModel.prototype.getRoot = function(cell)
Returns the root of the model or the topmost parent of the given cell.
mxPrintPreview.prototype.getRoot = function()
Returns the root cell for painting the graph.
mxEditor.prototype.getRootTitle = function ()
Returns the string value of the root cell in mxGraph.model.
getRotatedPoint: function(pt,
cos,
sin,
c)
Rotates the given point by the given cos and sin.
mxPolyline.prototype.getRotation = function()
Returns 0.
mxShape.prototype.getRotation = function()
Returns the rotation from the style.
mxSwimlane.prototype.getRotation = function()
Overrides rotation to include the horizontal flag in the shape rotation.
mxGraphView.prototype.getRoutingCenterX = function (state)
Returns the x-coordinate of the center point for automatic routing.
mxGraphView.prototype.getRoutingCenterY = function (state)
Returns the y-coordinate of the center point for automatic routing.
mxGraphView.prototype.getScale = function()
Returns the scale.
getScaleForPageCount: function(pageCount,
graph,
pageFormat,
border)
Returns the scale to be used for printing the graph with the given bounds across the specifies number of pages with the given format.
getScrollOrigin: function(node)
Returns the top, left corner of the viewrect as an mxPoint.
mxVertexHandler.prototype.getSelectionBounds = function(state)
Returns the mxRectangle that defines the bounds of the selection border.
mxGraph.prototype.getSelectionCell = function()
Returns the first cell from the array of selected mxCells.
mxGraph.prototype.getSelectionCells = function()
Returns the array of selected mxCells.
mxGraph.prototype.getSelectionCellsForChanges = function(changes)
Returns the cells to be selected for the given array of changes.
mxEdgeHandler.prototype.getSelectionColor = function()
Returns mxConstants.EDGE_SELECTION_COLOR.
mxVertexHandler.prototype.getSelectionColor = function()
Returns mxConstants.VERTEX_SELECTION_COLOR.
mxGraph.prototype.getSelectionCount = function()
Returns the number of selected cells.
mxGraph.prototype.getSelectionModel = function()
Returns the mxGraphSelectionModel that contains the selection.
mxEdgeHandler.prototype.getSelectionPoints = function(state)
Returns the list of points that defines the selection stroke.
mxEdgeHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.EDGE_SELECTION_STROKEWIDTH.
mxVertexHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.VERTEX_SELECTION_STROKEWIDTH.
mxCellRenderer.prototype.getShape = function(name)
Returns the shape for the given name from defaultShapes.
mxCellRenderer.prototype.getShapeConstructor = function(state)
Returns the constructor to be used for creating the shape.
mxPolyline.prototype.getShapeRotation = function()
Returns 0.
mxShape.prototype.getShapeRotation = function()
Returns the actual rotation of the shape.
mxText.prototype.getShapeRotation = function()
Returns 0 to avoid using rotation in the canvas via updateTransform.
mxCellRenderer.prototype.getShapesForState = function(state)
Returns the mxShapes for the given cell state in the order in which they should appear in the DOM.
getSizeForString: function(text,
fontSize,
fontFamily,
textWidth)
Returns an mxRectangle with the size (width and height in pixels) of the given string.
mxEdgeHandler.prototype.getSnapToTerminalTolerance = function()
Returns the tolerance for the guides.
getSource: function(evt)
Returns the event’s target or srcElement depending on the browser.
mxMouseEvent.prototype.getSource = function()
Returns the target DOM element using mxEvent.getSource for evt.
mxOutline.prototype.getSourceContainerSize = function()
Returns the size of the source container.
mxConnectionHandler.prototype.getSourcePerimeterPoint = function(state,
next,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxText.prototype.getSpacing = function()
Returns the spacing as an mxPoint.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxGraph.prototype.getStartSize = function(swimlane)
Returns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.
mxCellMarker.prototype.getState = function(me)
Uses getCell, getStateToMark and intersects to return the mxCellState for the given mxMouseEvent.
mxGraphView.prototype.getState = function(cell,
create)
Returns the mxCellState for the given cell.
mxMouseEvent.prototype.getState = function()
Returns state.
Returns the state for the given touch event.
mxGraphView.prototype.getStates = function()
Returns states.
mxCellMarker.prototype.getStateToMark = function(state)
Returns the mxCellState to be marked for the given mxCellState under the mouse.
mxXmlRequest.prototype.getStatus = function()
Returns the status as a number, eg.
getStencil: function(name)
Returns the mxStencil for the given name.
codec.getStringValue = function(key,
value)
Returns the string for encoding the given value.
mxCell.prototype.getStyle = function()
Returns a string that describes the style.
mxGraphModel.prototype.getStyle = function(cell)
Returns the style of the given mxCell.
getStylename: function(style)
Returns the stylename in a style of the form [(stylename|key=value);] or an empty string if the given style does not contain a stylename.
getStylenames: function(style)
Returns the stylenames in a style of the form [(stylename|key=value);] or an empty array if the given style does not contain any stylenames.
mxGraph.prototype.getStylesheet = function()
Returns the mxStylesheet that defines the style.
mxSvgCanvas2D.prototype.getSvgGradient = function(start,
end,
alpha1,
alpha2,
direction)
Private helper function to create SVG elements
mxImageShape.prototype.getSvgScreenOffset = function()
Disables offset in IE9 for crisper image output.
mxShape.prototype.getSvgScreenOffset = function()
Returns 0, or 0.5 if strokewidth % 2 == 1.
mxText.prototype.getSvgScreenOffset = function()
Disables offset in IE9 for crisper image output.
mxGraph.prototype.getSwimlane = function(cell)
Returns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.
mxGraph.prototype.getSwimlaneAt = function (x,
y,
parent)
Returns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
mxForm.prototype.getTable = function()
Returns the table that contains this form.
mxConnectionHandler.prototype.getTargetPerimeterPoint = function(state,
me)
Returns the perimeter point for the given target state.
mxEditor.prototype.getTemplate = function (name)
Returns the template for the given name.
mxCell.prototype.getTerminal = function(source)
Returns the source or target terminal.
mxGraphModel.prototype.getTerminal = function(edge,
isSource)
Returns the source or target mxCell of the given edge depending on the value of the boolean parameter.
mxGraph.prototype.getTerminalForPort = function(cell,
source)
Returns the terminal to be used for a given port.
mxGeometry.prototype.getTerminalPoint = function(isSource)
Returns the mxPoint representing the source or target point of this edge.
mxGraphView.prototype.getTerminalPort = function(state,
terminal,
source)
Returns an mxCellState that represents the source or target terminal or port for the given edge.
mxXmlRequest.prototype.getText = function()
Returns the response as a string.
getTextContent: function(node)
Returns the text content of the specified node.
mxShape.prototype.getTextRotation = function()
Returns the rotation for the text label.
mxSwimlane.prototype.getTextRotation = function()
Redirect the text rotation to the shape rotation to avoid adding the vertical text rotation twice.
mxText.prototype.getTextRotation = function()
Returns the rotation for the text label of the corresponding shape.
mxCellRenderer.prototype.getTextScale = function(state)
Returns the scaling used for the label of the given state
mxEditor.prototype.getTitle = function ()
Returns the string value for the current root of the diagram.
mxConstraintHandler.prototype.getTolerance = function()
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getTolerance = function()
Returns tolerance.
mxGraph.prototype.getTooltip = function(state,
node,
x,
y)
Returns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.
mxGraph.prototype.getTooltipForCell = function(cell)
Returns the string or DOM node to be used as the tooltip for the given cell.
mxElbowEdgeHandler.prototype.getTooltipForNode = function(node)
Returns the tooltip for the given node.
mxGraphModel.prototype.getTopmostCells = function(cells)
Returns the topmost cells of the hierarchy in an array that contains no descendants for each mxCell that it contains.
mxGraphView.prototype.getTranslate = function()
Returns the translate.
mxOutline.prototype.getTranslateForEvent = function(me)
Gets the translate for the given mouse event.
mxGraph.prototype.getTranslateForRoot = function(cell)
Returns the translation to be used if the given cell is the root cell as an mxPoint.
mxEditor.prototype.getUrlImage = function ()
Returns the URL to create the image with.
mxEditor.prototype.getUrlPost = function ()
Returns the URL to post the diagram to.
mxCellMarker.prototype.getValidState = function()
Returns the validState.
mxCell.prototype.getValue = function()
Returns the user object of the cell.
mxGraphModel.prototype.getValue = function(cell)
Returns the user object of the given mxCell using mxCell.getValue.
getValue: function(name)
Returns the value associated with the given name.
getValue: function(array,
key,
defaultValue)
Returns the value for the given key in the given associative array or the given default value if the value is null.
mxDictionary.prototype.getValues = function()
Returns all values as an array.
mxGraphLayout.prototype.getVertexBounds = function(cell)
Returns an mxRectangle that defines the bounds of the given cell or the bounding box if useBoundingBox is true.
mxGraph.prototype.getVerticalAlign = function(state)
Returns the vertical alignment for the given cell state.
mxGraph.prototype.getView = function()
Returns the mxGraphView that contains the mxCellStates.
getViewXml: function(graph,
scale,
cells,
x0,
y0)
mxCellState.prototype.getVisibleTerminal = function (source)
Returns the visible source or target terminal cell.
mxGraphView.prototype.getVisibleTerminal = function(edge,
source)
Returns the nearest ancestor terminal that is visible.
mxHierarchicalLayout.prototype.getVisibleTerminal = function(edge,
source)
Helper function to return visible terminal for edge allowing for ports
mxSwimlaneLayout.prototype.getVisibleTerminal = function(edge,
source)
Helper function to return visible terminal for edge allowing for ports
mxCellState.prototype.getVisibleTerminalState = function (source)
Returns the visible source or target terminal state.
Returns a VML dash pattern for the current dashPattern.
mxPrintPreview.prototype.getWindow = function()
Returns wnd.
mxGraphAbstractHierarchyCell.prototype.getX = function(layer)
Gets the value of x on the specified layer
mxMouseEvent.prototype.getX = function()
Returns evt.clientX.
mxWindow.prototype.getX = function()
Returns the current position on the x-axis.
getXml: function(node,
linefeed)
Returns the XML content of the specified node.
mxXmlRequest.prototype.getXml = function()
Returns the response as an XML document.
mxMouseEvent.prototype.getY = function()
Returns evt.clientY.
mxWindow.prototype.getY = function()
Returns the current position on the y-axis.
mxDragSource.prototype.graphContainsEvent = function(graph,
evt)
Returns true if the given graph contains the given event.
mxAutoSaveManager.prototype.graphModelChanged = function(changes)
Invoked when the graph model has changed.
mxGraph.prototype.graphModelChanged = function(changes)
Called when the graph model changes.
Renderhint to be used for the outline graph.
mxEditor.prototype.groupCells = function ()
Invokes createGroup to create a new group cell and the invokes mxGraph.groupCells, using the grid size of the graph as the spacing in the group’s content area.
mxGraph.prototype.groupCells = function(group,
border,
cells)
Adds the cells into the given group.
mxRectangle.prototype.grow = function(amount)
Grows the rectangle by the given amount, that is, this method subtracts the given amount from the x- and y-coordinates and adds twice the amount to the width and height.
+
mxGraphModel.prototype.geometryForCellChanged = function(cell,
geometry)
Inner callback to update the mxGeometry of the given mxCell using mxCell.setGeometry and return the previous mxGeometry.
mxDictionary.prototype.get = function(key)
Returns the value for the given key.
get: function(obj)
Returns the object id for the given object.
get: function(key,
params,
defaultValue)
Returns the value for the specified resource key.
mxSession.prototype.get = function(url,
onLoad,
onError)
Sends an asynchronous get request to the given URL, fires a get event and invokes the given onLoad function when a response is received.
get: function(url,
onload,
onerror)
Loads the specified URL asynchronously and invokes the given functions depending on the request status.
getAlignmentAsPoint: function(align,
valign)
Returns an mxPoint that represents the horizontal and vertical alignment for numeric computations.
mxConnectionHandler.prototype.getAlignmentTolerance = function()
Returns the tolerance for aligning new targets to sources.
mxGraph.prototype.getAllConnectionConstraints = function(terminal,
source)
Returns an array of all mxConnectionConstraints for the given terminal.
mxGraph.prototype.getAllEdges = function(cells)
Returns all edges connected to the given cells or its descendants.
Returns the alternate content for the given foreignObject.
mxPrintPreview.prototype.getAppendices = function()
Returns the pages to be added after the print output.
mxShape.prototype.getArcSize = function(w,
h)
Returns the arc size for the given dimension.
mxSwimlane.prototype.getArcSize = function(w,
h,
start)
Returns the arcsize for the swimlane.
mxCell.prototype.getAttribute = function(name,
defaultValue)
Returns the specified attribute from the user object if it is an XML node.
mxObjectCodec.prototype.getAttributeName = function(fieldname)
Returns the attributename for the given fieldname.
mxGraph.prototype.getBackgroundImage = function()
Returns the backgroundImage as an mxImage.
mxGraphView.prototype.getBackgroundPageBounds = function()
Returns the bounds for the background page.
mxGraphView.prototype.getBackgroundPane = function()
Returns the DOM node that represents the background layer.
getBaseDomain: function()
Returns baseDomain.
getBaseUrl: function()
Returns baseUrl.
mxGraph.prototype.getBorder = function()
Returns the value of border.
mxGraph.prototype.getBorderSizes = function()
Returns the size of the border and padding on all four sides of the container.
mxGraphHandler.prototype.getBoundingBox = function(cells)
Returns the mxRectangle that represents the bounding box for the given cells.
getBoundingBox: function(rect,
rotation)
Returns the bounding box for the rotated rectangle.
mxGraph.prototype.getBoundingBoxFromGeometry = function(cells,
includeEdges)
Returns the bounding box for the geometries of the vertices in the given array of cells.
mxCellOverlay.prototype.getBounds = function(state)
Returns the bounds of the overlay for the given mxCellState as an mxRectangle.
mxGraphView.prototype.getBounds = function(cells)
Returns the bounds (on the screen) for the given array of mxCells.
mxGraph.prototype.getBoundsForGroup = function(group,
children,
border)
Returns the bounds to be used for the given group and children.
mxGraphView.prototype.getCanvas = function()
Returns the DOM node that contains the background-, draw- and overlaypane.
mxCellMarker.prototype.getCell = function(me)
Returns the mxCell for the given event and cell.
mxGraphModel.prototype.getCell = function(id)
Returns the mxCell for the specified Id or null if no cell can be found for the given Id.
mxMouseEvent.prototype.getCell = function()
Returns the mxCell in state is not null.
mxGraph.prototype.getCellAt = function(x,
y,
parent,
vertices,
edges)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.
mxGraph.prototype.getCellBounds = function(cell,
includeEdges,
includeDescendants)
Returns the scaled, translated bounds for the given cell.
mxGraph.prototype.getCellContainmentArea = function(cell)
Returns the mxRectangle inside which a cell is to be kept.
mxPopupMenuHandler.prototype.getCellForPopupEvent = function(me)
Hook to return the cell for the mouse up popup trigger handling.
mxGraph.prototype.getCellGeometry = function(cell)
Returns the mxGeometry for the given cell.
mxGraph.prototype.getCellOverlays = function(cell)
Returns the array of mxCellOverlays for the given cell or null, if no overlays are defined.
getCells: function()
Returns the cells in the clipboard.
mxGraph.prototype.getCells = function(x,
y,
width,
height,
parent,
result)
Returns the children of the given parent that are contained in the given rectangle (x, y, width, height).
mxGraphHandler.prototype.getCells = function(initialCell)
Returns the cells to be modified by this handler.
mxGraph.prototype.getCellsBeyond = function(x0,
y0,
parent,
rightHalfpane,
bottomHalfpane)
Returns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.
mxLayoutManager.prototype.getCellsForChange = function(change)
Executes all layouts which have been scheduled during the changes.
Returns the cells to be layouted for the given sequence of changes.
mxGraph.prototype.getCellsForGroup = function(cells)
Returns the cells with the same parent as the first cell in the given array.
mxGraphView.prototype.getCellStates = function(cells)
Returns the mxCellStates for the given array of mxCells.
mxSpaceManager.prototype.getCellsToShift = function(state)
Returns the cells to shift after a resize of the specified mxCellState.
mxGraph.prototype.getCellStyle = function(cell)
Returns an array of key, value pairs representing the cell style for the given cell.
mxStylesheet.prototype.getCellStyle = function(name,
defaultStyle)
Returns the cell style for the specified stylename or the given defaultStyle if no style can be found for the given stylename.
mxGraph.prototype.getCellValidationError = function(cell)
Checks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.
mxRectangle.prototype.getCenterX = function ()
Returns the x-coordinate of the center point.
mxRectangle.prototype.getCenterY = function ()
Returns the y-coordinate of the center point.
mxCell.prototype.getChildAt = function(index)
Returns the child at the specified index.
mxGraphModel.prototype.getChildAt = function(cell,
index)
Returns the child of the given mxCell at the given index.
mxGraph.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the visible child vertices or edges in the given parent.
mxGraphModel.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the children of the given cell that are vertices and/or edges depending on the arguments.
mxCell.prototype.getChildCount = function()
Returns the number of child cells.
mxGraphModel.prototype.getChildCount = function(cell)
Returns the number of children in the given cell.
mxGraph.prototype.getChildEdges = function(parent)
Returns the visible child edges of the given parent.
mxGraphModel.prototype.getChildEdges = function(parent)
Returns the child edges of the given parent.
getChildNodes: function(node,
nodeType)
Returns an array of child nodes that are of the given node type.
mxGraph.prototype.getChildOffsetForCell = function(cell)
Returns the offset to be used for the cells inside the given cell.
mxGraphModel.prototype.getChildren = function(cell)
Returns all children of the given mxCell as an array of mxCells.
mxGraph.prototype.getChildVertices = function(parent)
Returns the visible child vertices of the given parent.
mxGraphModel.prototype.getChildVertices = function(parent)
Returns the child vertices of the given parent.
getClientX: function(e)
Returns true if the meta key is pressed for the given event.
getClientY: function(e)
Returns true if the meta key is pressed for the given event.
mxGraph.prototype.getCloneableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
getCodec: function(ctor)
Returns a codec that handles objects that are constructed using the given constructor.
getColor: function(array,
key,
defaultValue)
Returns the color value for the given key in the given associative array or the given default value if the value is null.
mxConnectionHandler.prototype.getConnectImage = function(state)
Hook to return the mxImage used for the connection icon of the given mxCellState.
mxGraph.prototype.getConnectionConstraint = function(edge,
terminal,
source)
Returns an mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.getConnectionPoint = function(vertex,
constraint)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
mxGraph.prototype.getConnections = function(cell,
parent)
Returns all visible edges connected to the given cell without loops.
mxGraphModel.prototype.getConnections = function(cell)
Returns all edges of the given cell without loops.
mxGraphLayout.prototype.getConstraint = function(key,
cell,
edge,
source)
Returns the constraint for the given key and cell.
mxCellRenderer.prototype.getControlBounds = function(state,
w,
h)
Returns the bounds to be used to draw the control (folding icon) of the given state.
mxGraphHierarchyEdge.prototype.getCoreCell = function()
Gets the first core edge associated with this wrapper
mxGraphHierarchyNode.prototype.getCoreCell = function()
Gets the core vertex associated with this wrapper
mxPrintPreview.prototype.getCoverPages = function()
Returns the pages to be added before the print output.
mxGraph.prototype.getCurrentRoot = function()
Returns the current root of the displayed cell hierarchy.
getCurrentStyle: function()
Returns the current style of the specified element.
mxCellEditor.prototype.getCurrentValue = function()
Returns the current editing value.
mxShape.prototype.getCursor = function()
Returns the current cursor.
mxElbowEdgeHandler.prototype.getCursorForBend = function()
Returns the cursor to be used for the bend.
mxGraph.prototype.getCursorForCell = function(cell)
Returns the cursor value to be used for the CSS of the shape for the given cell.
mxGraph.prototype.getCursorForMouseEvent = function(me)
Returns the cursor value to be used for the CSS of the shape for the given event.
getDefaultBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxStylesheet.prototype.getDefaultEdgeStyle = function()
Sets the default style for edges.
mxGraph.prototype.getDefaultParent = function()
Returns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.
mxStylesheet.prototype.getDefaultVertexStyle = function()
Returns the default style for vertices.
mxGraph.prototype.getDeletableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxGraphHandler.prototype.getDelta = function(me)
Returns an mxPoint that represents the vector for moving the cells for the given mxMouseEvent.
mxMorphing.prototype.getDelta = function(state)
Returns the vector between the current rendered state and the future location of the state after the display will be updated.
mxGraphModel.prototype.getDescendants = function(parent)
Returns all descendants of the given cell and the cell itself in an array.
mxGraphModel.prototype.getDirectedEdgeCount = function(cell,
outgoing,
ignoredEdge)
Returns the number of incoming or outgoing edges, ignoring the given edge.
Returns the string that should go before the HTML tag in the print preview page.
mxXmlRequest.prototype.getDocumentElement = function()
Returns the document element of the response XML document.
mxDivResizer.prototype.getDocumentHeight = function()
Hook for subclassers to return the height of the document (without scrollbars).
getDocumentScrollOrigin: function(doc)
Returns the scroll origin of the given document or the current document if no document is given.
mxDivResizer.prototype.getDocumentWidth = function()
Hook for subclassers to return the width of the document (without scrollbars).
mxGraphView.prototype.getDrawPane = function()
Returns the DOM node that represents the main drawing layer.
mxDragSource.prototype.getDropTarget = function(graph,
x,
y)
Returns the drop target for the given graph and coordinates.
mxGraph.prototype.getDropTarget = function(cells,
evt,
cell)
Returns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.
mxCell.prototype.getEdgeAt = function(index)
Returns the edge at the specified index in edges.
mxGraphModel.prototype.getEdgeAt = function(cell,
index)
Returns the edge of cell at the given index.
mxConnectionHandler.prototype.getEdgeColor = function(valid)
Returns the color used to draw the preview edge.
mxCell.prototype.getEdgeCount = function()
Returns the number of edges in the edge array.
mxGraphModel.prototype.getEdgeCount = function(cell)
Returns the number of distinct edges connected to the given cell.
mxParallelEdgeLayout.prototype.getEdgeId = function(edge)
Returns a unique ID for the given edge.
mxCell.prototype.getEdgeIndex = function(edge)
Returns the index of the specified edge in edges.
mxGraph.prototype.getEdges = function(cell,
parent,
incoming,
outgoing,
includeLoops,
recurse)
Returns the incoming and/or outgoing edges for the given cell.
mxGraphModel.prototype.getEdges = function(cell,
incoming,
outgoing,
includeLoops)
Returns all distinct edges connected to this cell as a new array of mxCells.
mxHierarchicalLayout.prototype.getEdges = function(cell)
Returns the connected edges for the given cell.
mxSwimlaneLayout.prototype.getEdges = function(cell)
Returns the connected edges for the given cell.
mxGraph.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxGraphModel.prototype.getEdgesBetween = function(source,
target,
directed)
Returns all edges between the given source and target pair.
mxHierarchicalLayout.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxSwimlaneLayout.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxEditor.prototype.getEdgeStyle = function ()
Returns a string identifying the style of new edges.
mxGraphView.prototype.getEdgeStyle = function(edge,
points,
source,
target)
Returns the edge style function to be used to render the given edge state.
mxGraph.prototype.getEdgeValidationError = function(edge,
source,
target)
Returns the validation error message to be displayed when inserting or changing an edges’ connectivity.
mxConnectionHandler.prototype.getEdgeWidth = function(valid)
Returns the width used to draw the preview edge.
mxCellEditor.prototype.getEditingCell = function ()
Returns the cell that is currently being edited or null if no cell is being edited.
mxGraph.prototype.getEditingValue = function(cell,
evt)
Returns the initial value for in-place editing.
mxCellEditor.prototype.getEditorBounds = function(state)
Returns the mxRectangle that defines the bounds of the editor.
mxWindow.prototype.getElement = function()
Returuns the outermost DOM node that makes up the window.
mxCodec.prototype.getElementById = function(id,
attr)
Returns the element with the given ID from document.
mxCellEditor.prototype.getEmptyLabelText = function (cell)
Returns the initial label value to be used of the label of the given cell is empty.
mxMouseEvent.prototype.getEvent = function()
Returns evt.
mxEventSource.prototype.getEventSource = function()
Returns eventSource.
mxGraph.prototype.getExportableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxObjectCodec.prototype.getFieldName = function(attributename)
Returns the fieldname for the given attributename.
mxObjectCodec.prototype.getFieldTemplate = function(obj,
fieldname,
child)
Returns the template instance for the given field.
mxGraphSelectionModel.prototype.getFirstSelectableCell = function(cells)
Returns the first selectable cell in the given array of cells.
mxGraph.prototype.getFoldableCells = function(cells,
collapse)
Returns the cells which are movable in the given array of cells.
mxGraph.prototype.getFoldingImage = function(state)
Returns the mxImage used to display the collapsed state of the specified cell state.
mxKeyHandler.prototype.getFunction = function(evt)
Returns the function associated with the given key event or null if no function is associated with the given event.
getFunctionName: function(f)
Returns the name for the given function.
mxGraphAbstractHierarchyCell.prototype.getGeneralPurposeVariable = function(
   layer
)
Gets the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxGraphHierarchyNode.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxCell.prototype.getGeometry = function()
Returns the mxGeometry that describes the geometry.
mxGraphModel.prototype.getGeometry = function(cell)
Returns the mxGeometry of the given mxCell.
mxShape.prototype.getGradientBounds = function(c,
x,
y,
w,
h)
Returns the bounding box for the gradient box for this shape.
Returns the bounding box for the gradient box for this shape.
mxGraphLayout.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxLayoutManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSpaceManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSwimlaneManager.prototype.getGraph = function()
Returns the graph that this manager operates on.
mxGraph.prototype.getGraphBounds = function()
Returns the bounds of the visible graph.
mxGraphView.prototype.getGraphBounds = function()
Returns graphBounds.
mxDragSource.prototype.getGraphForEvent = function(evt)
Returns the graph for the given mouse event.
mxMouseEvent.prototype.getGraphX = function()
Returns graphX.
mxMouseEvent.prototype.getGraphY = function()
Returns graphY.
mxGraph.prototype.getGridSize = function()
Returns gridSize.
mxGraphHandler.prototype.getGuideStates = function()
Creates an array of cell states which should be used as guides.
mxGuide.prototype.getGuideTolerance = function()
Returns the tolerance for the guides.
mxEdgeHandler.prototype.getHandleFillColor = function(index)
Returns the fillcolor for the handle at the given index.
mxEdgeHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxVertexHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxSelectionCellsHandler.prototype.getHandler = function(cell)
Returns the handler for the given cell.
mxCellMarker.prototype.getHotspot = function()
Returns the hotspot.
mxCell.prototype.getId = function()
Returns the Id of the cell as a string.
mxCodec.prototype.getId = function(obj)
Returns the ID of the specified object.
mxGraph.prototype.getImage = function(state)
Returns the image URL for the given cell state.
mxImageBundle.prototype.getImage = function(key)
Returns the value for the given key.
mxLabel.prototype.getImageBounds = function(x,
y,
w,
h)
Generic background painting implementation.
mxSwimlane.prototype.getImageBounds = function(x,
y,
w,
h)
Paints the swimlane vertex shape.
mxConstraintHandler.prototype.getImageForConstraint = function(state,
constraint,
point)
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getImageFromBundles = function(key)
Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
mxGraph.prototype.getImportableCells = function(cells)
Returns the cells which may be imported in the given array of cells.
mxGraph.prototype.getIncomingEdges = function(cell,
parent)
Returns the visible incoming edges for the given cell.
mxGraphModel.prototype.getIncomingEdges = function(cell)
Returns the incoming edges of the given cell without loops.
mxCell.prototype.getIndex = function(child)
Returns the index of the specified child in the child array.
mxLabel.prototype.getIndicatorBounds = function(x,
y,
w,
h)
Generic background painting implementation.
mxGraph.prototype.getIndicatorColor = function(state)
Returns the indicator color for the given cell state.
mxGraph.prototype.getIndicatorGradientColor = function(state)
Returns the indicator gradient color for the given cell state.
mxGraph.prototype.getIndicatorImage = function(state)
Returns the indicator image for the given cell state.
mxGraph.prototype.getIndicatorShape = function(state)
Returns the indicator shape for the given cell state.
mxGraphHandler.prototype.getInitialCellForEvent = function(me)
Hook to return initial cell for the given event.
mxCellEditor.prototype.getInitialValue = function(state,
trigger)
Gets the initial editing value for the given cell.
getInnerHtml: function()
Returns the inner HTML for the given node as a string or an empty string if no node was specified.
mxDictionary.prototype.getKeys = function()
Returns all keys as an array.
mxGraph.prototype.getLabel = function(cell)
Returns a string or DOM node that represents the label for the given cell.
mxCellRenderer.prototype.getLabelBounds = function(state)
Returns the bounds to be used to draw the label of the given state.
mxShape.prototype.getLabelBounds = function(rect)
Returns the mxRectangle for the label bounds of this shape, based on the given scaled and translated bounds of the shape.
mxCellRenderer.prototype.getLabelValue = function(state)
Returns the value to be used for the label.
mxLayoutManager.prototype.getLayout = function(parent)
Returns the layout to be executed for the given graph and parent.
getMainEvent: function(e)
Returns the touch or mouse event that contains the mouse coordinates.
Returns the spacing as an mxPoint.
mxCellMarker.prototype.getMarkedState = function()
Returns the markedState.
mxCellMarker.prototype.getMarkerColor = function(evt,
state,
isValid)
Returns the valid- or invalidColor depending on the value of isValid.
mxGraph.prototype.getMaximumGraphBounds = function()
Returns the bounds inside which the diagram should be kept as an mxRectangle.
mxCellEditor.prototype.getMinimumSize = function(state)
Returns the minimum width and height for editing the given state.
mxWindow.prototype.getMinimumSize = function()
Returns an mxRectangle that specifies the size for the minimized window.
mxGraph.prototype.getModel = function()
Returns the mxGraphModel that contains the cells.
mxHierarchicalLayout.prototype.getModel = function()
Returns the internal mxGraphHierarchyModel for this layout algorithm.
mxSwimlaneLayout.prototype.getModel = function()
Returns the internal mxSwimlaneModel for this layout algorithm.
mxGraph.prototype.getMovableCells = function(cells)
Returns the cells which are movable in the given array of cells.
mxEventObject.prototype.getName = function()
Returns name.
mxObjectCodec.prototype.getName = function()
Returns the name used for the nodenames and lookup of the codec when classes are encoded and nodes are decoded.
getName: function(value)
Returns the name for the given value.
mxGraphModel.prototype.getNearestCommonAncestor = function(cell1,
cell2)
Returns the nearest common ancestor for the specified cells.
mxGraphAbstractHierarchyCell.prototype.getNextLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyEdge.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyNode.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphView.prototype.getNextPoint = function(edge,
opposite,
source)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
getNumber: function(array,
key,
defaultValue)
Returns the numeric value for the given key in the given associative array or the given default value (or 0) if the value is null.
mxCodec.prototype.getObject = function(id)
Returns the decoded object for the element with the specified ID in document.
getOffset: function(container,
scrollOffset)
Returns the offset for the specified container as an mxPoint.
mxGraph.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all distinct visible opposite cells for the specified terminal on the given edges.
mxGraphModel.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all opposite vertices wrt terminal for the given edges, only returning sources and/or targets as specified.
mxGraphModel.prototype.getOrigin = function(cell)
Returns the absolute, accumulated origin for the children inside the given parent as an mxPoint.
mxMorphing.prototype.getOriginForCell = function(cell)
Returns the top, left corner of the given cell.
getOuterHtml: function()
Returns the outer HTML for the given node as a string or an empty string if no node was specified.
mxGraph.prototype.getOutgoingEdges = function(cell,
parent)
Returns the visible outgoing edges for the given cell.
mxGraphModel.prototype.getOutgoingEdges = function(cell)
Returns the outgoing edges of the given cell without loops.
mxOutline.prototype.getOutlineOffset = function(scale)
Returns the offset for drawing the outline graph.
mxGraph.prototype.getOverlap = function(cell)
Returns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.
mxGraphView.prototype.getOverlayPane = function()
Returns the DOM node that represents the topmost drawing layer.
mxCell.prototype.getParent = function()
Returns the cell’s parent.
mxGraphModel.prototype.getParent = function(cell)
Returns the parent of the given cell.
mxGraphLayout.prototype.getParentOffset = function(parent)
Determines the offset of the given parent to the parent of the layout
getParentPath: function(path)
Returns the path for the parent of the cell represented by the given path.
mxGraphModel.prototype.getParents = function(cells)
Returns an array that represents the set (no duplicates) of all parents for the given array of cells.
mxStackLayout.prototype.getParentSize = function(parent)
Returns the size for the parent container or the size of the graph container if the parent is a layer or the root of the model.
mxCellState.prototype.getPerimeterBounds = function (border,
bounds)
Returns the mxRectangle that should be used as the perimeter of the cell.
mxGraphView.prototype.getPerimeterBounds = function(terminal,
border)
Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
mxGraphView.prototype.getPerimeterFunction = function(state)
Returns the perimeter function for the given state.
mxGraphView.prototype.getPerimeterPoint = function(terminal,
next,
orthogonal,
border)
Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
mxGraphView.prototype.getPoint = function(state,
geometry)
Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
mxRectangle.prototype.getPoint = function()
Returns the top, left corner as a new mxPoint.
mxEdgeHandler.prototype.getPointForEvent = function(me)
Returns the point for the given event.
mxGraph.prototype.getPointForEvent = function(evt,
addOffset)
Returns an mxPoint representing the given event in the unscaled, non-translated coordinate space of container and applies the grid.
mxGraph.prototype.getPreferredPageSize = function(bounds,
width,
height)
Returns the preferred size of the background page if preferPageSize is true.
mxGraph.prototype.getPreferredSizeForCell = function(cell)
Returns the preferred width and height of the given mxCell as an mxRectangle.
Returns a pretty printed string that represents the XML tree for the given node.
mxGraphHandler.prototype.getPreviewBounds = function(cells)
Returns the mxRectangle used as the preview bounds for moving the given cells.
mxEdgeSegmentHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewTerminalState = function(me)
Updates the given preview state taking into account the state of the constraint handler.
mxGraphAbstractHierarchyCell.prototype.getPreviousLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyEdge.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyNode.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxEventObject.prototype.getProperties = function()
Returns properties.
mxEventObject.prototype.getProperty = function(key)
Returns the property for the given key.
mxCircleLayout.prototype.getRadius = function(count,
max)
Returns the radius to be used for the given vertex count.
mxGraphHierarchyNode.prototype.getRankValue = function(layer)
Returns the integer value of the layer that this node resides in
mxGraphView.prototype.getRelativePoint = function(edgeState,
x,
y)
Gets the relative point that describes the given, absolute label position for the given edge state.
mxGraph.prototype.getRemovedCellsForChanges = function(changes)
Returns the cells that have been removed from the model.
mxGraphModel.prototype.getRoot = function(cell)
Returns the root of the model or the topmost parent of the given cell.
mxPrintPreview.prototype.getRoot = function()
Returns the root cell for painting the graph.
mxEditor.prototype.getRootTitle = function ()
Returns the string value of the root cell in mxGraph.model.
getRotatedPoint: function(pt,
cos,
sin,
c)
Rotates the given point by the given cos and sin.
mxPolyline.prototype.getRotation = function()
Returns 0.
mxShape.prototype.getRotation = function()
Returns the rotation from the style.
mxGraphView.prototype.getRoutingCenterX = function (state)
Returns the x-coordinate of the center point for automatic routing.
mxGraphView.prototype.getRoutingCenterY = function (state)
Returns the y-coordinate of the center point for automatic routing.
mxGraphView.prototype.getScale = function()
Returns the scale.
getScaleForPageCount: function(pageCount,
graph,
pageFormat,
border)
Returns the scale to be used for printing the graph with the given bounds across the specifies number of pages with the given format.
getScrollOrigin: function(node)
Returns the top, left corner of the viewrect as an mxPoint.
mxVertexHandler.prototype.getSelectionBounds = function(state)
Returns the mxRectangle that defines the bounds of the selection border.
mxGraph.prototype.getSelectionCell = function()
Returns the first cell from the array of selected mxCells.
mxGraph.prototype.getSelectionCells = function()
Returns the array of selected mxCells.
mxGraph.prototype.getSelectionCellsForChanges = function(changes)
Returns the cells to be selected for the given array of changes.
mxEdgeHandler.prototype.getSelectionColor = function()
Returns mxConstants.EDGE_SELECTION_COLOR.
mxVertexHandler.prototype.getSelectionColor = function()
Returns mxConstants.VERTEX_SELECTION_COLOR.
mxGraph.prototype.getSelectionCount = function()
Returns the number of selected cells.
mxGraph.prototype.getSelectionModel = function()
Returns the mxGraphSelectionModel that contains the selection.
mxEdgeHandler.prototype.getSelectionPoints = function(state)
Returns the list of points that defines the selection stroke.
mxEdgeHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.EDGE_SELECTION_STROKEWIDTH.
mxVertexHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.VERTEX_SELECTION_STROKEWIDTH.
mxCellRenderer.prototype.getShape = function(name)
Returns the shape for the given name from defaultShapes.
mxCellRenderer.prototype.getShapeConstructor = function(state)
Returns the constructor to be used for creating the shape.
mxPolyline.prototype.getShapeRotation = function()
Returns 0.
mxShape.prototype.getShapeRotation = function()
Returns the actual rotation of the shape.
mxText.prototype.getShapeRotation = function()
Returns 0 to avoid using rotation in the canvas via updateTransform.
mxCellRenderer.prototype.getShapesForState = function(state)
Returns the mxShapes for the given cell state in the order in which they should appear in the DOM.
getSizeForString: function(text,
fontSize,
fontFamily,
textWidth)
Returns an mxRectangle with the size (width and height in pixels) of the given string.
mxEdgeHandler.prototype.getSnapToTerminalTolerance = function()
Returns the tolerance for the guides.
getSource: function(evt)
Returns the event’s target or srcElement depending on the browser.
mxMouseEvent.prototype.getSource = function()
Returns the target DOM element using mxEvent.getSource for evt.
mxOutline.prototype.getSourceContainerSize = function()
Returns the size of the source container.
mxConnectionHandler.prototype.getSourcePerimeterPoint = function(state,
next,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxText.prototype.getSpacing = function()
Returns the spacing as an mxPoint.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxGraph.prototype.getStartSize = function(swimlane)
Returns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.
mxCellMarker.prototype.getState = function(me)
Uses getCell, getStateToMark and intersects to return the mxCellState for the given mxMouseEvent.
mxGraphView.prototype.getState = function(cell,
create)
Returns the mxCellState for the given cell.
mxMouseEvent.prototype.getState = function()
Returns state.
Returns the state for the given touch event.
mxGraphView.prototype.getStates = function()
Returns states.
mxCellMarker.prototype.getStateToMark = function(state)
Returns the mxCellState to be marked for the given mxCellState under the mouse.
mxXmlRequest.prototype.getStatus = function()
Returns the status as a number, eg.
getStencil: function(name)
Returns the mxStencil for the given name.
codec.getStringValue = function(key,
value)
Returns the string for encoding the given value.
mxCell.prototype.getStyle = function()
Returns a string that describes the style.
mxGraphModel.prototype.getStyle = function(cell)
Returns the style of the given mxCell.
getStylename: function(style)
Returns the stylename in a style of the form [(stylename|key=value);] or an empty string if the given style does not contain a stylename.
getStylenames: function(style)
Returns the stylenames in a style of the form [(stylename|key=value);] or an empty array if the given style does not contain any stylenames.
mxGraph.prototype.getStylesheet = function()
Returns the mxStylesheet that defines the style.
mxSvgCanvas2D.prototype.getSvgGradient = function(start,
end,
alpha1,
alpha2,
direction)
Private helper function to create SVG elements
mxImageShape.prototype.getSvgScreenOffset = function()
Disables offset in IE9 for crisper image output.
mxShape.prototype.getSvgScreenOffset = function()
Returns 0, or 0.5 if strokewidth % 2 == 1.
mxText.prototype.getSvgScreenOffset = function()
Disables offset in IE9 for crisper image output.
mxGraph.prototype.getSwimlane = function(cell)
Returns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.
mxGraph.prototype.getSwimlaneAt = function (x,
y,
parent)
Returns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
mxForm.prototype.getTable = function()
Returns the table that contains this form.
mxConnectionHandler.prototype.getTargetPerimeterPoint = function(state,
me)
Returns the perimeter point for the given target state.
mxEditor.prototype.getTemplate = function (name)
Returns the template for the given name.
mxCell.prototype.getTerminal = function(source)
Returns the source or target terminal.
mxGraphModel.prototype.getTerminal = function(edge,
isSource)
Returns the source or target mxCell of the given edge depending on the value of the boolean parameter.
mxGraph.prototype.getTerminalForPort = function(cell,
source)
Returns the terminal to be used for a given port.
mxGeometry.prototype.getTerminalPoint = function(isSource)
Returns the mxPoint representing the source or target point of this edge.
mxGraphView.prototype.getTerminalPort = function(state,
terminal,
source)
Returns an mxCellState that represents the source or target terminal or port for the given edge.
mxXmlRequest.prototype.getText = function()
Returns the response as a string.
getTextContent: function(node)
Returns the text content of the specified node.
mxShape.prototype.getTextRotation = function()
Returns the rotation for the text label.
mxText.prototype.getTextRotation = function()
Returns the rotation for the text label of the corresponding shape.
mxCellRenderer.prototype.getTextScale = function(state)
Returns the scaling used for the label of the given state
mxEditor.prototype.getTitle = function ()
Returns the string value for the current root of the diagram.
mxConstraintHandler.prototype.getTolerance = function()
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getTolerance = function()
Returns tolerance.
mxGraph.prototype.getTooltip = function(state,
node,
x,
y)
Returns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.
mxGraph.prototype.getTooltipForCell = function(cell)
Returns the string or DOM node to be used as the tooltip for the given cell.
mxElbowEdgeHandler.prototype.getTooltipForNode = function(node)
Returns the tooltip for the given node.
mxGraphModel.prototype.getTopmostCells = function(cells)
Returns the topmost cells of the hierarchy in an array that contains no descendants for each mxCell that it contains.
mxGraphView.prototype.getTranslate = function()
Returns the translate.
mxOutline.prototype.getTranslateForEvent = function(me)
Gets the translate for the given mouse event.
mxGraph.prototype.getTranslateForRoot = function(cell)
Returns the translation to be used if the given cell is the root cell as an mxPoint.
mxEditor.prototype.getUrlImage = function ()
Returns the URL to create the image with.
mxEditor.prototype.getUrlPost = function ()
Returns the URL to post the diagram to.
mxCellMarker.prototype.getValidState = function()
Returns the validState.
mxCell.prototype.getValue = function()
Returns the user object of the cell.
mxGraphModel.prototype.getValue = function(cell)
Returns the user object of the given mxCell using mxCell.getValue.
getValue: function(name)
Returns the value associated with the given name.
getValue: function(array,
key,
defaultValue)
Returns the value for the given key in the given associative array or the given default value if the value is null.
mxDictionary.prototype.getValues = function()
Returns all values as an array.
mxGraphLayout.prototype.getVertexBounds = function(cell)
Returns an mxRectangle that defines the bounds of the given cell or the bounding box if useBoundingBox is true.
mxGraph.prototype.getVerticalAlign = function(state)
Returns the vertical alignment for the given cell state.
mxGraph.prototype.getView = function()
Returns the mxGraphView that contains the mxCellStates.
getViewXml: function(graph,
scale,
cells,
x0,
y0)
mxCellState.prototype.getVisibleTerminal = function (source)
Returns the visible source or target terminal cell.
mxGraphView.prototype.getVisibleTerminal = function(edge,
source)
Returns the nearest ancestor terminal that is visible.
mxHierarchicalLayout.prototype.getVisibleTerminal = function(edge,
source)
Helper function to return visible terminal for edge allowing for ports
mxSwimlaneLayout.prototype.getVisibleTerminal = function(edge,
source)
Helper function to return visible terminal for edge allowing for ports
mxCellState.prototype.getVisibleTerminalState = function (source)
Returns the visible source or target terminal state.
Returns a VML dash pattern for the current dashPattern.
mxPrintPreview.prototype.getWindow = function()
Returns wnd.
mxGraphAbstractHierarchyCell.prototype.getX = function(layer)
Gets the value of x on the specified layer
mxMouseEvent.prototype.getX = function()
Returns evt.clientX.
mxWindow.prototype.getX = function()
Returns the current position on the x-axis.
getXml: function(node,
linefeed)
Returns the XML content of the specified node.
mxXmlRequest.prototype.getXml = function()
Returns the response as an XML document.
mxMouseEvent.prototype.getY = function()
Returns evt.clientY.
mxWindow.prototype.getY = function()
Returns the current position on the y-axis.
mxDragSource.prototype.graphContainsEvent = function(graph,
evt)
Returns true if the given graph contains the given event.
mxAutoSaveManager.prototype.graphModelChanged = function(changes)
Invoked when the graph model has changed.
mxGraph.prototype.graphModelChanged = function(changes)
Called when the graph model changes.
Renderhint to be used for the outline graph.
mxEditor.prototype.groupCells = function ()
Invokes createGroup to create a new group cell and the invokes mxGraph.groupCells, using the grid size of the graph as the spacing in the group’s content area.
mxGraph.prototype.groupCells = function(group,
border,
cells)
Adds the cells into the given group.
mxRectangle.prototype.grow = function(amount)
Grows the rectangle by the given amount, that is, this method subtracts the given amount from the x- and y-coordinates and adds twice the amount to the width and height.
diff --git a/docs/js-api/index/Functions8.html b/docs/js-api/index/Functions8.html index b320c1651..a4f48a591 100644 --- a/docs/js-api/index/Functions8.html +++ b/docs/js-api/index/Functions8.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
H
 handlingResize, mxDivResizer
 hasScrollbars, mxUtils
 hasValidState, mxCellMarker
 hide
 hideMenu, mxPopupMenu
 hideProperties, mxEditor
 hideSizers, mxVertexHandler
 hideSubmenu, mxPopupMenu
 hideTooltip, mxTooltipHandler
 hitsSwimlaneContent, mxGraph
 home, mxGraph
 horizontalLayout, mxCompactTreeLayout
 htmlEntities, mxUtils
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
H
 handlingResize, mxDivResizer
 hasScrollbars, mxUtils
 hasValidState, mxCellMarker
 hide
 hideMenu, mxPopupMenu
 hideProperties, mxEditor
 hideSizers, mxVertexHandler
 hideSubmenu, mxPopupMenu
 hideTooltip, mxTooltipHandler
 hitsSwimlaneContent, mxGraph
 home, mxGraph
 horizontalLayout, mxCompactTreeLayout
 htmlEntities, mxUtils
-
Boolean specifying if the width should be updated.
hasScrollbars: function(node)
Returns true if the overflow CSS property of the given node is either scroll or auto.
mxCellMarker.prototype.hasValidState = function()
Returns true if validState is not null.
mxCellHighlight.prototype.hide = function()
Resets the state of the cell marker.
mxGuide.prototype.hide = function()
Hides all current guides.
mxTooltipHandler.prototype.hide = function()
Hides the tooltip and resets the timer.
mxWindow.prototype.hide = function()
Hides the window.
mxPopupMenu.prototype.hideMenu = function()
Removes the menu and all submenus.
mxEditor.prototype.hideProperties = function ()
Hides the properties dialog.
mxVertexHandler.prototype.hideSizers = function()
Hides all sizers except.
mxPopupMenu.prototype.hideSubmenu = function(parent)
Removes all submenus inside the given parent.
mxTooltipHandler.prototype.hideTooltip = function()
Hides the tooltip.
mxGraph.prototype.hitsSwimlaneContent = function(swimlane,
x,
y)
Returns true if the given coordinate pair is inside the content are of the given swimlane.
mxGraph.prototype.home = function()
Uses the root of the model as the root of the displayed cell hierarchy and selects the previous root.
mxCompactTreeLayout.prototype.horizontalLayout = function(node,
x0,
y0,
bounds)
htmlEntities: function(s,
newline)
Replaces characters (less than, greater than, newlines and quotes) with their HTML entities in the given string and returns the result.
+
Boolean specifying if the width should be updated.
hasScrollbars: function(node)
Returns true if the overflow CSS property of the given node is either scroll or auto.
mxCellMarker.prototype.hasValidState = function()
Returns true if validState is not null.
mxCellHighlight.prototype.hide = function()
Resets the state of the cell marker.
mxGuide.prototype.hide = function()
Hides all current guides.
mxTooltipHandler.prototype.hide = function()
Hides the tooltip and resets the timer.
mxWindow.prototype.hide = function()
Hides the window.
mxPopupMenu.prototype.hideMenu = function()
Removes the menu and all submenus.
mxEditor.prototype.hideProperties = function ()
Hides the properties dialog.
mxVertexHandler.prototype.hideSizers = function()
Hides all sizers except.
mxPopupMenu.prototype.hideSubmenu = function(parent)
Removes all submenus inside the given parent.
mxTooltipHandler.prototype.hideTooltip = function()
Hides the tooltip.
mxGraph.prototype.hitsSwimlaneContent = function(swimlane,
x,
y)
Returns true if the given coordinate pair is inside the content are of the given swimlane.
mxGraph.prototype.home = function()
Uses the root of the model as the root of the displayed cell hierarchy and selects the previous root.
mxCompactTreeLayout.prototype.horizontalLayout = function(node,
x0,
y0,
bounds)
htmlEntities: function(s,
newline)
Replaces characters (less than, greater than, newlines and quotes) with their HTML entities in the given string and returns the result.
diff --git a/docs/js-api/index/Functions9.html b/docs/js-api/index/Functions9.html index 19c0596bf..60ba83054 100644 --- a/docs/js-api/index/Functions9.html +++ b/docs/js-api/index/Functions9.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
I
 image
 importCells, mxGraph
 include, mxClient
 indexOf, mxUtils
 indexOfStylename, mxUtils
 info, mxLog
 init
 initBend, mxEdgeHandler
 initControl, mxCellRenderer
 initialCoords, mxCoordinateAssignment
 initializeLabel, mxCellRenderer
 initializeOverlay, mxCellRenderer
 initializeShape, mxCellRenderer
 initialRank
 insert
 insertEdge
 insertIntoGraph, mxCodec
 insertShapesAfter, mxCellRenderer
 insertVertex, mxGraph
 installChangeHandler, mxEditor
 installCloseHandler, mxWindow
 installDblClickHandler, mxEditor
 installDrillHandler, mxEditor
 installDropHandler, mxDefaultToolbar
 installInsertHandler, mxEditor
 installListeners
 installMaximizeHandler, mxWindow
 installMinimizeHandler, mxWindow
 installMoveHandler, mxWindow
 installOverlayListeners, mxCellRenderer
 installUndoHandler, mxEditor
 intersection, mxUtils
 intersects
 invalidate, mxGraphView
 invert, mxGraphHierarchyEdge
 isAddEnabled, mxSwimlaneManager
 isAddPointEvent, mxEdgeHandler
 isAllowDanglingEdges, mxGraph
 isAllowEval, mxGraphView
 isAllowLoops, mxGraph
 isAllowOverlapParent, mxGraph
 isAltDown, mxEvent
 isAncestor
 isAncestorNode, mxUtils
 isAutoSizeCell, mxGraph
 isAutoSizeCells, mxGraph
 isBinary, mxXmlRequest
 isBooleanAttribute, mxObjectCodec
 isBrowserSupported, mxClient
 isBubbling, mxLayoutManager
 isBundleSupported, mxResources
 isCellBendable, mxGraph
 isCellCloneable, mxGraph
 isCellCodec
 isCellCollapsed, mxGraph
 isCellConnectable, mxGraph
 isCellDeletable, mxGraph
 isCellDisconnectable, mxGraph
 isCellEditable, mxGraph
 isCellFoldable, mxGraph
 isCellHorizontal, mxSwimlaneManager
 isCellIgnored, mxSpaceManager
 isCellLocked, mxGraph
 isCellMovable, mxGraph
 isCellResizable, mxGraph
 isCellRotatable, mxGraph
 isCellsBendable, mxGraph
 isCellsCloneable, mxGraph
 isCellsDeletable, mxGraph
 isCellsDisconnectable, mxGraph
 isCellsEditable, mxGraph
 isCellSelectable, mxGraph
 isCellSelected, mxGraph
 isCellShiftable, mxSpaceManager
 isCellsLocked, mxGraph
 isCellsMovable, mxGraph
 isCellsResizable, mxGraph
 isCellsSelectable, mxGraph
 isCellVisible, mxGraph
 isCloneEnabled, mxGraphHandler
 isCloneEvent, mxGraph
 isCloneInvalidEdges, mxGraph
 isCollapsed
 isConnectable
 isConnectableCell
 isConnectableEdges, mxGraph
 isConnecting, mxConnectionHandler
 isConstrainChild, mxGraph
 isConstrainChildren, mxGraph
 isConstrainChildrenOnResize, mxGraph
 isConstrainedEvent
 isConsumed
 isContainerEvent, mxGraphView
 isControlDown
 isCreateIds, mxGraphModel
 isCreateTarget, mxConnectionHandler
 isDelayedSelection, mxGraphHandler
 isDisconnectOnMove, mxGraph
 isDropEnabled, mxGraph
 isEdge
 isEdgeIgnored, mxGraphLayout
 isEdgeLabelsMovable, mxGraph
 isEdgeValid, mxGraph
 isEditing, mxGraph
 isEmpty
 isEnabled
 isEnabledForEvent, mxGuide
 isEnterStopsCellEditing, mxGraph
 isEscapeEnabled, mxGraph
 isEventIgnored
 isEventsEnabled, mxEventSource
 isEventSource, mxCellEditor
 isEventSourceIgnored, mxGraph
 isExcluded
 isExtendParent, mxGraph
 isExtendParents
 isExtendParentsOnAdd, mxGraph
 isForcePanningEvent, mxPanningHandler
 isForceRubberbandEvent, mxRubberband
 isGraphEvent, mxKeyHandler
 isGridEnabled
 isGridEnabledEvent, mxGraph
 isGuidesEnabled, mxDragSource
 isHandleEnabled, mxEdgeHandler
 isHandleVisible, mxEdgeHandler
 isHideLabel, mxCellEditor
 isHideOnHover, mxTooltipHandler
 isHorizontal
 isHotspotEnabled, mxCellMarker
 isHtmlAllowed
 isHtmlLabel, mxGraph
 isHtmlLabels, mxGraph
 isImmediateConnectSource, mxConnectionHandler
 isInvokesStopCellEditing, mxGraph
 isLabelClipped, mxGraph
 isLabelEvent, mxCellRenderer
 isLabelMovable, mxGraph
 isLayer, mxGraphModel
 isLeftMouseButton, mxEvent
 isLivePreviewBorder, mxVertexHandler
 isLoop, mxGraph
 isMenuShowing, mxPopupMenu
 isMetaDown, mxEvent
 isModified
 isMouseEvent, mxEvent
 isMoveEnabled, mxGraphHandler
 isMoveIconToFrontForState, mxConnectionHandler
 isMultigraph, mxGraph
 isNaN, mxUtils
 isNode, mxUtils
 isNumeric, mxUtils
 isNumericAttribute, mxObjectCodec
 isOrthogonal, mxGraph
 isPaintBoundsInverted
 isPanningEnabled, mxPanningHandler
 isPanningTrigger, mxPanningHandler
 isParseVml
 isPopupTrigger
 isPort
 isPortsEnabled, mxGraph
 isPropertiesVisible, mxEditor
 isReady, mxXmlRequest
 isRecursiveResize, mxGraph
 isReference
 isRelativeUrl, mxUrlConverter
 isRemoveCellsFromParent, mxGraphHandler
 isRemovePointEvent, mxEdgeHandler
 isRendering, mxGraphView
 isResizable, mxWindow
 isResizeContainer, mxGraph
 isResizeEnabled, mxSwimlaneManager
 isRightMouseButton, mxEvent
 isRoot, mxGraphModel
 isScrollEvent, mxGraphView
 isSelected, mxGraphSelectionModel
 isSelectEnabled, mxGraphHandler
 isSelectionDashed
 isSelectionEmpty, mxGraph
 isSelectOnPopup, mxPanningHandler
 isShapeEvent, mxCellRenderer
 isShiftDown, mxEvent
 isShiftDownwards, mxSpaceManager
 isShiftRightwards, mxSpaceManager
 isSignificant, mxUndoableEdit
 isSingleSelection, mxGraphSelectionModel
 isSizerVisible, mxVertexHandler
 isSource, mxMouseEvent
 isSplitEnabled, mxGraph
 isSplitTarget, mxGraph
 isStartEvent, mxConnectionHandler
 isStateIgnored, mxConstraintHandler
 isStopEvent, mxConnectionHandler
 isSwimlane, mxGraph
 isSwimlaneIgnored, mxSwimlaneManager
 isSwimlaneNesting, mxGraph
 isSwimlaneSelectionEnabled, mxGraph
 isSyntheticEventIgnored, mxGraph
 isTerminalPointMovable, mxGraph
 isToggleEvent, mxGraph
 isTouchEvent, mxEvent
 isValidAncestor, mxGraph
 isValidConnection, mxGraph
 isValidDropTarget, mxGraph
 isValidResponse, mxSession
 isValidRoot, mxGraph
 isValidSource
 isValidState, mxCellMarker
 isValidTarget
 isVertex
 isVertexIgnored
 isVertexLabelsMovable, mxGraph
 isVertexMovable, mxGraphLayout
 isVisible
 isVml, mxUtils
 isWrapping, mxGraph
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
I
 image
 importCells, mxGraph
 include, mxClient
 indexOf, mxUtils
 indexOfStylename, mxUtils
 info, mxLog
 init
 initBend, mxEdgeHandler
 initControl, mxCellRenderer
 initialCoords, mxCoordinateAssignment
 initializeLabel, mxCellRenderer
 initializeOverlay, mxCellRenderer
 initializeShape, mxCellRenderer
 initialRank
 insert
 insertEdge
 insertIntoGraph, mxCodec
 insertShapesAfter, mxCellRenderer
 insertVertex, mxGraph
 installChangeHandler, mxEditor
 installCloseHandler, mxWindow
 installDblClickHandler, mxEditor
 installDrillHandler, mxEditor
 installDropHandler, mxDefaultToolbar
 installInsertHandler, mxEditor
 installListeners
 installMaximizeHandler, mxWindow
 installMinimizeHandler, mxWindow
 installMoveHandler, mxWindow
 installOverlayListeners, mxCellRenderer
 installUndoHandler, mxEditor
 intersection, mxUtils
 intersects
 invalidate, mxGraphView
 invert, mxGraphHierarchyEdge
 isAddEnabled, mxSwimlaneManager
 isAddPointEvent, mxEdgeHandler
 isAllowDanglingEdges, mxGraph
 isAllowEval, mxGraphView
 isAllowLoops, mxGraph
 isAllowOverlapParent, mxGraph
 isAltDown, mxEvent
 isAncestor
 isAncestorNode, mxUtils
 isAutoSizeCell, mxGraph
 isAutoSizeCells, mxGraph
 isBinary, mxXmlRequest
 isBooleanAttribute, mxObjectCodec
 isBrowserSupported, mxClient
 isBubbling, mxLayoutManager
 isBundleSupported, mxResources
 isCellBendable, mxGraph
 isCellCloneable, mxGraph
 isCellCodec
 isCellCollapsed, mxGraph
 isCellConnectable, mxGraph
 isCellDeletable, mxGraph
 isCellDisconnectable, mxGraph
 isCellEditable, mxGraph
 isCellFoldable, mxGraph
 isCellHorizontal, mxSwimlaneManager
 isCellIgnored, mxSpaceManager
 isCellLocked, mxGraph
 isCellMovable, mxGraph
 isCellResizable, mxGraph
 isCellRotatable, mxGraph
 isCellsBendable, mxGraph
 isCellsCloneable, mxGraph
 isCellsDeletable, mxGraph
 isCellsDisconnectable, mxGraph
 isCellsEditable, mxGraph
 isCellSelectable, mxGraph
 isCellSelected, mxGraph
 isCellShiftable, mxSpaceManager
 isCellsLocked, mxGraph
 isCellsMovable, mxGraph
 isCellsResizable, mxGraph
 isCellsSelectable, mxGraph
 isCellVisible, mxGraph
 isCloneEnabled, mxGraphHandler
 isCloneEvent, mxGraph
 isCloneInvalidEdges, mxGraph
 isCollapsed
 isConnectable
 isConnectableCell
 isConnectableEdges, mxGraph
 isConnecting, mxConnectionHandler
 isConstrainChild, mxGraph
 isConstrainChildren, mxGraph
 isConstrainChildrenOnResize, mxGraph
 isConstrainedEvent
 isConsumed
 isContainerEvent, mxGraphView
 isControlDown
 isCreateIds, mxGraphModel
 isCreateTarget, mxConnectionHandler
 isDelayedSelection, mxGraphHandler
 isDisconnectOnMove, mxGraph
 isDropEnabled, mxGraph
 isEdge
 isEdgeIgnored, mxGraphLayout
 isEdgeLabelsMovable, mxGraph
 isEdgeValid, mxGraph
 isEditing, mxGraph
 isEmpty
 isEnabled
 isEnabledForEvent, mxGuide
 isEnterStopsCellEditing, mxGraph
 isEscapeEnabled, mxGraph
 isEventIgnored
 isEventsEnabled, mxEventSource
 isEventSource, mxCellEditor
 isEventSourceIgnored, mxGraph
 isExcluded
 isExtendParent, mxGraph
 isExtendParents
 isExtendParentsOnAdd, mxGraph
 isForcePanningEvent, mxPanningHandler
 isForceRubberbandEvent, mxRubberband
 isGraphEvent, mxKeyHandler
 isGridEnabled
 isGridEnabledEvent, mxGraph
 isGuidesEnabled, mxDragSource
 isHandleEnabled, mxEdgeHandler
 isHandleVisible, mxEdgeHandler
 isHideLabel, mxCellEditor
 isHideOnHover, mxTooltipHandler
 isHorizontal
 isHotspotEnabled, mxCellMarker
 isHtmlAllowed
 isHtmlLabel, mxGraph
 isHtmlLabels, mxGraph
 isImmediateConnectSource, mxConnectionHandler
 isInvokesStopCellEditing, mxGraph
 isLabelClipped, mxGraph
 isLabelEvent, mxCellRenderer
 isLabelMovable, mxGraph
 isLayer, mxGraphModel
 isLeftMouseButton, mxEvent
 isLivePreviewBorder, mxVertexHandler
 isLoop, mxGraph
 isMenuShowing, mxPopupMenu
 isMetaDown, mxEvent
 isModified
 isMouseEvent, mxEvent
 isMoveEnabled, mxGraphHandler
 isMoveIconToFrontForState, mxConnectionHandler
 isMultigraph, mxGraph
 isNaN, mxUtils
 isNode, mxUtils
 isNumeric, mxUtils
 isNumericAttribute, mxObjectCodec
 isOrthogonal, mxGraph
 isPaintBoundsInverted
 isPanningEnabled, mxPanningHandler
 isPanningTrigger, mxPanningHandler
 isParseVml
 isPopupTrigger
 isPort
 isPortsEnabled, mxGraph
 isPropertiesVisible, mxEditor
 isReady, mxXmlRequest
 isRecursiveResize, mxGraph
 isReference
 isRelativeUrl, mxUrlConverter
 isRemoveCellsFromParent, mxGraphHandler
 isRemovePointEvent, mxEdgeHandler
 isRendering, mxGraphView
 isResizable, mxWindow
 isResizeContainer, mxGraph
 isResizeEnabled, mxSwimlaneManager
 isRightMouseButton, mxEvent
 isRoot, mxGraphModel
 isScrollEvent, mxGraphView
 isSelected, mxGraphSelectionModel
 isSelectEnabled, mxGraphHandler
 isSelectionDashed
 isSelectionEmpty, mxGraph
 isSelectOnPopup, mxPanningHandler
 isShapeEvent, mxCellRenderer
 isShiftDown, mxEvent
 isShiftDownwards, mxSpaceManager
 isShiftRightwards, mxSpaceManager
 isSignificant, mxUndoableEdit
 isSingleSelection, mxGraphSelectionModel
 isSizerVisible, mxVertexHandler
 isSource, mxMouseEvent
 isSplitEnabled, mxGraph
 isSplitTarget, mxGraph
 isStartEvent, mxConnectionHandler
 isStateIgnored, mxConstraintHandler
 isStopEvent, mxConnectionHandler
 isSwimlane, mxGraph
 isSwimlaneIgnored, mxSwimlaneManager
 isSwimlaneNesting, mxGraph
 isSwimlaneSelectionEnabled, mxGraph
 isSyntheticEventIgnored, mxGraph
 isTerminalPointMovable, mxGraph
 isToggleEvent, mxGraph
 isTouchEvent, mxEvent
 isValidAncestor, mxGraph
 isValidConnection, mxGraph
 isValidDropTarget, mxGraph
 isValidResponse, mxSession
 isValidRoot, mxGraph
 isValidSource
 isValidState, mxCellMarker
 isValidTarget
 isVertex
 isVertexIgnored
 isVertexLabelsMovable, mxGraph
 isVertexMovable, mxGraphLayout
 isVisible
 isVml, mxUtils
 isWrapping, mxGraph
-
mxSvgCanvas2D.prototype.image = function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.image = function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
mxXmlCanvas2D.prototype.image = function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
mxGraph.prototype.importCells = function(cells,
dx,
dy,
target,
evt)
Clones and inserts the given cells into the graph using the move method and returns the inserted cells.
include: function(src)
Dynamically adds a script node to the document header.
indexOf: function(array,
obj)
Returns the index of obj in array or -1 if the array does not contains the given object.
indexOfStylename: function(style,
stylename)
Returns the index of the given stylename in the given style.
info: function()
Writes the current navigator information to the console.
mxCellEditor.prototype.init = function ()
Creates the textarea and installs the event listeners.
mxConnectionHandler.prototype.init = function()
Initializes the shapes required for this connection handler.
mxEdgeHandler.prototype.init = function()
Initializes the shapes required for this edge handler.
mxGraph.prototype.init = function(container)
Initializes the container and creates the respective datastructures.
mxGraphView.prototype.init = function()
Initializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.
mxLabel.prototype.init = function(container)
Initializes the shape and the indicator.
init: function()
Initializes the DOM node for the console.
mxOutline.prototype.init = function(container)
Initializes the outline inside the given container.
mxPopupMenuHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxPopupMenu.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxShape.prototype.init = function(container)
Initializes the shape by creaing the DOM node using create and adding it into the given container.
mxTooltipHandler.prototype.init = function()
Initializes the DOM nodes required for this tooltip handler.
mxVertexHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxWindow.prototype.init = function(x,
y,
width,
height,
style)
Initializes the DOM tree that represents the window.
mxEdgeHandler.prototype.initBend = function(bend)
Helper method to initialize the given bend.
mxCellRenderer.prototype.initControl = function(state,
control,
handleEvents,
clickHandler)
Initializes the given control and returns the corresponding DOM node.
mxCoordinateAssignment.prototype.initialCoords = function(facade,
model)
Sets up the layout in an initial positioning.
mxCellRenderer.prototype.initializeLabel = function(state)
Initiailzes the label with a suitable container.
mxCellRenderer.prototype.initializeOverlay = function(state,
overlay)
Initializes the given overlay.
mxCellRenderer.prototype.initializeShape = function(state)
Initializes the shape in the given state by calling its init method with the correct container.
mxGraphHierarchyModel.prototype.initialRank = function()
Basic determination of minimum layer ranking by working from from sources or sinks and working through each node in the relevant edge direction.
mxSwimlaneModel.prototype.initialRank = function()
Basic determination of minimum layer ranking by working from from sources or sinks and working through each node in the relevant edge direction.
mxCell.prototype.insert = function(child,
index)
Inserts the specified child into the child array at the specified index and updates the parent reference of the child.
mxDefaultToolbar.prototype.insert = function(vertex,
evt,
target)
Handles a drop by inserting the given vertex into the given parent cell or the default parent if no parent is specified.
mxCell.prototype.insertEdge = function(edge,
isOutgoing)
Inserts the specified edge into the edge array and returns the edge.
mxConnectionHandler.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Creates, inserts and returns the new edge for the given parameters.
mxGraph.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
mxCodec.prototype.insertIntoGraph = function(cell)
Inserts the given cell into its parent and terminal cells.
Inserts the given array of mxShapes after the given nodes in the DOM.
mxGraph.prototype.insertVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
mxEditor.prototype.installChangeHandler = function (graph)
Installs the listeners required to automatically validate the graph.
mxWindow.prototype.installCloseHandler = function()
Adds the closeImage as a new image node in closeImg and installs the close event.
mxEditor.prototype.installDblClickHandler = function (graph)
Overrides mxGraph.dblClick to invoke dblClickAction on a cell and reset the selection tool in the toolbar.
mxEditor.prototype.installDrillHandler = function (graph)
Installs listeners for dispatching the root event.
mxDefaultToolbar.prototype.installDropHandler = function (img,
dropHandler)
Makes the given img draggable using the given function for handling a drop event.
mxEditor.prototype.installInsertHandler = function (graph)
Installs the handler for invoking insertFunction if one is defined.
mxCellRenderer.prototype.installListeners = function(state)
Installs the event listeners for the given cell state.
mxGraphView.prototype.installListeners = function()
Installs the required listeners in the container.
mxWindow.prototype.installMaximizeHandler = function()
Installs the event listeners required for maximizing the window.
mxWindow.prototype.installMinimizeHandler = function()
Installs the event listeners required for minimizing the window.
mxWindow.prototype.installMoveHandler = function()
Installs the event listeners required for moving the window.
Installs the listeners for the given mxCellState, mxCellOverlay and mxShape that represents the overlay.
mxEditor.prototype.installUndoHandler = function (graph)
Adds the undoManager to the graph model and the view.
intersection: function (x0,
y0,
x1,
y1,
x2,
y2,
x3,
y3)
Returns the intersection of two lines as an mxPoint.
mxCellMarker.prototype.intersects = function(state,
me)
Returns true if the given coordinate pair intersects the given state.
mxGraph.prototype.intersects = function(state,
x,
y)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
intersects: function(a,
b)
Returns true if the two rectangles intersect.
mxGraphView.prototype.invalidate = function(cell,
recurse,
includeEdges)
Invalidates the state of the given cell, all its descendants and connected edges.
mxGraphHierarchyEdge.prototype.invert = function(layer)
Inverts the direction of this internal edge(s)
mxSwimlaneManager.prototype.isAddEnabled = function()
Returns addEnabled.
mxEdgeHandler.prototype.isAddPointEvent = function(evt)
Returns true if the given event is a trigger to add a new point.
mxGraph.prototype.isAllowDanglingEdges = function()
Returns allowDanglingEdges as a boolean.
mxGraphView.prototype.isAllowEval = function()
Returns allowEval.
mxGraph.prototype.isAllowLoops = function()
Returns allowLoops as a boolean.
mxGraph.prototype.isAllowOverlapParent = function(cell)
Returns true if the given cell is allowed to be placed outside of the parents area.
isAltDown: function(evt)
Returns true if the alt key is pressed for the given event.
mxGraphHierarchyNode.prototype.isAncestor = function(otherNode)
mxGraphModel.prototype.isAncestor = function(parent,
child)
Returns true if the given parent is an ancestor of the given child.
isAncestorNode: function(ancestor,
child)
Returns true if the given ancestor is an ancestor of the given DOM node in the DOM.
mxGraph.prototype.isAutoSizeCell = function(cell)
Returns true if the size of the given cell should automatically be updated after a change of the label.
mxGraph.prototype.isAutoSizeCells = function()
Returns autoSizeCells.
mxXmlRequest.prototype.isBinary = function()
Returns binary.
mxObjectCodec.prototype.isBooleanAttribute = function(enc,
obj,
name,
value)
Returns true if the given object attribute is a boolean value.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
mxLayoutManager.prototype.isBubbling = function()
Returns true if a layout should bubble, that is, if the parent layout should be executed whenever a cell layout (layout of the children of a cell) has been executed.
Hook for subclassers to disable support for a given language.
mxGraph.prototype.isCellBendable = function(cell)
Returns true if the given cell is bendable.
mxGraph.prototype.isCellCloneable = function(cell)
Returns true if the given cell is cloneable.
codec.isCellCodec = function()
Returns true since this is a cell codec.
mxCodec.prototype.isCellCodec = function(codec)
Returns true if the given codec is a cell codec.
mxGraph.prototype.isCellCollapsed = function(cell)
Returns true if the given cell is collapsed in this graph.
mxGraph.prototype.isCellConnectable = function(cell)
Returns true if the given cell is connectable in this graph.
mxGraph.prototype.isCellDeletable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellDisconnectable = function(cell,
terminal,
source)
Returns true if the given cell is disconnectable from the source or target terminal.
mxGraph.prototype.isCellEditable = function(cell)
Returns true if the given cell is editable.
mxGraph.prototype.isCellFoldable = function(cell,
collapse)
Returns true if the given cell is foldable.
mxSwimlaneManager.prototype.isCellHorizontal = function(cell)
Returns true if the given cell is horizontal.
mxSpaceManager.prototype.isCellIgnored = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellLocked = function(cell)
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellMovable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellResizable = function(cell)
Returns true if the given cell is resizable.
mxGraph.prototype.isCellRotatable = function(cell)
Returns true if the given cell is rotatable.
mxGraph.prototype.isCellsBendable = function()
Returns cellsBenadable.
mxGraph.prototype.isCellsCloneable = function()
Returns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.
mxGraph.prototype.isCellsDeletable = function()
Returns cellsDeletable.
mxGraph.prototype.isCellsDisconnectable = function()
Returns cellsDisconnectable.
mxGraph.prototype.isCellsEditable = function()
Returns cellsEditable.
mxGraph.prototype.isCellSelectable = function(cell)
Returns true if the given cell is selectable.
mxGraph.prototype.isCellSelected = function(cell)
Returns true if the given cell is selected.
mxSpaceManager.prototype.isCellShiftable = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellsLocked = function()
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellsMovable = function()
Returns cellsMovable.
mxGraph.prototype.isCellsResizable = function()
Returns cellsResizable.
mxGraph.prototype.isCellsSelectable = function()
Returns cellsSelectable.
mxGraph.prototype.isCellVisible = function(cell)
Returns true if the given cell is visible in this graph.
mxGraphHandler.prototype.isCloneEnabled = function()
Returns cloneEnabled.
mxGraph.prototype.isCloneEvent = function(evt)
Returns true if the given event is a clone event.
mxGraph.prototype.isCloneInvalidEdges = function()
Returns cloneInvalidEdges as a boolean.
mxCell.prototype.isCollapsed = function()
Returns true if the cell is collapsed.
mxGraphModel.prototype.isCollapsed = function(cell)
Returns true if the given mxCell is collapsed.
mxCell.prototype.isConnectable = function()
Returns true if the cell is connectable.
mxGraph.prototype.isConnectable = function(connectable)
Returns true if the connectionHandler is enabled.
mxGraphModel.prototype.isConnectable = function(cell)
Returns true if the given mxCell is connectable.
mxConnectionHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxEdgeHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxGraph.prototype.isConnectableEdges = function()
Returns connectableEdges as a boolean.
mxConnectionHandler.prototype.isConnecting = function()
Returns true if the source terminal has been clicked and a new connection is currently being previewed.
mxGraph.prototype.isConstrainChild = function(cell)
Returns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.
mxGraph.prototype.isConstrainChildren = function()
Returns constrainChildren.
mxGraph.prototype.isConstrainChildrenOnResize = function()
Returns constrainChildrenOnResize.
mxGraph.prototype.isConstrainedEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxVertexHandler.prototype.isConstrainedEvent = function(me)
Returns true if the aspect ratio if the cell should be maintained.
isConsumed: function(evt)
Returns true if the event has been consumed using consume.
mxEventObject.prototype.isConsumed = function()
Returns true if the event has been consumed.
mxMouseEvent.prototype.isConsumed = function()
Returns consumed.
mxGraphView.prototype.isContainerEvent = function(evt)
Returns true if the event origin is one of the drawing panes or containers of the view.
isControlDown: function(evt)
Returns true if the control key is pressed for the given event.
mxKeyHandler.prototype.isControlDown = function(evt)
Returns true if the control key is pressed.
mxGraphModel.prototype.isCreateIds = function()
Returns createIds.
mxConnectionHandler.prototype.isCreateTarget = function()
Returns createTarget.
mxGraphHandler.prototype.isDelayedSelection = function(cell)
Hook to return true for delayed selections.
mxGraph.prototype.isDisconnectOnMove = function()
Returns disconnectOnMove as a boolean.
mxGraph.prototype.isDropEnabled = function()
Returns dropEnabled as a boolean.
mxCell.prototype.isEdge = function()
Returns true if the cell is an edge.
mxGraphAbstractHierarchyCell.prototype.isEdge = function()
Returns whether or not this cell is an edge
mxGraphHierarchyEdge.prototype.isEdge = function()
Returns true.
mxGraphModel.prototype.isEdge = function(cell)
Returns true if the given cell is an edge.
mxGraphLayout.prototype.isEdgeIgnored = function(edge)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isEdgeLabelsMovable = function()
Returns edgeLabelsMovable.
mxGraph.prototype.isEdgeValid = function(edge,
source,
target)
Checks if the return value of getEdgeValidationError for the given arguments is null.
mxGraph.prototype.isEditing = function(cell)
Returns true if the given cell is currently being edited.
mxCellStatePreview.prototype.isEmpty = function()
Returns true if this contains no entries.
isEmpty: function()
Returns true if the clipboard currently has not data stored.
mxGraphSelectionModel.prototype.isEmpty = function()
Returns true if no cells are currently selected.
mxUndoableEdit.prototype.isEmpty = function()
Returns true if the this edit contains no changes.
mxUndoManager.prototype.isEmpty = function()
Returns true if the history is empty.
mxAutoSaveManager.prototype.isEnabled = function()
Returns true if events are handled.
mxCellMarker.prototype.isEnabled = function()
Returns true if events are handled.
mxConnectionHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxConstraintHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxDragSource.prototype.isEnabled = function()
Returns enabled.
mxGraph.prototype.isEnabled = function()
Returns true if the graph is enabled.
mxGraphHandler.prototype.isEnabled = function()
Returns enabled.
mxKeyHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxLayoutManager.prototype.isEnabled = function()
Returns true if events are handled.
mxOutline.prototype.isEnabled = function()
Returns true if events are handled.
mxPopupMenu.prototype.isEnabled = function()
Returns true if events are handled.
mxRubberband.prototype.isEnabled = function()
Returns true if events are handled.
mxSelectionCellsHandler.prototype.isEnabled = function()
Returns enabled.
mxSpaceManager.prototype.isEnabled = function()
Returns true if events are handled.
mxSwimlaneManager.prototype.isEnabled = function()
Returns true if events are handled.
mxTooltipHandler.prototype.isEnabled = function()
Returns true if events are handled.
isEnabled: function()
Returns enabled.
mxGuide.prototype.isEnabledForEvent = function(evt)
Returns true if the guide should be enabled for the given native event.
mxGraph.prototype.isEnterStopsCellEditing = function()
Returns enterStopsCellEditing.
mxGraph.prototype.isEscapeEnabled = function()
Returns escapeEnabled.
mxConstraintHandler.prototype.isEventIgnored = function(me,
source)
Returns true if the given mxMouseEvent should be ignored in update.
mxGraph.prototype.isEventIgnored = function(evtName,
me,
sender)
Returns true if the event should be ignored in fireMouseEvent.
mxEventSource.prototype.isEventsEnabled = function()
Returns eventsEnabled.
mxCellEditor.prototype.isEventSource = function(evt)
Returns true if this editor is the source for the given native event.
mxGraph.prototype.isEventSourceIgnored = function(evtName,
me)
Returns true if the given mouse down event should be ignored.
codec.isExcluded = function(obj,
attr,
value,
isWrite)
Excludes user objects that are XML nodes.
mxObjectCodec.prototype.isExcluded = function(obj,
attr,
value,
write)
Returns true if the given attribute is to be ignored by the codec.
mxGraph.prototype.isExtendParent = function(cell)
Returns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.
mxGraph.prototype.isExtendParents = function()
Returns extendParents.
mxSpaceManager.prototype.isExtendParents = function()
Returns true if events are handled.
mxGraph.prototype.isExtendParentsOnAdd = function()
Returns extendParentsOnAdd.
mxPanningHandler.prototype.isForcePanningEvent = function(me)
Returns true if the given mxMouseEvent should start panning.
mxRubberband.prototype.isForceRubberbandEvent = function(me)
Returns true if the given mxMouseEvent should start rubberband selection.
mxKeyHandler.prototype.isGraphEvent = function(evt)
Returns true if the event should be processed by this handler, that is, if the event source is either the target, one of its direct children, a descendant of the mxGraph.container, or the mxGraph.cellEditor of the graph.
mxDragSource.prototype.isGridEnabled = function()
Returns gridEnabled.
mxGraph.prototype.isGridEnabled = function()
Returns gridEnabled as a boolean.
mxGraph.prototype.isGridEnabledEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxDragSource.prototype.isGuidesEnabled = function()
Returns guidesEnabled.
mxEdgeHandler.prototype.isHandleEnabled = function(index)
Creates the shape used to display the given bend.
mxEdgeHandler.prototype.isHandleVisible = function(index)
Returns true if the handle at the given index is visible.
mxCellEditor.prototype.isHideLabel = function(state)
Returns true if the label should be hidden while the cell is being edited.
mxTooltipHandler.prototype.isHideOnHover = function()
Returns hideOnHover.
mxCompactTreeLayout.prototype.isHorizontal = function()
Returns horizontal.
mxPartitionLayout.prototype.isHorizontal = function()
Returns horizontal.
mxStackLayout.prototype.isHorizontal = function()
Returns horizontal.
mxSwimlaneManager.prototype.isHorizontal = function()
Returns horizontal.
mxCellMarker.prototype.isHotspotEnabled = function()
Returns true if hotspot is used in intersects.
mxImageShape.prototype.isHtmlAllowed = function()
Returns true if HTML is allowed for this shape.
mxLabel.prototype.isHtmlAllowed = function()
Returns true for non-rounded, non-rotated shapes with no glass gradient and no indicator shape.
mxRectangleShape.prototype.isHtmlAllowed = function()
Returns true for non-rounded, non-rotated shapes with no glass gradient.
mxShape.prototype.isHtmlAllowed = function()
Returns true if HTML is allowed for this shape.
mxText.prototype.isHtmlAllowed = function()
Returns true if HTML is allowed for this shape.
mxGraph.prototype.isHtmlLabel = function(cell)
Returns true if the label must be rendered as HTML markup.
mxGraph.prototype.isHtmlLabels = function()
Returns htmlLabels.
mxConnectionHandler.prototype.isImmediateConnectSource = function(state)
Returns true if a tap on the given source state should immediately start connecting.
mxGraph.prototype.isInvokesStopCellEditing = function()
Returns invokesStopCellEditing.
mxGraph.prototype.isLabelClipped = function(cell)
Returns true if the overflow portion of labels should be hidden.
mxCellRenderer.prototype.isLabelEvent = function(state,
evt)
Returns true if the event is for the label of the given state.
mxGraph.prototype.isLabelMovable = function(cell)
Returns true if the given edges’s label is moveable.
mxGraphModel.prototype.isLayer = function(cell)
Returns true if isRoot returns true for the parent of the given cell.
isLeftMouseButton: function(evt)
Returns true if the left mouse button is pressed for the given event.
mxVertexHandler.prototype.isLivePreviewBorder = function()
Called if livePreview is enabled to check if a border should be painted.
mxGraph.prototype.isLoop = function(state)
Returns true if the given cell state is a loop.
mxPopupMenu.prototype.isMenuShowing = function()
Returns true if the menu is showing.
isMetaDown: function(evt)
Returns true if the meta key is pressed for the given event.
mxCellEditor.prototype.isModified = function()
Returns modified.
mxEditor.prototype.isModified = function ()
Returns modified.
isMouseEvent: function(evt)
Returns true if the event was generated using a mouse (not a pen or touch device).
mxGraphHandler.prototype.isMoveEnabled = function()
Returns moveEnabled.
mxConnectionHandler.prototype.isMoveIconToFrontForState = function(state)
Returns true if the state has a HTML label in the graph’s container, otherwise it returns moveIconFront.
mxGraph.prototype.isMultigraph = function()
Returns multigraph as a boolean.
isNaN: function(value)
Returns true if the given value is of type number and isNaN returns true.
isNode: function(value,
nodeName,
attributeName,
attributeValue)
Returns true if the given value is an XML node with the node name and if the optional attribute has the specified value.
isNumeric: function(n)
Returns true if the specified value is numeric, that is, if it is not null, not an empty string, not a HEX number and isNaN returns false.
mxObjectCodec.prototype.isNumericAttribute = function(dec,
attr,
obj)
Returns true if the given XML attribute is a numeric value.
mxGraph.prototype.isOrthogonal = function(edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
mxPolyline.prototype.isPaintBoundsInverted = function()
Returns false.
mxShape.prototype.isPaintBoundsInverted = function()
Returns true if the bounds should be inverted.
mxSwimlane.prototype.isPaintBoundsInverted = function()
Overrides bounds inversion to maintain the bounds if the shape is rotated via the horizontal flag.
mxText.prototype.isPaintBoundsInverted = function()
Inverts the bounds if mxShape.isBoundsInverted returns true or if the horizontal style is false.
mxPanningHandler.prototype.isPanningEnabled = function()
Returns panningEnabled.
mxPanningHandler.prototype.isPanningTrigger = function(me)
Returns true if the given event is a panning trigger for the optional given cell.
mxShape.prototype.isParseVml = function()
Specifies if any VML should be added via insertAdjacentHtml to the DOM.
mxText.prototype.isParseVml = function()
Text shapes do not contain VML markup and do not need to be parsed.
isPopupTrigger: function(evt)
Returns true if the event is a popup trigger.
mxMouseEvent.prototype.isPopupTrigger = function()
Returns true if the event is a popup trigger.
mxPopupMenu.prototype.isPopupTrigger = function(me)
Returns true if the given event is a popupmenu trigger for the optional given cell.
mxGraph.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, the cell returned by getTerminalForPort should be used as the terminal and the port should be referenced by the ID in either the mxConstants.STYLE_SOURCE_PORT or the or the mxConstants.STYLE_TARGET_PORT.
mxHierarchicalLayout.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, its parent is the connecting vertex in terms of graph traversal
mxSwimlaneLayout.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, its parent is the connecting vertex in terms of graph traversal
mxGraph.prototype.isPortsEnabled = function()
Returns portsEnabled as a boolean.
mxEditor.prototype.isPropertiesVisible = function ()
Returns true if the properties dialog is currently visible.
mxXmlRequest.prototype.isReady = function()
Returns true if the response is ready.
mxGraph.prototype.isRecursiveResize = function()
Returns recursiveResize.
codec.isReference = function(obj,
attr,
value,
isWrite)
Returns true for the child attribute if the child cell had a previous parent or if we’re reading the child as an attribute rather than a child node, in which case it’s always a reference.
mxObjectCodec.prototype.isReference = function(obj,
attr,
value,
write)
Returns true if the given fieldname is to be treated as a textual reference (ID).
isRelativeUrl: function(url)
Returns true if the given URL is relative.
mxGraphHandler.prototype.isRemoveCellsFromParent = function()
Returns removeCellsFromParent.
mxEdgeHandler.prototype.isRemovePointEvent = function(evt)
Returns true if the given event is a trigger to remove a point.
mxGraphView.prototype.isRendering = function()
Returns rendering.
mxWindow.prototype.isResizable = function()
Returns true if the window is resizable.
mxGraph.prototype.isResizeContainer = function()
Returns resizeContainer.
mxSwimlaneManager.prototype.isResizeEnabled = function()
Returns resizeEnabled.
isRightMouseButton: function(evt)
Returns true if the right mouse button was pressed.
mxGraphModel.prototype.isRoot = function(cell)
Returns true if the given cell is the root of the model and a non-null value.
mxGraphView.prototype.isScrollEvent = function(evt)
Returns true if the event origin is one of the scrollbars of the container in IE.
mxGraphSelectionModel.prototype.isSelected = function(cell)
Returns true if the given mxCell is selected.
mxGraphHandler.prototype.isSelectEnabled = function()
Returns selectEnabled.
mxEdgeHandler.prototype.isSelectionDashed = function()
Returns mxConstants.EDGE_SELECTION_DASHED.
mxVertexHandler.prototype.isSelectionDashed = function()
Returns mxConstants.VERTEX_SELECTION_DASHED.
mxGraph.prototype.isSelectionEmpty = function()
Returns true if the selection is empty.
mxPopupMenuHandler.prototype.isSelectOnPopup = function(me)
Hook for returning if a cell should be selected for a given mxMouseEvent.
mxCellRenderer.prototype.isShapeEvent = function(state,
evt)
Returns true if the event is for the shape of the given state.
isShiftDown: function(evt)
Returns true if the shift key is pressed for the given event.
mxSpaceManager.prototype.isShiftDownwards = function()
Returns true if events are handled.
mxSpaceManager.prototype.isShiftRightwards = function()
Returns true if events are handled.
mxUndoableEdit.prototype.isSignificant = function()
Returns significant.
mxGraphSelectionModel.prototype.isSingleSelection = function()
Returns singleSelection as a boolean.
mxVertexHandler.prototype.isSizerVisible = function(index)
Returns true if the sizer for the given index is visible.
mxMouseEvent.prototype.isSource = function(shape)
Returns true if the given mxShape is the source of evt.
mxGraph.prototype.isSplitEnabled = function()
Returns splitEnabled as a boolean.
mxGraph.prototype.isSplitTarget = function(target,
cells,
evt)
Returns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.
mxConnectionHandler.prototype.isStartEvent = function(me)
Returns true if the given mouse down event should start this handler.
mxConstraintHandler.prototype.isStateIgnored = function(state,
source)
Returns true if the given state should be ignored.
mxConnectionHandler.prototype.isStopEvent = function(me)
Returns true if the given mouse up event should stop this handler.
mxGraph.prototype.isSwimlane = function (cell)
Returns true if the given cell is a swimlane in the graph.
mxSwimlaneManager.prototype.isSwimlaneIgnored = function(swimlane)
Returns true if the given swimlane should be ignored.
mxGraph.prototype.isSwimlaneNesting = function()
Returns swimlaneNesting as a boolean.
mxGraph.prototype.isSwimlaneSelectionEnabled = function()
Returns swimlaneSelectionEnabled as a boolean.
mxGraph.prototype.isSyntheticEventIgnored = function(evtName,
me,
sender)
Hook for ignoring synthetic mouse events after touchend in Firefox.
mxGraph.prototype.isTerminalPointMovable = function(cell,
source)
Returns true if the given terminal point is movable.
mxGraph.prototype.isToggleEvent = function(evt)
Returns true if the given event is a toggle event.
isTouchEvent: function(evt)
Returns true if the event was generated using a touch device (not a pen or mouse).
mxGraph.prototype.isValidAncestor = function(cell,
parent,
recurse)
Returns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.
mxGraph.prototype.isValidConnection = function(source,
target)
Returns true if the given target cell is a valid target for source.
mxGraph.prototype.isValidDropTarget = function(cell,
cells,
evt)
Returns true if the given cell is a valid drop target for the specified cells.
mxSession.prototype.isValidResponse = function(req)
Returns true if the response data in the given mxXmlRequest is valid.
mxGraph.prototype.isValidRoot = function(cell)
Returns true if the given cell is a valid root for the cell display hierarchy.
mxConnectionHandler.prototype.isValidSource = function(cell)
Returns mxGraph.isValidSource for the given source terminal.
mxGraph.prototype.isValidSource = function(cell)
Returns true if the given cell is a valid source for new connections.
mxCellMarker.prototype.isValidState = function(state)
Returns true if the given mxCellState is a valid state.
mxConnectionHandler.prototype.isValidTarget = function(cell)
Returns true.
mxGraph.prototype.isValidTarget = function(cell)
Returns isValidSource for the given cell.
mxCell.prototype.isVertex = function()
Returns true if the cell is a vertex.
mxGraphAbstractHierarchyCell.prototype.isVertex = function()
Returns whether or not this cell is a node
mxGraphHierarchyNode.prototype.isVertex = function()
Returns true.
mxGraphModel.prototype.isVertex = function(cell)
Returns true if the given cell is a vertex.
mxCompactTreeLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxFastOrganicLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxGraphLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isVertexLabelsMovable = function()
Returns vertexLabelsMovable.
mxGraphLayout.prototype.isVertexMovable = function(cell)
Returns a boolean indicating if the given mxCell is movable or bendable by the algorithm.
mxCell.prototype.isVisible = function()
Returns true if the cell is visibile.
mxGraphModel.prototype.isVisible = function(cell)
Returns true if the given mxCell is visible.
isVisible: function()
Returns true if the console is visible.
mxWindow.prototype.isVisible = function()
Returns true if the window is visible.
isVml: function(node)
Returns true if the given node is in the VML namespace.
mxGraph.prototype.isWrapping = function(cell)
This enables wrapping for HTML labels.
+
mxSvgCanvas2D.prototype.image = function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.image = function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
mxXmlCanvas2D.prototype.image = function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
mxGraph.prototype.importCells = function(cells,
dx,
dy,
target,
evt)
Clones and inserts the given cells into the graph using the move method and returns the inserted cells.
include: function(src)
Dynamically adds a script node to the document header.
indexOf: function(array,
obj)
Returns the index of obj in array or -1 if the array does not contains the given object.
indexOfStylename: function(style,
stylename)
Returns the index of the given stylename in the given style.
info: function()
Writes the current navigator information to the console.
mxCellEditor.prototype.init = function ()
Creates the textarea and installs the event listeners.
mxConnectionHandler.prototype.init = function()
Initializes the shapes required for this connection handler.
mxEdgeHandler.prototype.init = function()
Initializes the shapes required for this edge handler.
mxGraph.prototype.init = function(container)
Initializes the container and creates the respective datastructures.
mxGraphView.prototype.init = function()
Initializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.
mxLabel.prototype.init = function(container)
Initializes the shape and the indicator.
init: function()
Initializes the DOM node for the console.
mxOutline.prototype.init = function(container)
Initializes the outline inside the given container.
mxPopupMenuHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxPopupMenu.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxShape.prototype.init = function(container)
Initializes the shape by creaing the DOM node using create and adding it into the given container.
mxTooltipHandler.prototype.init = function()
Initializes the DOM nodes required for this tooltip handler.
mxVertexHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxWindow.prototype.init = function(x,
y,
width,
height,
style)
Initializes the DOM tree that represents the window.
mxEdgeHandler.prototype.initBend = function(bend)
Helper method to initialize the given bend.
mxCellRenderer.prototype.initControl = function(state,
control,
handleEvents,
clickHandler)
Initializes the given control and returns the corresponding DOM node.
mxCoordinateAssignment.prototype.initialCoords = function(facade,
model)
Sets up the layout in an initial positioning.
mxCellRenderer.prototype.initializeLabel = function(state)
Initiailzes the label with a suitable container.
mxCellRenderer.prototype.initializeOverlay = function(state,
overlay)
Initializes the given overlay.
mxCellRenderer.prototype.initializeShape = function(state)
Initializes the shape in the given state by calling its init method with the correct container.
mxGraphHierarchyModel.prototype.initialRank = function()
Basic determination of minimum layer ranking by working from from sources or sinks and working through each node in the relevant edge direction.
mxSwimlaneModel.prototype.initialRank = function()
Basic determination of minimum layer ranking by working from from sources or sinks and working through each node in the relevant edge direction.
mxCell.prototype.insert = function(child,
index)
Inserts the specified child into the child array at the specified index and updates the parent reference of the child.
mxDefaultToolbar.prototype.insert = function(vertex,
evt,
target)
Handles a drop by inserting the given vertex into the given parent cell or the default parent if no parent is specified.
mxCell.prototype.insertEdge = function(edge,
isOutgoing)
Inserts the specified edge into the edge array and returns the edge.
mxConnectionHandler.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Creates, inserts and returns the new edge for the given parameters.
mxGraph.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
mxCodec.prototype.insertIntoGraph = function(cell)
Inserts the given cell into its parent and terminal cells.
Inserts the given array of mxShapes after the given nodes in the DOM.
mxGraph.prototype.insertVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
mxEditor.prototype.installChangeHandler = function (graph)
Installs the listeners required to automatically validate the graph.
mxWindow.prototype.installCloseHandler = function()
Adds the closeImage as a new image node in closeImg and installs the close event.
mxEditor.prototype.installDblClickHandler = function (graph)
Overrides mxGraph.dblClick to invoke dblClickAction on a cell and reset the selection tool in the toolbar.
mxEditor.prototype.installDrillHandler = function (graph)
Installs listeners for dispatching the root event.
mxDefaultToolbar.prototype.installDropHandler = function (img,
dropHandler)
Makes the given img draggable using the given function for handling a drop event.
mxEditor.prototype.installInsertHandler = function (graph)
Installs the handler for invoking insertFunction if one is defined.
mxCellRenderer.prototype.installListeners = function(state)
Installs the event listeners for the given cell state.
mxGraphView.prototype.installListeners = function()
Installs the required listeners in the container.
mxWindow.prototype.installMaximizeHandler = function()
Installs the event listeners required for maximizing the window.
mxWindow.prototype.installMinimizeHandler = function()
Installs the event listeners required for minimizing the window.
mxWindow.prototype.installMoveHandler = function()
Installs the event listeners required for moving the window.
Installs the listeners for the given mxCellState, mxCellOverlay and mxShape that represents the overlay.
mxEditor.prototype.installUndoHandler = function (graph)
Adds the undoManager to the graph model and the view.
intersection: function (x0,
y0,
x1,
y1,
x2,
y2,
x3,
y3)
Returns the intersection of two lines as an mxPoint.
mxCellMarker.prototype.intersects = function(state,
me)
Returns true if the given coordinate pair intersects the given state.
mxGraph.prototype.intersects = function(state,
x,
y)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
intersects: function(a,
b)
Returns true if the two rectangles intersect.
mxGraphView.prototype.invalidate = function(cell,
recurse,
includeEdges)
Invalidates the state of the given cell, all its descendants and connected edges.
mxGraphHierarchyEdge.prototype.invert = function(layer)
Inverts the direction of this internal edge(s)
mxSwimlaneManager.prototype.isAddEnabled = function()
Returns addEnabled.
mxEdgeHandler.prototype.isAddPointEvent = function(evt)
Returns true if the given event is a trigger to add a new point.
mxGraph.prototype.isAllowDanglingEdges = function()
Returns allowDanglingEdges as a boolean.
mxGraphView.prototype.isAllowEval = function()
Returns allowEval.
mxGraph.prototype.isAllowLoops = function()
Returns allowLoops as a boolean.
mxGraph.prototype.isAllowOverlapParent = function(cell)
Returns true if the given cell is allowed to be placed outside of the parents area.
isAltDown: function(evt)
Returns true if the alt key is pressed for the given event.
mxGraphHierarchyNode.prototype.isAncestor = function(otherNode)
mxGraphModel.prototype.isAncestor = function(parent,
child)
Returns true if the given parent is an ancestor of the given child.
isAncestorNode: function(ancestor,
child)
Returns true if the given ancestor is an ancestor of the given DOM node in the DOM.
mxGraph.prototype.isAutoSizeCell = function(cell)
Returns true if the size of the given cell should automatically be updated after a change of the label.
mxGraph.prototype.isAutoSizeCells = function()
Returns autoSizeCells.
mxXmlRequest.prototype.isBinary = function()
Returns binary.
mxObjectCodec.prototype.isBooleanAttribute = function(enc,
obj,
name,
value)
Returns true if the given object attribute is a boolean value.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
mxLayoutManager.prototype.isBubbling = function()
Returns true if a layout should bubble, that is, if the parent layout should be executed whenever a cell layout (layout of the children of a cell) has been executed.
Hook for subclassers to disable support for a given language.
mxGraph.prototype.isCellBendable = function(cell)
Returns true if the given cell is bendable.
mxGraph.prototype.isCellCloneable = function(cell)
Returns true if the given cell is cloneable.
codec.isCellCodec = function()
Returns true since this is a cell codec.
mxCodec.prototype.isCellCodec = function(codec)
Returns true if the given codec is a cell codec.
mxGraph.prototype.isCellCollapsed = function(cell)
Returns true if the given cell is collapsed in this graph.
mxGraph.prototype.isCellConnectable = function(cell)
Returns true if the given cell is connectable in this graph.
mxGraph.prototype.isCellDeletable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellDisconnectable = function(cell,
terminal,
source)
Returns true if the given cell is disconnectable from the source or target terminal.
mxGraph.prototype.isCellEditable = function(cell)
Returns true if the given cell is editable.
mxGraph.prototype.isCellFoldable = function(cell,
collapse)
Returns true if the given cell is foldable.
mxSwimlaneManager.prototype.isCellHorizontal = function(cell)
Returns true if the given cell is horizontal.
mxSpaceManager.prototype.isCellIgnored = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellLocked = function(cell)
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellMovable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellResizable = function(cell)
Returns true if the given cell is resizable.
mxGraph.prototype.isCellRotatable = function(cell)
Returns true if the given cell is rotatable.
mxGraph.prototype.isCellsBendable = function()
Returns cellsBenadable.
mxGraph.prototype.isCellsCloneable = function()
Returns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.
mxGraph.prototype.isCellsDeletable = function()
Returns cellsDeletable.
mxGraph.prototype.isCellsDisconnectable = function()
Returns cellsDisconnectable.
mxGraph.prototype.isCellsEditable = function()
Returns cellsEditable.
mxGraph.prototype.isCellSelectable = function(cell)
Returns true if the given cell is selectable.
mxGraph.prototype.isCellSelected = function(cell)
Returns true if the given cell is selected.
mxSpaceManager.prototype.isCellShiftable = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellsLocked = function()
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellsMovable = function()
Returns cellsMovable.
mxGraph.prototype.isCellsResizable = function()
Returns cellsResizable.
mxGraph.prototype.isCellsSelectable = function()
Returns cellsSelectable.
mxGraph.prototype.isCellVisible = function(cell)
Returns true if the given cell is visible in this graph.
mxGraphHandler.prototype.isCloneEnabled = function()
Returns cloneEnabled.
mxGraph.prototype.isCloneEvent = function(evt)
Returns true if the given event is a clone event.
mxGraph.prototype.isCloneInvalidEdges = function()
Returns cloneInvalidEdges as a boolean.
mxCell.prototype.isCollapsed = function()
Returns true if the cell is collapsed.
mxGraphModel.prototype.isCollapsed = function(cell)
Returns true if the given mxCell is collapsed.
mxCell.prototype.isConnectable = function()
Returns true if the cell is connectable.
mxGraph.prototype.isConnectable = function(connectable)
Returns true if the connectionHandler is enabled.
mxGraphModel.prototype.isConnectable = function(cell)
Returns true if the given mxCell is connectable.
mxConnectionHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxEdgeHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxGraph.prototype.isConnectableEdges = function()
Returns connectableEdges as a boolean.
mxConnectionHandler.prototype.isConnecting = function()
Returns true if the source terminal has been clicked and a new connection is currently being previewed.
mxGraph.prototype.isConstrainChild = function(cell)
Returns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.
mxGraph.prototype.isConstrainChildren = function()
Returns constrainChildren.
mxGraph.prototype.isConstrainChildrenOnResize = function()
Returns constrainChildrenOnResize.
mxGraph.prototype.isConstrainedEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxVertexHandler.prototype.isConstrainedEvent = function(me)
Returns true if the aspect ratio if the cell should be maintained.
isConsumed: function(evt)
Returns true if the event has been consumed using consume.
mxEventObject.prototype.isConsumed = function()
Returns true if the event has been consumed.
mxMouseEvent.prototype.isConsumed = function()
Returns consumed.
mxGraphView.prototype.isContainerEvent = function(evt)
Returns true if the event origin is one of the drawing panes or containers of the view.
isControlDown: function(evt)
Returns true if the control key is pressed for the given event.
mxKeyHandler.prototype.isControlDown = function(evt)
Returns true if the control key is pressed.
mxGraphModel.prototype.isCreateIds = function()
Returns createIds.
mxConnectionHandler.prototype.isCreateTarget = function()
Returns createTarget.
mxGraphHandler.prototype.isDelayedSelection = function(cell)
Hook to return true for delayed selections.
mxGraph.prototype.isDisconnectOnMove = function()
Returns disconnectOnMove as a boolean.
mxGraph.prototype.isDropEnabled = function()
Returns dropEnabled as a boolean.
mxCell.prototype.isEdge = function()
Returns true if the cell is an edge.
mxGraphAbstractHierarchyCell.prototype.isEdge = function()
Returns whether or not this cell is an edge
mxGraphHierarchyEdge.prototype.isEdge = function()
Returns true.
mxGraphModel.prototype.isEdge = function(cell)
Returns true if the given cell is an edge.
mxGraphLayout.prototype.isEdgeIgnored = function(edge)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isEdgeLabelsMovable = function()
Returns edgeLabelsMovable.
mxGraph.prototype.isEdgeValid = function(edge,
source,
target)
Checks if the return value of getEdgeValidationError for the given arguments is null.
mxGraph.prototype.isEditing = function(cell)
Returns true if the given cell is currently being edited.
mxCellStatePreview.prototype.isEmpty = function()
Returns true if this contains no entries.
isEmpty: function()
Returns true if the clipboard currently has not data stored.
mxGraphSelectionModel.prototype.isEmpty = function()
Returns true if no cells are currently selected.
mxUndoableEdit.prototype.isEmpty = function()
Returns true if the this edit contains no changes.
mxUndoManager.prototype.isEmpty = function()
Returns true if the history is empty.
mxAutoSaveManager.prototype.isEnabled = function()
Returns true if events are handled.
mxCellMarker.prototype.isEnabled = function()
Returns true if events are handled.
mxConnectionHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxConstraintHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxDragSource.prototype.isEnabled = function()
Returns enabled.
mxGraph.prototype.isEnabled = function()
Returns true if the graph is enabled.
mxGraphHandler.prototype.isEnabled = function()
Returns enabled.
mxKeyHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxLayoutManager.prototype.isEnabled = function()
Returns true if events are handled.
mxOutline.prototype.isEnabled = function()
Returns true if events are handled.
mxPopupMenu.prototype.isEnabled = function()
Returns true if events are handled.
mxRubberband.prototype.isEnabled = function()
Returns true if events are handled.
mxSelectionCellsHandler.prototype.isEnabled = function()
Returns enabled.
mxSpaceManager.prototype.isEnabled = function()
Returns true if events are handled.
mxSwimlaneManager.prototype.isEnabled = function()
Returns true if events are handled.
mxTooltipHandler.prototype.isEnabled = function()
Returns true if events are handled.
isEnabled: function()
Returns enabled.
mxGuide.prototype.isEnabledForEvent = function(evt)
Returns true if the guide should be enabled for the given native event.
mxGraph.prototype.isEnterStopsCellEditing = function()
Returns enterStopsCellEditing.
mxGraph.prototype.isEscapeEnabled = function()
Returns escapeEnabled.
mxConstraintHandler.prototype.isEventIgnored = function(me,
source)
Returns true if the given mxMouseEvent should be ignored in update.
mxGraph.prototype.isEventIgnored = function(evtName,
me,
sender)
Returns true if the event should be ignored in fireMouseEvent.
mxEventSource.prototype.isEventsEnabled = function()
Returns eventsEnabled.
mxCellEditor.prototype.isEventSource = function(evt)
Returns true if this editor is the source for the given native event.
mxGraph.prototype.isEventSourceIgnored = function(evtName,
me)
Returns true if the given mouse down event should be ignored.
codec.isExcluded = function(obj,
attr,
value,
isWrite)
Excludes user objects that are XML nodes.
mxObjectCodec.prototype.isExcluded = function(obj,
attr,
value,
write)
Returns true if the given attribute is to be ignored by the codec.
mxGraph.prototype.isExtendParent = function(cell)
Returns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.
mxGraph.prototype.isExtendParents = function()
Returns extendParents.
mxSpaceManager.prototype.isExtendParents = function()
Returns true if events are handled.
mxGraph.prototype.isExtendParentsOnAdd = function()
Returns extendParentsOnAdd.
mxPanningHandler.prototype.isForcePanningEvent = function(me)
Returns true if the given mxMouseEvent should start panning.
mxRubberband.prototype.isForceRubberbandEvent = function(me)
Returns true if the given mxMouseEvent should start rubberband selection.
mxKeyHandler.prototype.isGraphEvent = function(evt)
Returns true if the event should be processed by this handler, that is, if the event source is either the target, one of its direct children, a descendant of the mxGraph.container, or the mxGraph.cellEditor of the graph.
mxDragSource.prototype.isGridEnabled = function()
Returns gridEnabled.
mxGraph.prototype.isGridEnabled = function()
Returns gridEnabled as a boolean.
mxGraph.prototype.isGridEnabledEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxDragSource.prototype.isGuidesEnabled = function()
Returns guidesEnabled.
mxEdgeHandler.prototype.isHandleEnabled = function(index)
Creates the shape used to display the given bend.
mxEdgeHandler.prototype.isHandleVisible = function(index)
Returns true if the handle at the given index is visible.
mxCellEditor.prototype.isHideLabel = function(state)
Returns true if the label should be hidden while the cell is being edited.
mxTooltipHandler.prototype.isHideOnHover = function()
Returns hideOnHover.
mxCompactTreeLayout.prototype.isHorizontal = function()
Returns horizontal.
mxPartitionLayout.prototype.isHorizontal = function()
Returns horizontal.
mxStackLayout.prototype.isHorizontal = function()
Returns horizontal.
mxSwimlaneManager.prototype.isHorizontal = function()
Returns horizontal.
mxCellMarker.prototype.isHotspotEnabled = function()
Returns true if hotspot is used in intersects.
mxImageShape.prototype.isHtmlAllowed = function()
Returns true if HTML is allowed for this shape.
mxLabel.prototype.isHtmlAllowed = function()
Returns true for non-rounded, non-rotated shapes with no glass gradient and no indicator shape.
mxRectangleShape.prototype.isHtmlAllowed = function()
Returns true for non-rounded, non-rotated shapes with no glass gradient.
mxShape.prototype.isHtmlAllowed = function()
Returns true if HTML is allowed for this shape.
mxText.prototype.isHtmlAllowed = function()
Returns true if HTML is allowed for this shape.
mxGraph.prototype.isHtmlLabel = function(cell)
Returns true if the label must be rendered as HTML markup.
mxGraph.prototype.isHtmlLabels = function()
Returns htmlLabels.
mxConnectionHandler.prototype.isImmediateConnectSource = function(state)
Returns true if a tap on the given source state should immediately start connecting.
mxGraph.prototype.isInvokesStopCellEditing = function()
Returns invokesStopCellEditing.
mxGraph.prototype.isLabelClipped = function(cell)
Returns true if the overflow portion of labels should be hidden.
mxCellRenderer.prototype.isLabelEvent = function(state,
evt)
Returns true if the event is for the label of the given state.
mxGraph.prototype.isLabelMovable = function(cell)
Returns true if the given edges’s label is moveable.
mxGraphModel.prototype.isLayer = function(cell)
Returns true if isRoot returns true for the parent of the given cell.
isLeftMouseButton: function(evt)
Returns true if the left mouse button is pressed for the given event.
mxVertexHandler.prototype.isLivePreviewBorder = function()
Called if livePreview is enabled to check if a border should be painted.
mxGraph.prototype.isLoop = function(state)
Returns true if the given cell state is a loop.
mxPopupMenu.prototype.isMenuShowing = function()
Returns true if the menu is showing.
isMetaDown: function(evt)
Returns true if the meta key is pressed for the given event.
mxCellEditor.prototype.isModified = function()
Returns modified.
mxEditor.prototype.isModified = function ()
Returns modified.
isMouseEvent: function(evt)
Returns true if the event was generated using a mouse (not a pen or touch device).
mxGraphHandler.prototype.isMoveEnabled = function()
Returns moveEnabled.
mxConnectionHandler.prototype.isMoveIconToFrontForState = function(state)
Returns true if the state has a HTML label in the graph’s container, otherwise it returns moveIconFront.
mxGraph.prototype.isMultigraph = function()
Returns multigraph as a boolean.
isNaN: function(value)
Returns true if the given value is of type number and isNaN returns true.
isNode: function(value,
nodeName,
attributeName,
attributeValue)
Returns true if the given value is an XML node with the node name and if the optional attribute has the specified value.
isNumeric: function(n)
Returns true if the specified value is numeric, that is, if it is not null, not an empty string, not a HEX number and isNaN returns false.
mxObjectCodec.prototype.isNumericAttribute = function(dec,
attr,
obj)
Returns true if the given XML attribute is a numeric value.
mxGraph.prototype.isOrthogonal = function(edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
mxPolyline.prototype.isPaintBoundsInverted = function()
Returns false.
mxShape.prototype.isPaintBoundsInverted = function()
Returns true if the bounds should be inverted.
mxText.prototype.isPaintBoundsInverted = function()
Inverts the bounds if mxShape.isBoundsInverted returns true or if the horizontal style is false.
mxPanningHandler.prototype.isPanningEnabled = function()
Returns panningEnabled.
mxPanningHandler.prototype.isPanningTrigger = function(me)
Returns true if the given event is a panning trigger for the optional given cell.
mxShape.prototype.isParseVml = function()
Specifies if any VML should be added via insertAdjacentHtml to the DOM.
mxText.prototype.isParseVml = function()
Text shapes do not contain VML markup and do not need to be parsed.
isPopupTrigger: function(evt)
Returns true if the event is a popup trigger.
mxMouseEvent.prototype.isPopupTrigger = function()
Returns true if the event is a popup trigger.
mxPopupMenu.prototype.isPopupTrigger = function(me)
Returns true if the given event is a popupmenu trigger for the optional given cell.
mxGraph.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, the cell returned by getTerminalForPort should be used as the terminal and the port should be referenced by the ID in either the mxConstants.STYLE_SOURCE_PORT or the or the mxConstants.STYLE_TARGET_PORT.
mxHierarchicalLayout.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, its parent is the connecting vertex in terms of graph traversal
mxSwimlaneLayout.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, its parent is the connecting vertex in terms of graph traversal
mxGraph.prototype.isPortsEnabled = function()
Returns portsEnabled as a boolean.
mxEditor.prototype.isPropertiesVisible = function ()
Returns true if the properties dialog is currently visible.
mxXmlRequest.prototype.isReady = function()
Returns true if the response is ready.
mxGraph.prototype.isRecursiveResize = function()
Returns recursiveResize.
codec.isReference = function(obj,
attr,
value,
isWrite)
Returns true for the child attribute if the child cell had a previous parent or if we’re reading the child as an attribute rather than a child node, in which case it’s always a reference.
mxObjectCodec.prototype.isReference = function(obj,
attr,
value,
write)
Returns true if the given fieldname is to be treated as a textual reference (ID).
isRelativeUrl: function(url)
Returns true if the given URL is relative.
mxGraphHandler.prototype.isRemoveCellsFromParent = function()
Returns removeCellsFromParent.
mxEdgeHandler.prototype.isRemovePointEvent = function(evt)
Returns true if the given event is a trigger to remove a point.
mxGraphView.prototype.isRendering = function()
Returns rendering.
mxWindow.prototype.isResizable = function()
Returns true if the window is resizable.
mxGraph.prototype.isResizeContainer = function()
Returns resizeContainer.
mxSwimlaneManager.prototype.isResizeEnabled = function()
Returns resizeEnabled.
isRightMouseButton: function(evt)
Returns true if the right mouse button was pressed.
mxGraphModel.prototype.isRoot = function(cell)
Returns true if the given cell is the root of the model and a non-null value.
mxGraphView.prototype.isScrollEvent = function(evt)
Returns true if the event origin is one of the scrollbars of the container in IE.
mxGraphSelectionModel.prototype.isSelected = function(cell)
Returns true if the given mxCell is selected.
mxGraphHandler.prototype.isSelectEnabled = function()
Returns selectEnabled.
mxEdgeHandler.prototype.isSelectionDashed = function()
Returns mxConstants.EDGE_SELECTION_DASHED.
mxVertexHandler.prototype.isSelectionDashed = function()
Returns mxConstants.VERTEX_SELECTION_DASHED.
mxGraph.prototype.isSelectionEmpty = function()
Returns true if the selection is empty.
mxPopupMenuHandler.prototype.isSelectOnPopup = function(me)
Hook for returning if a cell should be selected for a given mxMouseEvent.
mxCellRenderer.prototype.isShapeEvent = function(state,
evt)
Returns true if the event is for the shape of the given state.
isShiftDown: function(evt)
Returns true if the shift key is pressed for the given event.
mxSpaceManager.prototype.isShiftDownwards = function()
Returns true if events are handled.
mxSpaceManager.prototype.isShiftRightwards = function()
Returns true if events are handled.
mxUndoableEdit.prototype.isSignificant = function()
Returns significant.
mxGraphSelectionModel.prototype.isSingleSelection = function()
Returns singleSelection as a boolean.
mxVertexHandler.prototype.isSizerVisible = function(index)
Returns true if the sizer for the given index is visible.
mxMouseEvent.prototype.isSource = function(shape)
Returns true if the given mxShape is the source of evt.
mxGraph.prototype.isSplitEnabled = function()
Returns splitEnabled as a boolean.
mxGraph.prototype.isSplitTarget = function(target,
cells,
evt)
Returns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.
mxConnectionHandler.prototype.isStartEvent = function(me)
Returns true if the given mouse down event should start this handler.
mxConstraintHandler.prototype.isStateIgnored = function(state,
source)
Returns true if the given state should be ignored.
mxConnectionHandler.prototype.isStopEvent = function(me)
Returns true if the given mouse up event should stop this handler.
mxGraph.prototype.isSwimlane = function (cell)
Returns true if the given cell is a swimlane in the graph.
mxSwimlaneManager.prototype.isSwimlaneIgnored = function(swimlane)
Returns true if the given swimlane should be ignored.
mxGraph.prototype.isSwimlaneNesting = function()
Returns swimlaneNesting as a boolean.
mxGraph.prototype.isSwimlaneSelectionEnabled = function()
Returns swimlaneSelectionEnabled as a boolean.
mxGraph.prototype.isSyntheticEventIgnored = function(evtName,
me,
sender)
Hook for ignoring synthetic mouse events after touchend in Firefox.
mxGraph.prototype.isTerminalPointMovable = function(cell,
source)
Returns true if the given terminal point is movable.
mxGraph.prototype.isToggleEvent = function(evt)
Returns true if the given event is a toggle event.
isTouchEvent: function(evt)
Returns true if the event was generated using a touch device (not a pen or mouse).
mxGraph.prototype.isValidAncestor = function(cell,
parent,
recurse)
Returns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.
mxGraph.prototype.isValidConnection = function(source,
target)
Returns true if the given target cell is a valid target for source.
mxGraph.prototype.isValidDropTarget = function(cell,
cells,
evt)
Returns true if the given cell is a valid drop target for the specified cells.
mxSession.prototype.isValidResponse = function(req)
Returns true if the response data in the given mxXmlRequest is valid.
mxGraph.prototype.isValidRoot = function(cell)
Returns true if the given cell is a valid root for the cell display hierarchy.
mxConnectionHandler.prototype.isValidSource = function(cell)
Returns mxGraph.isValidSource for the given source terminal.
mxGraph.prototype.isValidSource = function(cell)
Returns true if the given cell is a valid source for new connections.
mxCellMarker.prototype.isValidState = function(state)
Returns true if the given mxCellState is a valid state.
mxConnectionHandler.prototype.isValidTarget = function(cell)
Returns true.
mxGraph.prototype.isValidTarget = function(cell)
Returns isValidSource for the given cell.
mxCell.prototype.isVertex = function()
Returns true if the cell is a vertex.
mxGraphAbstractHierarchyCell.prototype.isVertex = function()
Returns whether or not this cell is a node
mxGraphHierarchyNode.prototype.isVertex = function()
Returns true.
mxGraphModel.prototype.isVertex = function(cell)
Returns true if the given cell is a vertex.
mxCompactTreeLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxFastOrganicLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxGraphLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isVertexLabelsMovable = function()
Returns vertexLabelsMovable.
mxGraphLayout.prototype.isVertexMovable = function(cell)
Returns a boolean indicating if the given mxCell is movable or bendable by the algorithm.
mxCell.prototype.isVisible = function()
Returns true if the cell is visibile.
mxGraphModel.prototype.isVisible = function(cell)
Returns true if the given mxCell is visible.
isVisible: function()
Returns true if the console is visible.
mxWindow.prototype.isVisible = function()
Returns true if the window is visible.
isVml: function(node)
Returns true if the given node is in the VML namespace.
mxGraph.prototype.isWrapping = function(cell)
This enables wrapping for HTML labels.
diff --git a/docs/js-api/index/General10.html b/docs/js-api/index/General10.html index 15b33c449..aabba83e5 100644 --- a/docs/js-api/index/General10.html +++ b/docs/js-api/index/General10.html @@ -11,17 +11,17 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
J
 jettyPositions, mxCoordinateAssignment
 join, mxCompactTreeLayout
K
 keepEdgesInForeground, mxGraph
 keepFirstLocation, mxStackLayout
 keepOnTop, mxCellHighlight
 keepSelectionVisibleOnZoom, mxGraph
 keyDown, mxKeyHandler
 keyHandler, mxEditor
L
 LABEL_CHANGED
 LABEL_HANDLE, mxEvent
 LABEL_HANDLE_FILLCOLOR, mxConstants
 LABEL_HANDLE_SIZE, mxConstants
 labelChanged, mxGraph
 labels, mxPopupMenu
 labelShape, mxEdgeHandler
 labelsVisible
 language, mxClient
 languages, mxClient
 lastEdgeNode, mxGraphView
 lastHtmlNode, mxGraphView
 lastNode, mxGraphView
 lastSavedResource, mxEditor
 lastSnapshot, mxAutoSaveManager
 lastTouchTime, mxGraph
 lastTouchX, mxGraph
 lastX, mxAbstractCanvas2D
 lastY, mxAbstractCanvas2D
 layeringStage
 layout
 LAYOUT_CELLS
 layoutCells, mxLayoutManager
 layoutDiagram, mxEditor
 layoutLeaf, mxCompactTreeLayout
 layouts, mxCompositeLayout
 layoutSwimlanes, mxEditor
 leave, mxLog
 legacyControlPosition, mxCellRenderer
 length, mxCellState
 levelDistance, mxCompactTreeLayout
 limitX, mxCoordinateAssignment
 LINE_ARCSIZE, mxConstants
 LINE_HEIGHT, mxConstants
 linefeed, mxSession
 lineFeed, mxEditor
 lineOp
 lineTo
 link
 linkAction, mxUtils
 linkInvoke, mxUtils
 livePreview, mxVertexHandler
 load, mxUtils
 loadDefaultBundle, mxResources
 loadInto, mxUtils
 localEdgeProcessing
 LOCKED_HANDLE_FILLCOLOR, mxConstants
 lookup, mxCodec
 Loop, mxEdgeStyle
 ltrim, mxUtils
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
J
 jettyPositions, mxCoordinateAssignment
 join, mxCompactTreeLayout
K
 keepEdgesInForeground, mxGraph
 keepFirstLocation, mxStackLayout
 keepOnTop, mxCellHighlight
 keepSelectionVisibleOnZoom, mxGraph
 keyDown, mxKeyHandler
 keyHandler, mxEditor
L
 LABEL_CHANGED
 LABEL_HANDLE, mxEvent
 LABEL_HANDLE_FILLCOLOR, mxConstants
 LABEL_HANDLE_SIZE, mxConstants
 labelChanged, mxGraph
 labels, mxPopupMenu
 labelShape, mxEdgeHandler
 labelsVisible
 language, mxClient
 languages, mxClient
 lastEdgeNode, mxGraphView
 lastHtmlNode, mxGraphView
 lastNode, mxGraphView
 lastSavedResource, mxEditor
 lastSnapshot, mxAutoSaveManager
 lastTouchTime, mxGraph
 lastTouchX, mxGraph
 lastX, mxAbstractCanvas2D
 lastY, mxAbstractCanvas2D
 layeringStage
 layout
 LAYOUT_CELLS
 layoutCells, mxLayoutManager
 layoutDiagram, mxEditor
 layoutLeaf, mxCompactTreeLayout
 layouts, mxCompositeLayout
 layoutSwimlanes, mxEditor
 leave, mxLog
 legacyControlPosition, mxCellRenderer
 length, mxCellState
 levelDistance, mxCompactTreeLayout
 limitX, mxCoordinateAssignment
 LINE_ARCSIZE, mxConstants
 LINE_HEIGHT, mxConstants
 linefeed, mxSession
 lineFeed, mxEditor
 lineOp
 lineTo
 link
 linkAction, mxUtils
 linkInvoke, mxUtils
 livePreview, mxVertexHandler
 load, mxUtils
 loadDefaultBundle, mxResources
 loadInto, mxUtils
 localEdgeProcessing
 LOCKED_HANDLE_FILLCOLOR, mxConstants
 lookup, mxCodec
 Loop, mxEdgeStyle
 ltrim, mxUtils
-
mxCoordinateAssignment.prototype.jettyPositions
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.
mxCompactTreeLayout.prototype.join = function(node)
+
mxCoordinateAssignment.prototype.jettyPositions
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.
mxCompactTreeLayout.prototype.join = function(node)
-
mxGraph.prototype.keepEdgesInForeground
Specifies if edges should appear in the foreground regardless of their order in the model.
mxStackLayout.prototype.keepFirstLocation
Boolean indicating if the location of the first cell should be kept, that is, it will not be moved to x0 or y0.
mxCellHighlight.prototype.keepOnTop
Specifies if the highlights should appear on top of everything else in the overlay pane.
mxGraph.prototype.keepSelectionVisibleOnZoom
Specifies if the viewport should automatically contain the selection cells after a zoom operation.
mxKeyHandler.prototype.keyDown = function(evt)
Handles the event by invoking the function bound to the respective keystroke if mxGraph.isEnabled, isEnabled and isGraphEvent all return true for the given event and mxGraph.isEditing returns false.
mxEditor.prototype.keyHandler
Holds a mxDefaultKeyHandler for handling keyboard events.
+
mxGraph.prototype.keepEdgesInForeground
Specifies if edges should appear in the foreground regardless of their order in the model.
mxStackLayout.prototype.keepFirstLocation
Boolean indicating if the location of the first cell should be kept, that is, it will not be moved to x0 or y0.
mxCellHighlight.prototype.keepOnTop
Specifies if the highlights should appear on top of everything else in the overlay pane.
mxGraph.prototype.keepSelectionVisibleOnZoom
Specifies if the viewport should automatically contain the selection cells after a zoom operation.
mxKeyHandler.prototype.keyDown = function(evt)
Handles the event by invoking the function bound to the respective keystroke if mxGraph.isEnabled, isEnabled and isGraphEvent all return true for the given event and mxGraph.isEditing returns false.
mxEditor.prototype.keyHandler
Holds a mxDefaultKeyHandler for handling keyboard events.
-
Specifies the event name for labelChanged.
Fires between begin- and endUpdate in cellLabelChanged.
Index for the label handle in an mxMouseEvent.
Defines the color to be used for the label handle fill color.
Defines the default size for label handles.
mxGraph.prototype.labelChanged = function(cell,
value,
evt)
Sets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.
mxPopupMenu.prototype.labels
Specifies if any labels should be visible.
mxEdgeHandler.prototype.labelShape
Holds the mxShape that represents the label position.
mxGraph.prototype.labelsVisible
Specifies if labels should be visible.
mxOutline.prototype.labelsVisible
Specifies if labels should be visible in the outline.
Defines the language of the client, eg.
Defines the optional array of all supported language extensions.
mxGraphView.prototype.lastEdgeNode
During validation, this contains the last edge’s DOM node that was processed.
mxGraphView.prototype.lastHtmlNode
During validation, this contains the last HTML DOM node that was processed.
mxGraphView.prototype.lastNode
During validation, this contains the last DOM node that was processed.
mxEditor.prototype.lastSavedResource
Specifies the resource key for the last saved info.
mxAutoSaveManager.prototype.lastSnapshot
Used for autosaving.
mxGraph.prototype.lastTouchTime
Holds the time of the last touch event for double click detection.
Holds the x-coordinate of the last touch event for double tap detection.
mxAbstractCanvas2D.prototype.lastX
Holds the last x coordinate.
mxAbstractCanvas2D.prototype.lastY
Holds the last y coordinate.
mxHierarchicalLayout.prototype.layeringStage = function()
Implements first stage of a Sugiyama layout.
mxSwimlaneLayout.prototype.layeringStage = function()
Implements first stage of a Sugiyama layout.
mxCompactTreeLayout.prototype.layout = function(node)
Starts the actual compact tree layout algorithm at the given node.
mxCoordinateAssignment.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxMedianHybridCrossingReduction.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxMinimumCycleRemover.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxParallelEdgeLayout.prototype.layout = function(parallels)
Lays out the parallel edges in the given array.
mxSwimlaneOrdering.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
Specifies the event name for layoutCells.
Fires between begin- and endUpdate after all cells have been layouted in layoutCells.
mxLayoutManager.prototype.layoutCells = function(cells)
Executes all layouts which have been scheduled during the changes.
mxEditor.prototype.layoutDiagram
Specifies if the top-level elements in the diagram should be layed out using a vertical or horizontal stack depending on the setting of horizontalFlow.
mxCompactTreeLayout.prototype.layoutLeaf = function(node)
mxCompositeLayout.prototype.layouts
Holds the array of mxGraphLayouts that this layout contains.
mxEditor.prototype.layoutSwimlanes
Specifies if the children of swimlanes should be layed out, either vertically or horizontally depending on horizontalFlow.
leave: function(string,
t0)
Writes the specified string to the console if TRACE is true and computes the difference between the current time and t0 in milliseconds.
mxCellRenderer.prototype.legacyControlPosition
Specifies if the folding icon should ignore the horizontal orientation of a swimlane.
mxCellState.prototype.length
Caches the length of an edge.
mxCompactTreeLayout.prototype.levelDistance
Holds the levelDistance.
mxCoordinateAssignment.prototype.limitX
The maximum x value this positioning lays up to
Defines the size of the arcs for rounded edges.
Defines the default line height for text labels.
mxSession.prototype.linefeed
Used for encoding linefeeds.
Character to be used for encoding linefeeds in save.
mxAbstractCanvas2D.prototype.lineOp
Contains the string used for moving in paths.
mxVmlCanvas2D.prototype.lineOp
Contains the string used for moving in paths.
mxAbstractCanvas2D.prototype.lineTo = function(x,
y)
Draws a line to the given coordinates.
mxXmlCanvas2D.prototype.lineTo = function(x,
y)
Draws a line to the given coordinates.
link: function(rel,
href,
doc)
Adds a link node to the head of the document.
link: function(parent,
text,
funct,
pad)
Adds a hyperlink to the specified parent and invokes the given function when the link is clicked.
linkAction: function(parent,
text,
editor,
action,
pad)
Adds a hyperlink to the specified parent that invokes action on the specified editor.
linkInvoke: function(parent,
text,
editor,
functName,
arg,
pad)
Adds a hyperlink to the specified parent that invokes the specified function on the editor passing along the specified argument.
mxVertexHandler.prototype.livePreview
Specifies if resize should change the cell in-place.
load: function(url)
Loads the specified URL synchronously and returns the mxXmlRequest.
Specifies if the default file for a given basename should be loaded.
loadInto: function(url,
doc,
onload)
Loads the specified URL asynchronously into the specified document, invoking onload after the document has been loaded.
mxCompactTreeLayout.prototype.localEdgeProcessing = function(node)
Moves the specified node and all of its children by the given amount.
mxCoordinateAssignment.prototype.localEdgeProcessing = function(model)
Separates the x position of edges as they connect to vertices
Defines the color to be used for the locked handle fill color.
mxCodec.prototype.lookup = function(id)
Hook for subclassers to implement a custom lookup mechanism for cell IDs.
Loop: function (state,
source,
target,
points,
result)
Implements a self-reference, aka.
ltrim: function(str,
chars)
Strips all whitespaces from the beginning of the string.
+
Specifies the event name for labelChanged.
Fires between begin- and endUpdate in cellLabelChanged.
Index for the label handle in an mxMouseEvent.
Defines the color to be used for the label handle fill color.
Defines the default size for label handles.
mxGraph.prototype.labelChanged = function(cell,
value,
evt)
Sets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.
mxPopupMenu.prototype.labels
Specifies if any labels should be visible.
mxEdgeHandler.prototype.labelShape
Holds the mxShape that represents the label position.
mxGraph.prototype.labelsVisible
Specifies if labels should be visible.
mxOutline.prototype.labelsVisible
Specifies if labels should be visible in the outline.
Defines the language of the client, eg.
Defines the optional array of all supported language extensions.
mxGraphView.prototype.lastEdgeNode
During validation, this contains the last edge’s DOM node that was processed.
mxGraphView.prototype.lastHtmlNode
During validation, this contains the last HTML DOM node that was processed.
mxGraphView.prototype.lastNode
During validation, this contains the last DOM node that was processed.
mxEditor.prototype.lastSavedResource
Specifies the resource key for the last saved info.
mxAutoSaveManager.prototype.lastSnapshot
Used for autosaving.
mxGraph.prototype.lastTouchTime
Holds the time of the last touch event for double click detection.
Holds the x-coordinate of the last touch event for double tap detection.
mxAbstractCanvas2D.prototype.lastX
Holds the last x coordinate.
mxAbstractCanvas2D.prototype.lastY
Holds the last y coordinate.
mxHierarchicalLayout.prototype.layeringStage = function()
Implements first stage of a Sugiyama layout.
mxSwimlaneLayout.prototype.layeringStage = function()
Implements first stage of a Sugiyama layout.
mxCompactTreeLayout.prototype.layout = function(node)
Starts the actual compact tree layout algorithm at the given node.
mxCoordinateAssignment.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxMedianHybridCrossingReduction.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxMinimumCycleRemover.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxParallelEdgeLayout.prototype.layout = function(parallels)
Lays out the parallel edges in the given array.
mxSwimlaneOrdering.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
Specifies the event name for layoutCells.
Fires between begin- and endUpdate after all cells have been layouted in layoutCells.
mxLayoutManager.prototype.layoutCells = function(cells)
Executes all layouts which have been scheduled during the changes.
mxEditor.prototype.layoutDiagram
Specifies if the top-level elements in the diagram should be layed out using a vertical or horizontal stack depending on the setting of horizontalFlow.
mxCompactTreeLayout.prototype.layoutLeaf = function(node)
mxCompositeLayout.prototype.layouts
Holds the array of mxGraphLayouts that this layout contains.
mxEditor.prototype.layoutSwimlanes
Specifies if the children of swimlanes should be layed out, either vertically or horizontally depending on horizontalFlow.
leave: function(string,
t0)
Writes the specified string to the console if TRACE is true and computes the difference between the current time and t0 in milliseconds.
mxCellRenderer.prototype.legacyControlPosition
Specifies if the folding icon should ignore the horizontal orientation of a swimlane.
mxCellState.prototype.length
Caches the length of an edge.
mxCompactTreeLayout.prototype.levelDistance
Holds the levelDistance.
mxCoordinateAssignment.prototype.limitX
The maximum x value this positioning lays up to
Defines the size of the arcs for rounded edges.
Defines the default line height for text labels.
mxSession.prototype.linefeed
Used for encoding linefeeds.
Character to be used for encoding linefeeds in save.
mxAbstractCanvas2D.prototype.lineOp
Contains the string used for moving in paths.
mxVmlCanvas2D.prototype.lineOp
Contains the string used for moving in paths.
mxAbstractCanvas2D.prototype.lineTo = function(x,
y)
Draws a line to the given coordinates.
mxXmlCanvas2D.prototype.lineTo = function(x,
y)
Draws a line to the given coordinates.
link: function(rel,
href,
doc)
Adds a link node to the head of the document.
link: function(parent,
text,
funct,
pad)
Adds a hyperlink to the specified parent and invokes the given function when the link is clicked.
linkAction: function(parent,
text,
editor,
action,
pad)
Adds a hyperlink to the specified parent that invokes action on the specified editor.
linkInvoke: function(parent,
text,
editor,
functName,
arg,
pad)
Adds a hyperlink to the specified parent that invokes the specified function on the editor passing along the specified argument.
mxVertexHandler.prototype.livePreview
Specifies if resize should change the cell in-place.
load: function(url)
Loads the specified URL synchronously and returns the mxXmlRequest.
Specifies if the default file for a given basename should be loaded.
loadInto: function(url,
doc,
onload)
Loads the specified URL asynchronously into the specified document, invoking onload after the document has been loaded.
mxCompactTreeLayout.prototype.localEdgeProcessing = function(node)
Moves the specified node and all of its children by the given amount.
mxCoordinateAssignment.prototype.localEdgeProcessing = function(model)
Separates the x position of edges as they connect to vertices
Defines the color to be used for the locked handle fill color.
mxCodec.prototype.lookup = function(id)
Hook for subclassers to implement a custom lookup mechanism for cell IDs.
Loop: function (state,
source,
target,
points,
result)
Implements a self-reference, aka.
ltrim: function(str,
chars)
Strips all whitespaces from the beginning of the string.
diff --git a/docs/js-api/index/General11.html b/docs/js-api/index/General11.html index b02ea7ae7..20810e315 100644 --- a/docs/js-api/index/General11.html +++ b/docs/js-api/index/General11.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 maintainEdgeParent, mxGraphModel
 maintainSwimlanes, mxEditor
 makeDraggable, mxUtils
 manageSizers, mxVertexHandler
 map, mxDictionary
 mapping, mxObjectCodec
 marginBottom, mxStackLayout
 marginLeft, mxStackLayout
 marginRight, mxStackLayout
 marginTop, mxStackLayout
 mark
 MARK
 markCell, mxCellMarker
 markedState, mxCellMarker
 marker
 markers, mxMarker
 matchHtmlAlignment, mxSvgCanvas2D
 max, mxMultiplicity
 MAX_HOTSPOT_SIZE, mxConstants
 maxCells, mxGraphHandler
 maxChainDfs, mxSwimlaneModel
 maxFitScale, mxGraph
 maxHandlers, mxSelectionCellsHandler
 maxHeight, mxCylinder
 MAXIMIZE
 maximizeImage, mxWindow
 maximumContainerSize, mxGraph
 maximumGraphBounds, mxGraph
 maxIterations
 maxNoImprovementIterations, mxMedianHybridCrossingReduction
 maxRank
 maxRankHeight, mxCompactTreeLayout
 MedianCellSorter
 medianPos, mxCoordinateAssignment
 medianRank, mxMedianHybridCrossingReduction
 medianValue
 medianXValue, mxCoordinateAssignment
 merge, mxCompactTreeLayout
 mergeChildren, mxGraphModel
 method, mxXmlRequest
 min, mxMultiplicity
 MIN_HOTSPOT_SIZE, mxConstants
 minDistanceLimit, mxFastOrganicLayout
 minDistanceLimitSquared, mxFastOrganicLayout
 minEdgeJetty
 minFitScale, mxGraph
 MINIMIZE
 minimizeImage, mxWindow
 minimumContainerSize, mxGraph
 minimumGraphSize, mxGraph
 minimumSize
 minNode, mxCoordinateAssignment
 minPageBreakDist, mxGraph
 minPath, mxCoordinateAssignment
 minRank, mxGraphAbstractHierarchyCell
 mixedModeHtml, mxRectangleShape
 mod, mxUtils
 model
 modified
 MOUSE_DOWN, mxEvent
 MOUSE_MOVE, mxEvent
 MOUSE_UP, mxEvent
 mouseDown
 mouseDownCounter, mxConnectionHandler
 mouseListeners, mxGraph
 mouseMove
 mouseUp
 move, mxGuide
 MOVE
 MOVE_CELLS
 MOVE_END
 MOVE_START
 moveCell
 moveCells
 moveChildren, mxVertexHandler
 moveCircle, mxCircleLayout
 moveEnabled, mxGraphHandler
 moveHandler
 moveIconBack, mxConnectionHandler
 moveIconFront, mxConnectionHandler
 moveLabel, mxEdgeHandler
 moveNode, mxCompactTreeLayout
 moveOp
 moveParent
 movePreviewAway, mxConnectionHandler
 movePropertiesDialog, mxEditor
 moveState, mxCellStatePreview
 moveTo
 moveTree, mxCompactTreeLayout
 multigraph, mxGraph
 multiplicities, mxGraph
 mxAbstractCanvas2D
 mxActor
 mxAnimation
 mxArrow
 mxAutoSaveManager
 mxCell
 mxCellAttributeChange
 mxCellCodec
 mxCellEditor
 mxCellHighlight
 mxCellMarker
 mxCellOverlay
 mxCellPath
 mxCellRenderer
 mxCellState
 mxCellStatePreview
 mxCellTracker
 mxChildChange
 mxChildChangeCodec
 mxCircleLayout
 mxClient
 mxClipboard
 mxCloud
 mxCodec
 mxCodecRegistry
 mxCollapseChange
 mxCompactTreeLayout
 mxCompositeLayout
 mxConnectionConstraint
 mxConnectionHandler
 mxConnector
 mxConstants
 mxConstraintHandler
 mxCoordinateAssignment
 mxCurrentRootChange
 mxCylinder
 mxDefaultKeyHandler
 mxDefaultKeyHandlerCodec
 mxDefaultPopupMenu
 mxDefaultPopupMenuCodec
 mxDefaultToolbar
 mxDefaultToolbarCodec
 mxDictionary
 mxDivResizer
 mxDoubleEllipse
 mxDragSource
 mxEdgeHandler
 mxEdgeLabelLayout
 mxEdgeSegmentHandler.js
 mxEdgeStyle
 mxEditor
 mxEditorCodec
 mxEffects
 mxElbowEdgeHandler
 mxEllipse
 mxEvent
 mxEventObject
 mxEventSource
 mxFastOrganicLayout
 mxForm
 mxGenericChangeCodec
 mxGeometry
 mxGeometryChange
 mxGraph
 mxgraph=seen
 mxGraphAbstractHierarchyCell
 mxGraphCodec
 mxGraphHandler
 mxGraphHierarchyEdge
 mxGraphHierarchyModel
 mxGraphHierarchyNode
 mxGraphLayout
 mxGraphModel
 mxGraphSelectionModel
 mxGraphView
 mxGraphViewCodec
 mxGuide
 mxHexagon
 mxHierarchicalLayout
 mxHierarchicalLayoutStage
 mxImage
 mxImageBundle
 mxImageExport
 mxImageShape
 mxKeyHandler
 mxLabel
 mxLayoutManager
 mxLine
 mxLoadResources, mxClient
 mxLoadStylesheets, mxClient
 mxLog
 mxMarker
 mxMedianHybridCrossingReduction
 mxMinimumCycleRemover
 mxModelCodec
 mxMorphing
 mxMouseEvent
 mxMultiplicity
 mxObjectCodec
 mxObjectIdentity
 mxOutline
 mxPanningHandler
 mxPanningManager
 mxParallelEdgeLayout
 mxPartitionLayout
 mxPerimeter
 mxPoint
 mxPolyline
 mxPopupMenu
 mxPopupMenuHandler, mxPanningHandler
 mxPrintPreview
 mxRectangle
 mxRectangleShape
 mxResourceExtension, mxClient
 mxResources
 mxRhombus
 mxRootChange
 mxRootChangeCodec
 mxRubberband
 mxSelectionCellsHandler
 mxSelectionChange
 mxSession
 mxShape
 mxSpaceManager
 mxStackLayout
 mxStencil
 mxStencilRegistry
 mxStyleChange
 mxStyleRegistry
 mxStylesheet
 mxStylesheetCodec
 mxSvgCanvas2D
 mxSwimlane
 mxSwimlaneLayout
 mxSwimlaneManager
 mxSwimlaneModel
 mxSwimlaneOrdering
 mxTemporaryCellStates
 mxTerminalChange
 mxTerminalChangeCodec
 mxText
 mxToolbar
 mxTooltipHandler
 mxTransient, mxCell
 mxTriangle
 mxUndoableEdit
 mxUndoManager
 mxUrlConverter
 mxUtils
 mxValueChange
 mxVertexHandler
 mxVisibleChange
 mxVmlCanvas2D
 mxWindow
 mxXmlCanvas2D
 mxXmlRequest
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 maintainEdgeParent, mxGraphModel
 maintainSwimlanes, mxEditor
 makeDraggable, mxUtils
 manageSizers, mxVertexHandler
 map, mxDictionary
 mapping, mxObjectCodec
 marginBottom, mxStackLayout
 marginLeft, mxStackLayout
 marginRight, mxStackLayout
 marginTop, mxStackLayout
 mark
 MARK
 markCell, mxCellMarker
 markedState, mxCellMarker
 marker
 markers, mxMarker
 matchHtmlAlignment, mxSvgCanvas2D
 max, mxMultiplicity
 MAX_HOTSPOT_SIZE, mxConstants
 maxCells, mxGraphHandler
 maxChainDfs, mxSwimlaneModel
 maxFitScale, mxGraph
 maxHandlers, mxSelectionCellsHandler
 maxHeight, mxCylinder
 MAXIMIZE
 maximizeImage, mxWindow
 maximumContainerSize, mxGraph
 maximumGraphBounds, mxGraph
 maxIterations
 maxNoImprovementIterations, mxMedianHybridCrossingReduction
 maxRank
 maxRankHeight, mxCompactTreeLayout
 MedianCellSorter
 medianPos, mxCoordinateAssignment
 medianRank, mxMedianHybridCrossingReduction
 medianValue
 medianXValue, mxCoordinateAssignment
 merge, mxCompactTreeLayout
 mergeChildren, mxGraphModel
 method, mxXmlRequest
 min, mxMultiplicity
 MIN_HOTSPOT_SIZE, mxConstants
 minDistanceLimit, mxFastOrganicLayout
 minDistanceLimitSquared, mxFastOrganicLayout
 minEdgeJetty
 minFitScale, mxGraph
 MINIMIZE
 minimizeImage, mxWindow
 minimumContainerSize, mxGraph
 minimumGraphSize, mxGraph
 minimumSize
 minNode, mxCoordinateAssignment
 minPageBreakDist, mxGraph
 minPath, mxCoordinateAssignment
 minRank, mxGraphAbstractHierarchyCell
 mixedModeHtml, mxRectangleShape
 mod, mxUtils
 model
 modified
 MOUSE_DOWN, mxEvent
 MOUSE_MOVE, mxEvent
 MOUSE_UP, mxEvent
 mouseDown
 mouseDownCounter, mxConnectionHandler
 mouseListeners, mxGraph
 mouseMove
 mouseUp
 move, mxGuide
 MOVE
 MOVE_CELLS
 MOVE_END
 MOVE_START
 moveCell
 moveCells
 moveChildren, mxVertexHandler
 moveCircle, mxCircleLayout
 moveEnabled, mxGraphHandler
 moveHandler
 moveIconBack, mxConnectionHandler
 moveIconFront, mxConnectionHandler
 moveLabel, mxEdgeHandler
 moveNode, mxCompactTreeLayout
 moveOp
 moveParent
 movePreviewAway, mxConnectionHandler
 movePropertiesDialog, mxEditor
 moveState, mxCellStatePreview
 moveTo
 moveTree, mxCompactTreeLayout
 multigraph, mxGraph
 multiplicities, mxGraph
 mxAbstractCanvas2D
 mxActor
 mxAnimation
 mxArrow
 mxAutoSaveManager
 mxCell
 mxCellAttributeChange
 mxCellCodec
 mxCellEditor
 mxCellHighlight
 mxCellMarker
 mxCellOverlay
 mxCellPath
 mxCellRenderer
 mxCellState
 mxCellStatePreview
 mxCellTracker
 mxChildChange
 mxChildChangeCodec
 mxCircleLayout
 mxClient
 mxClipboard
 mxCloud
 mxCodec
 mxCodecRegistry
 mxCollapseChange
 mxCompactTreeLayout
 mxCompositeLayout
 mxConnectionConstraint
 mxConnectionHandler
 mxConnector
 mxConstants
 mxConstraintHandler
 mxCoordinateAssignment
 mxCurrentRootChange
 mxCylinder
 mxDefaultKeyHandler
 mxDefaultKeyHandlerCodec
 mxDefaultPopupMenu
 mxDefaultPopupMenuCodec
 mxDefaultToolbar
 mxDefaultToolbarCodec
 mxDictionary
 mxDivResizer
 mxDoubleEllipse
 mxDragSource
 mxEdgeHandler
 mxEdgeLabelLayout
 mxEdgeSegmentHandler.js
 mxEdgeStyle
 mxEditor
 mxEditorCodec
 mxEffects
 mxElbowEdgeHandler
 mxEllipse
 mxEvent
 mxEventObject
 mxEventSource
 mxFastOrganicLayout
 mxForm
 mxGenericChangeCodec
 mxGeometry
 mxGeometryChange
 mxGraph
 mxgraph=seen
 mxGraphAbstractHierarchyCell
 mxGraphCodec
 mxGraphHandler
 mxGraphHierarchyEdge
 mxGraphHierarchyModel
 mxGraphHierarchyNode
 mxGraphLayout
 mxGraphModel
 mxGraphSelectionModel
 mxGraphView
 mxGraphViewCodec
 mxGuide
 mxHexagon
 mxHierarchicalLayout
 mxHierarchicalLayoutStage
 mxImage
 mxImageBundle
 mxImageExport
 mxImageShape
 mxKeyHandler
 mxLabel
 mxLayoutManager
 mxLine
 mxLoadResources, mxClient
 mxLoadStylesheets, mxClient
 mxLog
 mxMarker
 mxMedianHybridCrossingReduction
 mxMinimumCycleRemover
 mxModelCodec
 mxMorphing
 mxMouseEvent
 mxMultiplicity
 mxObjectCodec
 mxObjectIdentity
 mxOutline
 mxPanningHandler
 mxPanningManager
 mxParallelEdgeLayout
 mxPartitionLayout
 mxPerimeter
 mxPoint
 mxPolyline
 mxPopupMenu
 mxPopupMenuHandler, mxPanningHandler
 mxPrintPreview
 mxRectangle
 mxRectangleShape
 mxResourceExtension, mxClient
 mxResources
 mxRhombus
 mxRootChange
 mxRootChangeCodec
 mxRubberband
 mxSelectionCellsHandler
 mxSelectionChange
 mxSession
 mxShape
 mxSpaceManager
 mxStackLayout
 mxStencil
 mxStencilRegistry
 mxStyleChange
 mxStyleRegistry
 mxStylesheet
 mxStylesheetCodec
 mxSvgCanvas2D
 mxSwimlane
 mxSwimlaneLayout
 mxSwimlaneManager
 mxSwimlaneModel
 mxSwimlaneOrdering
 mxTemporaryCellStates
 mxTerminalChange
 mxTerminalChangeCodec
 mxText
 mxToolbar
 mxTooltipHandler
 mxTransient, mxCell
 mxTriangle
 mxUndoableEdit
 mxUndoManager
 mxUrlConverter
 mxUtils
 mxValueChange
 mxVertexHandler
 mxVisibleChange
 mxVmlCanvas2D
 mxWindow
 mxXmlCanvas2D
 mxXmlRequest
-
mxGraphModel.prototype.maintainEdgeParent
Specifies if edges should automatically be moved into the nearest common ancestor of their terminals.
mxEditor.prototype.maintainSwimlanes
Specifies if the swimlanes should be kept at the same width or height depending on the setting of horizontalFlow.
makeDraggable: function(element,
graphF,
funct,
dragElement,
dx,
dy,
autoscroll,
scalePreview,
highlightDropTargets,
getDropTarget)
Configures the given DOM element to act as a drag source for the specified graph.
mxVertexHandler.prototype.manageSizers
Specifies if sizers should be hidden and spaced if the vertex is small.
Stores the (key, value) pairs in this dictionary.
mxObjectCodec.prototype.mapping
Maps from from fieldnames to XML attribute names.
mxStackLayout.prototype.marginBottom
Top margin for the child area.
mxStackLayout.prototype.marginLeft
Top margin for the child area.
mxStackLayout.prototype.marginRight
Top margin for the child area.
mxStackLayout.prototype.marginTop
Top margin for the child area.
Marks the markedState and fires a mark event.
mxCellMarker.prototype.mark = function()
Marks the markedState and fires a mark event.
Fires after a cell has been marked or unmarked.
Specifies the event name for mark.
mxCellMarker.prototype.markCell = function(cell,
color)
Marks the given cell using the given color, or validColor if no color is specified.
mxCellMarker.prototype.markedState
Holds the marked mxCellState.
mxConnectionHandler.prototype.marker
Holds the mxTerminalMarker used for finding source and target cells.
mxEdgeHandler.prototype.marker
Holds the mxTerminalMarker which is used for highlighting terminals.
Maps from markers names to functions to paint the markers.
mxSvgCanvas2D.prototype.matchHtmlAlignment
Specifies if plain text output should match the vertical HTML alignment.
mxMultiplicity.prototype.max
Defines the maximum number of connections for which this rule applies.
Defines the maximum size in pixels of the portion of the cell which is to be used as a connectable region.
mxGraphHandler.prototype.maxCells
Defines the maximum number of cells to paint subhandles for.
mxSwimlaneModel.prototype.maxChainDfs = function(parent,
root,
connectingEdge,
seen,
chainCount)
Performs a depth first search on the internal hierarchy model.
mxGraph.prototype.maxFitScale
Specifies the maximum scale to be applied in fit.
mxSelectionCellsHandler.prototype.maxHandlers
Defines the maximum number of handlers to paint individually.
mxCylinder.prototype.maxHeight
Defines the maximum height of the top and bottom part of the cylinder shape.
Specifies the event name for maximize.
Fires after the window is maximized.
mxWindow.prototype.maximizeImage
URL of the image to be used for the maximize icon in the titlebar.
mxGraph.prototype.maximumContainerSize
mxRectangle that specifies the maximum size of the container if resizeContainer is true.
mxGraph.prototype.maximumGraphBounds
mxRectangle that specifies the area in which all cells in the diagram should be placed.
mxCoordinateAssignment.prototype.maxIterations
The number of heuristic iterations to run.
mxFastOrganicLayout.prototype.maxIterations
Total number of iterations to run the layout though.
mxMedianHybridCrossingReduction.prototype.maxIterations
The maximum number of iterations to perform whilst reducing edge crossings.
mxMedianHybridCrossingReduction.prototype.maxNoImprovementIterations
The total number of crossings found in the best configuration so far
mxGraphAbstractHierarchyCell.prototype.maxRank
The maximum rank this cell occupies.
mxGraphHierarchyModel.prototype.maxRank
Stores the largest rank number allocated
mxSwimlaneModel.prototype.maxRank
Stores the largest rank number allocated
mxCompactTreeLayout.prototype.maxRankHeight
An array of the maximum height of cells (relative to the layout direction) per rank
A utility class used to track cells whilst sorting occurs on the median values.
function MedianCellSorter()
Constructs a new median cell sorter.
mxCoordinateAssignment.prototype.medianPos = function(i,
model)
Performs one median positioning sweep in one direction
mxMedianHybridCrossingReduction.prototype.medianRank = function(rankValue,
downwardSweep)
Attempts to minimise the median placement of connected cells on this rank and one of the adjacent ranks
MedianCellSorter.prototype.medianValue
The weighted value of the cell stored.
mxMedianHybridCrossingReduction.prototype.medianValue = function(
   connectedCells,
   rankValue
)
Calculates the median rank order positioning for the specified cell using the connected cells on the specified rank.
mxCoordinateAssignment.prototype.medianXValue = function(connectedCells,
rankValue)
Calculates the median position of the connected cell on the specified rank
mxCompactTreeLayout.prototype.merge = function(p1,
p2)
mxGraphModel.prototype.mergeChildren = function(from,
to,
cloneAllEdges)
Merges the children of the given cell into the given target cell inside this model.
mxXmlRequest.prototype.method
Specifies the request method.
mxMultiplicity.prototype.min
Defines the minimum number of connections for which this rule applies.
Defines the minimum size in pixels of the portion of the cell which is to be used as a connectable region.
mxFastOrganicLayout.prototype.minDistanceLimit
Minimal distance limit.
mxFastOrganicLayout.prototype.minDistanceLimitSquared
Cached version of minDistanceLimit squared.
mxCompactTreeLayout.prototype.minEdgeJetty
The minimum distance for an edge jetty from a vertex.
mxCoordinateAssignment.prototype.minEdgeJetty
The minimum distance for an edge jetty from a vertex
mxGraph.prototype.minFitScale
Specifies the minimum scale to be applied in fit.
Specifies the event name for minimize.
Fires after the window is minimized.
mxWindow.prototype.minimizeImage
URL of the image to be used for the minimize icon in the titlebar.
mxGraph.prototype.minimumContainerSize
mxRectangle that specifies the minimum size of the container if resizeContainer is true.
mxGraph.prototype.minimumGraphSize
mxRectangle that specifies the minimum size of the graph.
mxGraphHandler.prototype.minimumSize
Specifies the minimum number of pixels for the width and height of a selection border.
mxWindow.prototype.minimumSize
mxRectangle that specifies the minimum width and height of the window.
mxCoordinateAssignment.prototype.minNode = function(model)
Performs one median positioning sweep in both directions
mxGraph.prototype.minPageBreakDist
Specifies the minimum distance for page breaks to be visible.
mxCoordinateAssignment.prototype.minPath = function(graph,
model)
Straightens out chains of virtual nodes where possibleacade to those stored after this layout processing step has completed.
mxGraphAbstractHierarchyCell.prototype.minRank
The minimum rank this cell occupies.
Allow optimization by replacing VML with HTML.
mod: function(n,
m)
Returns the remainder of division of n by m.
mxGraph.prototype.model
Holds the mxGraphModel that contains the cells to be displayed.
mxHierarchicalLayout.prototype.model
The internal mxGraphHierarchyModel formed of the layout.
mxSession.prototype.model
Reference to the enclosing mxGraphModel.
mxSwimlaneLayout.prototype.model
The internal mxSwimlaneModel formed of the layout.
mxCellEditor.prototype.modified
Specifies if the label has been modified.
mxEditor.prototype.modified
True if the graph has been modified since it was last saved.
Specifies the event name for mouseDown.
Specifies the event name for mouseMove.
Specifies the event name for mouseUp.
mxCellTracker.prototype.mouseDown = function(sender,
me)
Ignores the event.
mxConnectionHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a new connection.
mxDragSource.prototype.mouseDown = function(evt)
Returns the drop target for the given graph and coordinates.
mxEdgeHandler.prototype.mouseDown = function(sender,
me)
Handles the event by checking if a special element of the handler was clicked, in which case the index parameter is non-null.
mxGraphHandler.prototype.mouseDown = function(sender,
me)
Handles the event by selecing the given cell and creating a handle for it.
mxOutline.prototype.mouseDown = function(sender,
me)
Handles the event by starting a translation or zoom.
mxPanningHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating the panning.
mxRubberband.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxSelectionCellsHandler.prototype.mouseDown = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxVertexHandler.prototype.mouseDown = function(sender,
me)
Handles the event if a handle has been clicked.
mxConnectionHandler.prototype.mouseDownCounter
Counts the number of mouseDown events since the start.
mxGraph.prototype.mouseListeners
Holds the mouse event listeners.
mxCellTracker.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting the cell under the mousepointer if it is over the hotspot region of the cell.
mxConnectionHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview edge or by highlighting a possible source or target terminal.
mxDragSource.prototype.mouseMove = function(evt)
Gets the graph for the given event using getGraphForEvent, updates the currentGraph, calling dragEnter and dragExit on the new and old graph, respectively, and invokes dragOver if currentGraph is not null.
mxEdgeHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxGraphHandler.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting possible drop targets and updating the preview.
mxOutline.prototype.mouseMove = function(sender,
me)
Handles the event by previewing the viewrect in graph and updating the rectangle that represents the viewrect in the outline.
mxPanningHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the panning on the graph.
mxRubberband.prototype.mouseMove = function(sender,
me)
Handles the event by updating therubberband selection.
mxSelectionCellsHandler.prototype.mouseMove = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the rubberband selection.
mxVertexHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxCellTracker.prototype.mouseUp = function(sender,
me)
Handles the event by reseting the highlight.
mxConnectionHandler.prototype.mouseUp = function(sender,
me)
Handles the event by inserting the new connection.
mxDragSource.prototype.mouseUp = function(evt)
Processes the mouse up event and invokes drop, dragExit and stopDrag as required.
mxEdgeHandler.prototype.mouseUp = function(sender,
me)
Handles the event to applying the previewed changes on the edge by using moveLabel, connect or changePoints.
mxGraphHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the selection cells.
mxOutline.prototype.mouseUp = function(sender,
me)
Handles the event by applying the translation or zoom to graph.
mxPanningHandler.prototype.mouseUp = function(sender,
me)
Handles the event by setting the translation on the view or showing the popupmenu.
mxRubberband.prototype.mouseUp = function(sender,
me)
Handles the event by selecting the region of the rubberband using mxGraph.selectRegion.
mxSelectionCellsHandler.prototype.mouseUp = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseUp = function(sender,
me)
Handles the event by resetting the tooltip timer or hiding the existing tooltip.
mxVertexHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the geometry.
mxGuide.prototype.move = function(bounds,
delta,
gridEnabled)
Moves the bounds by the given mxPoint and returnt the snapped point.
Specifies the event name for move.
Fires while the window is being moved.
Specifies the event name for moveCells.
Fires between begin- and endUpdate in moveCells.
Specifies the event name for moveEnd.
Fires after the window is moved.
Specifies the event name for moveStart.
Fires before the window is moved.
mxCompositeLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell by calling move on master or the first layout in layouts.
mxGraphLayout.prototype.moveCell = function(cell,
x,
y)
Notified when a cell is being moved in a parent that has automatic layout to update the cell state (eg.
mxPartitionLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxStackLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxGraph.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.
mxGraphHandler.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves the given cells by the specified amount.
mxVertexHandler.prototype.moveChildren = function(cell,
dx,
dy)
Moves the children of the given cell by the given vector.
mxCircleLayout.prototype.moveCircle
Boolean specifying if the circle should be moved to the top, left corner specified by x0 and y0.
mxGraphHandler.prototype.moveEnabled
Specifies if moving is enabled.
mxLayoutManager.prototype.moveHandler
Holds the function that handles the move event.
Holds the function that handles the move event.
mxConnectionHandler.prototype.moveIconBack
Specifies if icons should be moved to the back of the overlay pane.
mxConnectionHandler.prototype.moveIconFront
Specifies if icons should be displayed inside the graph container instead of the overlay pane.
mxEdgeHandler.prototype.moveLabel = function(edgeState,
x,
y)
Changes the coordinates for the label of the given edge.
mxCompactTreeLayout.prototype.moveNode = function(node,
dx,
dy)
Moves the specified node and all of its children by the given amount.
mxAbstractCanvas2D.prototype.moveOp
Contains the string used for moving in paths.
mxVmlCanvas2D.prototype.moveOp
Contains the string used for moving in paths.
mxHierarchicalLayout.prototype.moveParent
Specifies if the parent should be moved if resizeParent is enabled.
mxSwimlaneLayout.prototype.moveParent
Specifies if the parent should be moved if resizeParent is enabled.
mxConnectionHandler.prototype.movePreviewAway
Switch to enable moving the preview away from the mousepointer.
mxEditor.prototype.movePropertiesDialog
Specifies if the properties dialog should be automatically moved near the cell it is displayed for, otherwise the dialog is not moved.
mxCellStatePreview.prototype.moveState = function(state,
dx,
dy,
add,
includeEdges)
mxAbstractCanvas2D.prototype.moveTo = function(x,
y)
Moves the current path the given coordinates.
mxXmlCanvas2D.prototype.moveTo = function(x,
y)
Moves the current path the given point.
mxCompactTreeLayout.prototype.moveTree
Specifies if the tree should be moved to the top, left corner if it is inside a top-level layer.
mxGraph.prototype.multigraph
Specifies if multiple edges in the same direction between the same pair of vertices are allowed.
mxGraph.prototype.multiplicities
An array of mxMultiplicities describing the allowed connections in a graph.
Base class for all canvases.
function mxAbstractCanvas2D()
Constructs a new abstract canvas.
Extends mxShape to implement an actor shape.
function mxActor(bounds,
fill,
stroke,
strokewidth)
Constructs a new actor shape.
Implements a basic animation in JavaScript.
function mxAnimation(delay)
Constructs an animation.
Extends mxShape to implement an arrow shape.
function mxArrow(points,
fill,
stroke,
strokewidth,
arrowWidth,
spacing,
endSize)
Constructs a new arrow shape.
Manager for automatically saving diagrams.
function mxAutoSaveManager(graph)
Constructs a new automatic layout for the given graph.
Cells are the elements of the graph model.
function mxCell(value,
geometry,
style)
Constructs a new cell to be used in a graph model.
Action to change the attribute of a cell’s user object.
function mxCellAttributeChange(cell,
attribute,
value)
Constructs a change of a attribute of the DOM node stored as the value of the given mxCell.
Codec for mxCells.
In-place editor for the graph.
function mxCellEditor(graph)
Constructs a new in-place editor for the specified graph.
A helper class to highlight cells.
function mxCellHighlight(graph,
highlightColor,
strokeWidth,
dashed)
Constructs a cell highlight.
A helper class to process mouse locations and highlight cells.
function mxCellMarker(graph,
validColor,
invalidColor,
hotspot)
Constructs a new cell marker.
Extends mxEventSource to implement a graph overlay, represented by an icon and a tooltip.
function mxCellOverlay(image,
tooltip,
align,
verticalAlign,
offset,
cursor)
Constructs a new overlay using the given image and tooltip.
Implements a mechanism for temporary cell Ids.
Renders cells into a document object model.
function mxCellRenderer()
arrow, rectangle, ellipse, rhombus, image, line, label, cylinder, swimlane, connector, actor and cloud.
Represents the current state of a cell in a given mxGraphView.
function mxCellState(view,
cell,
style)
Constructs a new object that represents the current state of the given cell in the specified view.
Implements a live preview for moving cells.
function mxCellStatePreview(graph)
Constructs a move preview for the given graph.
Event handler that highlights cells.
function mxCellTracker(graph,
color,
funct)
Constructs an event handler that highlights cells.
Action to add or remove a child in a model.
function mxChildChange(model,
parent,
child,
index)
Constructs a change of a child in the specified model.
Codec for mxChildChanges.
Extends mxGraphLayout to implement a circluar layout for a given radius.
function mxCircleLayout(graph,
radius)
Constructs a new circular layout for the specified radius.
Bootstrapping mechanism for the mxGraph thin client.
Singleton that implements a clipboard for graph cells.
Extends mxActor to implement a cloud shape.
function mxCloud(bounds,
fill,
stroke,
strokewidth)
Constructs a new cloud shape.
XML codec for JavaScript object graphs.
function mxCodec(document)
Constructs an XML encoder/decoder for the specified owner document.
Singleton class that acts as a global registry for codecs.
Action to change a cell’s collapsed state in a model.
function mxCollapseChange(model,
cell,
collapsed)
Constructs a change of a collapsed state in the specified model.
Extends mxGraphLayout to implement a compact tree (Moen) algorithm.
function mxCompactTreeLayout(graph,
horizontal,
invert)
Constructs a new compact tree layout for the specified graph and orientation.
Constructs a new fast organic layout for the specified graph.
Constructs a new fast organic layout for the specified graph.
Allows to compose multiple layouts into a single layout.
function mxCompositeLayout(graph,
layouts,
master)
Constructs a new layout using the given layouts.
Defines an object that contains the constraints about how to connect one side of an edge to its terminal.
function mxConnectionConstraint(point,
perimeter)
Constructs a new connection constraint for the given point and boolean arguments.
Graph event handler that creates new connections.
function mxConnectionHandler(graph,
factoryMethod)
Constructs an event handler that connects vertices using the specified factory method to create the new edges.
Extends mxShape to implement a connector shape.
function mxConnector(points,
stroke,
strokewidth)
Constructs a new connector shape.
Defines various global constants.
Handles constraints on connection targets.
function mxConstraintHandler(graph)
Constructs an new constraint handler.
Sets the horizontal locations of node and edge dummy nodes on each layer.
function mxCoordinateAssignment(layout,
intraCellSpacing,
interRankCellSpacing,
orientation,
initialX,
parallelEdgeSpacing)
Creates a coordinate assignment.
Action to change the current root in a view.
function mxCurrentRootChange(view,
root)
Constructs a change of the current root in the given view.
Constructs a change of the current root in the given view.
Extends mxShape to implement an cylinder shape.
function mxCylinder(bounds,
fill,
stroke,
strokewidth)
Constructs a new cylinder shape.
Binds keycodes to actionnames in an editor.
function mxDefaultKeyHandler(editor)
Constructs a new default key handler for the mxEditor.graph in the given mxEditor.
Custom codec for configuring mxDefaultKeyHandlers.
Creates popupmenus for mouse events.
function mxDefaultPopupMenu(config)
Constructs a new popupmenu-factory based on given configuration.
Custom codec for configuring mxDefaultPopupMenus.
Toolbar for the editor.
function mxDefaultToolbar(container,
editor)
Constructs a new toolbar for the given container and editor.
Custom codec for configuring mxDefaultToolbars.
A wrapper class for an associative array with object keys.
Maintains the size of a div element in Internet Explorer.
function mxDivResizer(div,
container)
Constructs an object that maintains the size of a div element when the window is being resized.
Extends mxShape to implement a double ellipse shape.
function mxDoubleEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
Wrapper to create a drag source from a DOM element so that the element can be dragged over a graph and dropped into the graph as a new cell.
function mxDragSource(element,
dropHandler)
Constructs a new drag source for the given element.
Graph event handler that reconnects edges and modifies control points and the edge label location.
function mxEdgeHandler(state)
Constructs an edge handler for the specified mxCellState.
Constructs an edge handler for the specified mxCellState.
Extends mxGraphLayout to implement an edge label layout.
function mxEdgeLabelLayout(graph,
radius)
Constructs a new edge label layout.
Provides various edge styles to be used as the values for mxConstants.STYLE_EDGE in a cell style.
Extends mxEventSource to implement a application wrapper for a graph that adds actions, I/O using mxCodec, auto-layout using mxLayoutManager, command history using undoManager, and standard dialogs and widgets, eg.
function mxEditor(config)
Constructs a new editor.
Codec for mxEditors.
Provides animation effects.
Graph event handler that reconnects edges and modifies control points and the edge label location.
Extends mxShape to implement an ellipse shape.
function mxEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
Cross-browser DOM event support.
The mxEventObject is a wrapper for all properties of a single event.
function mxEventObject(name)
Constructs a new event object with the specified name.
Base class for objects that dispatch named events.
Constructs a new dictionary which allows object to be used as keys.
function mxEventSource(eventSource)
Constructs a new event source.
Extends mxGraphLayout to implement a fast organic layout algorithm.
A simple class for creating HTML forms.
function mxForm(className)
Creates a HTML table using the specified classname.
Codec for mxValueChanges, mxStyleChanges, mxGeometryChanges, mxCollapseChanges and mxVisibleChanges.
var mxGenericChangeCodec = function(obj,
variable)
Factory function that creates a mxObjectCodec for the specified change and fieldname.
Extends mxRectangle to represent the geometry of a cell.
function mxGeometry(x,
y,
width,
height)
Constructs a new object to describe the size and location of a vertex or the control points of an edge.
Action to change a cell’s geometry in a model.
function mxGeometryChange(model,
cell,
geometry)
Constructs a change of a geometry in the specified model.
Extends mxEventSource to implement a graph component for the browser.
function mxGraph(container,
model,
renderHint,
stylesheet)
Constructs a new mxGraph in the specified container.
Set when the editor is started.
An abstraction of an internal hierarchy node or edge
function mxGraphAbstractHierarchyCell()
Constructs a new hierarchical layout algorithm.
Codec for mxGraphs.
Graph event handler that handles selection.
function mxGraphHandler(graph)
Constructs an event handler that creates handles for the selection cells.
An abstraction of a hierarchical edge for the hierarchy layout
function mxGraphHierarchyEdge(edges)
Constructs a hierarchy edge
Internal model of a hierarchical graph.
function mxGraphHierarchyModel(layout,
vertices,
roots,
parent,
tightenToSource)
Creates an internal ordered graph model using the vertices passed in.
An abstraction of a hierarchical edge for the hierarchy layout
function mxGraphHierarchyNode(cell)
Constructs an internal node to represent the specified real graph cell
Base class for all layout algorithms in mxGraph.
function mxGraphLayout(graph)
Constructs a new layout using the given layouts.
Extends mxEventSource to implement a graph model.
function mxGraphModel(root)
Constructs a new graph model.
Implements the selection model for a graph.
function mxGraphSelectionModel(graph)
Constructs a new graph selection model for the given mxGraph.
Extends mxEventSource to implement a view for a graph.
function mxGraphView(graph)
Constructs a new view for the given mxGraph.
Custom encoder for mxGraphViews.
Implements the alignment of selection cells to other cells in the graph.
function mxGuide(graph,
states)
Constructs a new guide object.
Implementation of the hexagon shape.
function mxHexagon()
Constructs a new hexagon shape.
A hierarchical layout algorithm.
function mxHierarchicalLayout(graph,
orientation,
deterministic)
Constructs a new hierarchical layout algorithm.
The specific layout interface for hierarchical layouts.
function mxHierarchicalLayoutStage()
Constructs a new hierarchical layout stage.
Encapsulates the URL, width and height of an image.
function mxImage(src,
width,
height)
Constructs a new image.
Maps from keys to base64 encoded images or file locations.
Creates a new image export instance to be used with an export canvas.
function mxImageExport()
Constructs a new image export.
Extends mxShape to implement an image shape.
function mxImageShape(bounds,
image,
fill,
stroke,
strokewidth)
Constructs a new image shape.
Event handler that listens to keystroke events.
function mxKeyHandler(graph,
target)
Constructs an event handler that executes functions bound to specific keystrokes.
Extends mxShape to implement an image shape with a label.
function mxLabel(bounds,
fill,
stroke,
strokewidth)
Constructs a new label shape.
function mxLayoutManager(graph)
Constructs a new automatic layout for the given graph.
Extends mxShape to implement a horizontal line shape.
function mxLine(bounds,
stroke,
strokewidth)
Constructs a new line shape.
Optional global config variable to toggle loading of the two resource files in mxGraph and mxEditor.
Optional global config variable to toggle loading of the CSS files when the library is initialized.
A singleton class that implements a simple console.
A static class that implements all markers for VML and SVG using a registry.
Sets the horizontal locations of node and edge dummy nodes on each layer.
function mxMedianHybridCrossingReduction(layout)
Creates a coordinate assignment.
An implementation of the first stage of the Sugiyama layout.
function mxMinimumCycleRemover(layout)
Creates a cycle remover for the given internal model.
Codec for mxGraphModels.
Implements animation for morphing cells.
function mxMorphing(graph,
steps,
ease,
delay)
Constructs an animation.
Base class for all mouse events in mxGraph.
function mxMouseEvent(evt,
state)
Constructs a new event object for the given arguments.
Defines invalid connections along with the error messages that they produce.
function mxMultiplicity(source,
type,
attr,
value,
min,
max,
validNeighbors,
countError,
typeError,
validNeighborsAllowed)
Instantiate class mxMultiplicity in order to describe allowed connections in a graph.
Generic codec for JavaScript objects that implements a mapping between JavaScript objects and XML nodes that maps each field or element to an attribute or child node, and vice versa.
function mxObjectCodec(template,
exclude,
idrefs,
mapping)
Constructs a new codec for the specified template object.
Identity for JavaScript objects.
Implements an outline (aka overview) for a graph.
function mxOutline(source,
container)
Constructs a new outline for the specified graph inside the given container.
Event handler that pans and creates popupmenus.
Constructs an event handler that creates a mxPopupMenu and pans the graph.
Implements a handler for panning.
Extends mxGraphLayout for arranging parallel edges.
Extends mxGraphLayout for partitioning the parent cell vertically or horizontally by filling the complete area with the child cells.
function mxPartitionLayout(graph,
horizontal,
spacing,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
Provides various perimeter functions to be used in a style as the value of mxConstants.STYLE_PERIMETER.
Implements a 2-dimensional vector with double precision coordinates.
function mxPoint(x,
y)
Constructs a new point for the optional x and y coordinates.
Extends mxShape to implement a polyline (a line with multiple points).
function mxPolyline(points,
stroke,
strokewidth)
Constructs a new polyline shape.
Basic popup menu.
Constructs a popupmenu.
function mxPopupMenuHandler(graph,
factoryMethod)
Constructs an event handler that creates a mxPopupMenu.
Implements printing of a diagram across multiple pages.
function mxPrintPreview(graph,
scale,
pageFormat,
border,
x0,
y0,
borderColor,
title,
pageSelector)
Constructs a new print preview for the given parameters.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
function mxRectangle(x,
y,
width,
height)
Constructs a new rectangle for the optional parameters.
Constructs a new rectangle for the optional parameters.
Extends mxShape to implement a rectangle shape.
function mxRectangleShape(bounds,
fill,
stroke,
strokewidth)
Constructs a new rectangle shape.
Optional global config variable to specify the extension of resource files.
Implements internationalization.
Extends mxShape to implement a rhombus (aka diamond) shape.
function mxRhombus(bounds,
fill,
stroke,
strokewidth)
Constructs a new rhombus shape.
Action to change the root in a model.
function mxRootChange(model,
root)
Constructs a change of the root in the specified model.
Codec for mxRootChanges.
Event handler that selects rectangular regions.
function mxRubberband(graph)
Constructs an event handler that selects rectangular regions in the graph using rubberband selection.
An event handler that manages cell handlers and invokes their mouse event processing functions.
Action to change the current root in a view.
Session for sharing an mxGraphModel with other parties via a backend that acts as a multicaster for all changes.
function mxSession(model,
urlInit,
urlPoll,
urlNotify)
Constructs a new session using the given mxGraphModel and URLs to communicate with the backend.
Base class for all shapes.
function mxShape(stencil)
Constructs a new shape.
In charge of moving cells after a resize.
function mxSpaceManager(graph,
shiftRightwards,
shiftDownwards,
extendParents)
Constructs a new automatic layout for the given graph.
Extends mxGraphLayout to create a horizontal or vertical stack of the child vertices.
function mxStackLayout(graph,
horizontal,
spacing,
x0,
y0,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
Implements a generic shape which is based on a XML node as a description.
function mxStencil(desc)
Constructs a new generic shape by setting desc to the given XML node and invoking parseDescription and parseConstraints.
A singleton class that provides a registry for stencils and the methods for painting those stencils onto a canvas or into a DOM.
Action to change a cell’s style in a model.
function mxStyleChange(model,
cell,
style)
Constructs a change of a style in the specified model.
Singleton class that acts as a global converter from string to object values in a style.
Defines the appearance of the cells in a graph.
function mxStylesheet()
Constructs a new stylesheet and assigns default styles.
Codec for mxStylesheets.
Extends mxAbstractCanvas2D to implement a canvas for SVG.
function mxSvgCanvas2D(root,
styleEnabled)
Constructs a new SVG canvas.
Extends mxShape to implement a swimlane shape.
function mxSwimlane(bounds,
fill,
stroke,
strokewidth)
Constructs a new swimlane shape.
A hierarchical layout algorithm.
function mxSwimlaneLayout(graph,
orientation,
deterministic)
Constructs a new hierarchical layout algorithm.
Manager for swimlanes and nested swimlanes that sets the size of newly added swimlanes to that of their siblings, and propagates changes to the size of a swimlane to its siblings, if siblings is true, and its ancestors, if bubbling is true.
function mxSwimlaneManager(graph,
horizontal,
addEnabled,
resizeEnabled)
Constructs a new swimlane manager for the given graph.
Internal model of a hierarchical graph.
function mxSwimlaneModel(layout,
vertices,
roots,
parent,
tightenToSource)
Creates an internal ordered graph model using the vertices passed in.
An implementation of the first stage of the Sugiyama layout.
function mxSwimlaneOrdering(layout)
Creates a cycle remover for the given internal model.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
Action to change a terminal in a model.
function mxTerminalChange(model,
cell,
terminal,
source)
Constructs a change of a terminal in the specified model.
Codec for mxTerminalChanges.
Extends mxShape to implement a text shape.
function mxText(value,
bounds,
align,
valign,
color,
family,
size,
fontStyle,
spacing,
spacingTop,
spacingRight,
spacingBottom,
spacingLeft,
horizontal,
background,
border,
wrap,
clipped,
overflow,
labelPadding)
Constructs a new text shape.
Creates a toolbar inside a given DOM node.
function mxToolbar(container)
Constructs a toolbar in the specified container.
Graph event handler that displays tooltips.
function mxTooltipHandler(graph,
delay)
Constructs an event handler that displays tooltips with the specified delay (in milliseconds).
mxCell.prototype.mxTransient
List of members that should not be cloned inside clone.
Implementation of the triangle shape.
function mxTriangle()
Constructs a new triangle shape.
Implements a composite undoable edit.
function mxUndoableEdit(source,
significant)
Constructs a new undoable edit for the given source.
Implements a command history.
function mxUndoManager(size)
Constructs a new undo manager with the given history size.
Converts relative and absolute URLs to absolute URLs with protocol and domain.
A singleton class that provides cross-browser helper methods.
Action to change a user object in a model.
function mxValueChange(model,
cell,
value)
Constructs a change of a user object in the specified model.
Event handler for resizing cells.
function mxVertexHandler(state)
Constructs an event handler that allows to resize vertices and groups.
Action to change a cell’s visible state in a model.
function mxVisibleChange(model,
cell,
visible)
Constructs a change of a visible state in the specified model.
Implements a canvas to be used for rendering VML.
Basic window inside a document.
function mxWindow(title,
content,
x,
y,
width,
height,
minimizable,
movable,
replaceNode,
style)
Constructs a new window with the given dimension and title to display the specified content.
Base class for all canvases.
function mxXmlCanvas2D(root)
Constructs a new abstract canvas.
XML HTTP request wrapper.
function mxXmlRequest(url,
params,
method,
async,
username,
password)
Constructs an XML HTTP request.
+
mxGraphModel.prototype.maintainEdgeParent
Specifies if edges should automatically be moved into the nearest common ancestor of their terminals.
mxEditor.prototype.maintainSwimlanes
Specifies if the swimlanes should be kept at the same width or height depending on the setting of horizontalFlow.
makeDraggable: function(element,
graphF,
funct,
dragElement,
dx,
dy,
autoscroll,
scalePreview,
highlightDropTargets,
getDropTarget)
Configures the given DOM element to act as a drag source for the specified graph.
mxVertexHandler.prototype.manageSizers
Specifies if sizers should be hidden and spaced if the vertex is small.
Stores the (key, value) pairs in this dictionary.
mxObjectCodec.prototype.mapping
Maps from from fieldnames to XML attribute names.
mxStackLayout.prototype.marginBottom
Top margin for the child area.
mxStackLayout.prototype.marginLeft
Top margin for the child area.
mxStackLayout.prototype.marginRight
Top margin for the child area.
mxStackLayout.prototype.marginTop
Top margin for the child area.
Marks the markedState and fires a mark event.
mxCellMarker.prototype.mark = function()
Marks the markedState and fires a mark event.
Fires after a cell has been marked or unmarked.
Specifies the event name for mark.
mxCellMarker.prototype.markCell = function(cell,
color)
Marks the given cell using the given color, or validColor if no color is specified.
mxCellMarker.prototype.markedState
Holds the marked mxCellState.
mxConnectionHandler.prototype.marker
Holds the mxTerminalMarker used for finding source and target cells.
mxEdgeHandler.prototype.marker
Holds the mxTerminalMarker which is used for highlighting terminals.
Maps from markers names to functions to paint the markers.
mxSvgCanvas2D.prototype.matchHtmlAlignment
Specifies if plain text output should match the vertical HTML alignment.
mxMultiplicity.prototype.max
Defines the maximum number of connections for which this rule applies.
Defines the maximum size in pixels of the portion of the cell which is to be used as a connectable region.
mxGraphHandler.prototype.maxCells
Defines the maximum number of cells to paint subhandles for.
mxSwimlaneModel.prototype.maxChainDfs = function(parent,
root,
connectingEdge,
seen,
chainCount)
Performs a depth first search on the internal hierarchy model.
mxGraph.prototype.maxFitScale
Specifies the maximum scale to be applied in fit.
mxSelectionCellsHandler.prototype.maxHandlers
Defines the maximum number of handlers to paint individually.
mxCylinder.prototype.maxHeight
Defines the maximum height of the top and bottom part of the cylinder shape.
Specifies the event name for maximize.
Fires after the window is maximized.
mxWindow.prototype.maximizeImage
URL of the image to be used for the maximize icon in the titlebar.
mxGraph.prototype.maximumContainerSize
mxRectangle that specifies the maximum size of the container if resizeContainer is true.
mxGraph.prototype.maximumGraphBounds
mxRectangle that specifies the area in which all cells in the diagram should be placed.
mxCoordinateAssignment.prototype.maxIterations
The number of heuristic iterations to run.
mxFastOrganicLayout.prototype.maxIterations
Total number of iterations to run the layout though.
mxMedianHybridCrossingReduction.prototype.maxIterations
The maximum number of iterations to perform whilst reducing edge crossings.
mxMedianHybridCrossingReduction.prototype.maxNoImprovementIterations
The total number of crossings found in the best configuration so far
mxGraphAbstractHierarchyCell.prototype.maxRank
The maximum rank this cell occupies.
mxGraphHierarchyModel.prototype.maxRank
Stores the largest rank number allocated
mxSwimlaneModel.prototype.maxRank
Stores the largest rank number allocated
mxCompactTreeLayout.prototype.maxRankHeight
An array of the maximum height of cells (relative to the layout direction) per rank
A utility class used to track cells whilst sorting occurs on the median values.
function MedianCellSorter()
Constructs a new median cell sorter.
mxCoordinateAssignment.prototype.medianPos = function(i,
model)
Performs one median positioning sweep in one direction
mxMedianHybridCrossingReduction.prototype.medianRank = function(rankValue,
downwardSweep)
Attempts to minimise the median placement of connected cells on this rank and one of the adjacent ranks
MedianCellSorter.prototype.medianValue
The weighted value of the cell stored.
mxMedianHybridCrossingReduction.prototype.medianValue = function(
   connectedCells,
   rankValue
)
Calculates the median rank order positioning for the specified cell using the connected cells on the specified rank.
mxCoordinateAssignment.prototype.medianXValue = function(connectedCells,
rankValue)
Calculates the median position of the connected cell on the specified rank
mxCompactTreeLayout.prototype.merge = function(p1,
p2)
mxGraphModel.prototype.mergeChildren = function(from,
to,
cloneAllEdges)
Merges the children of the given cell into the given target cell inside this model.
mxXmlRequest.prototype.method
Specifies the request method.
mxMultiplicity.prototype.min
Defines the minimum number of connections for which this rule applies.
Defines the minimum size in pixels of the portion of the cell which is to be used as a connectable region.
mxFastOrganicLayout.prototype.minDistanceLimit
Minimal distance limit.
mxFastOrganicLayout.prototype.minDistanceLimitSquared
Cached version of minDistanceLimit squared.
mxCompactTreeLayout.prototype.minEdgeJetty
The minimum distance for an edge jetty from a vertex.
mxCoordinateAssignment.prototype.minEdgeJetty
The minimum distance for an edge jetty from a vertex
mxGraph.prototype.minFitScale
Specifies the minimum scale to be applied in fit.
Specifies the event name for minimize.
Fires after the window is minimized.
mxWindow.prototype.minimizeImage
URL of the image to be used for the minimize icon in the titlebar.
mxGraph.prototype.minimumContainerSize
mxRectangle that specifies the minimum size of the container if resizeContainer is true.
mxGraph.prototype.minimumGraphSize
mxRectangle that specifies the minimum size of the graph.
mxGraphHandler.prototype.minimumSize
Specifies the minimum number of pixels for the width and height of a selection border.
mxWindow.prototype.minimumSize
mxRectangle that specifies the minimum width and height of the window.
mxCoordinateAssignment.prototype.minNode = function(model)
Performs one median positioning sweep in both directions
mxGraph.prototype.minPageBreakDist
Specifies the minimum distance for page breaks to be visible.
mxCoordinateAssignment.prototype.minPath = function(graph,
model)
Straightens out chains of virtual nodes where possibleacade to those stored after this layout processing step has completed.
mxGraphAbstractHierarchyCell.prototype.minRank
The minimum rank this cell occupies.
Allow optimization by replacing VML with HTML.
mod: function(n,
m)
Returns the remainder of division of n by m.
mxGraph.prototype.model
Holds the mxGraphModel that contains the cells to be displayed.
mxHierarchicalLayout.prototype.model
The internal mxGraphHierarchyModel formed of the layout.
mxSession.prototype.model
Reference to the enclosing mxGraphModel.
mxSwimlaneLayout.prototype.model
The internal mxSwimlaneModel formed of the layout.
mxCellEditor.prototype.modified
Specifies if the label has been modified.
mxEditor.prototype.modified
True if the graph has been modified since it was last saved.
Specifies the event name for mouseDown.
Specifies the event name for mouseMove.
Specifies the event name for mouseUp.
mxCellTracker.prototype.mouseDown = function(sender,
me)
Ignores the event.
mxConnectionHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a new connection.
mxDragSource.prototype.mouseDown = function(evt)
Returns the drop target for the given graph and coordinates.
mxEdgeHandler.prototype.mouseDown = function(sender,
me)
Handles the event by checking if a special element of the handler was clicked, in which case the index parameter is non-null.
mxGraphHandler.prototype.mouseDown = function(sender,
me)
Handles the event by selecing the given cell and creating a handle for it.
mxOutline.prototype.mouseDown = function(sender,
me)
Handles the event by starting a translation or zoom.
mxPanningHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating the panning.
mxRubberband.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxSelectionCellsHandler.prototype.mouseDown = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxVertexHandler.prototype.mouseDown = function(sender,
me)
Handles the event if a handle has been clicked.
mxConnectionHandler.prototype.mouseDownCounter
Counts the number of mouseDown events since the start.
mxGraph.prototype.mouseListeners
Holds the mouse event listeners.
mxCellTracker.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting the cell under the mousepointer if it is over the hotspot region of the cell.
mxConnectionHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview edge or by highlighting a possible source or target terminal.
mxDragSource.prototype.mouseMove = function(evt)
Gets the graph for the given event using getGraphForEvent, updates the currentGraph, calling dragEnter and dragExit on the new and old graph, respectively, and invokes dragOver if currentGraph is not null.
mxEdgeHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxGraphHandler.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting possible drop targets and updating the preview.
mxOutline.prototype.mouseMove = function(sender,
me)
Handles the event by previewing the viewrect in graph and updating the rectangle that represents the viewrect in the outline.
mxPanningHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the panning on the graph.
mxRubberband.prototype.mouseMove = function(sender,
me)
Handles the event by updating therubberband selection.
mxSelectionCellsHandler.prototype.mouseMove = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the rubberband selection.
mxVertexHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxCellTracker.prototype.mouseUp = function(sender,
me)
Handles the event by reseting the highlight.
mxConnectionHandler.prototype.mouseUp = function(sender,
me)
Handles the event by inserting the new connection.
mxDragSource.prototype.mouseUp = function(evt)
Processes the mouse up event and invokes drop, dragExit and stopDrag as required.
mxEdgeHandler.prototype.mouseUp = function(sender,
me)
Handles the event to applying the previewed changes on the edge by using moveLabel, connect or changePoints.
mxGraphHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the selection cells.
mxOutline.prototype.mouseUp = function(sender,
me)
Handles the event by applying the translation or zoom to graph.
mxPanningHandler.prototype.mouseUp = function(sender,
me)
Handles the event by setting the translation on the view or showing the popupmenu.
mxRubberband.prototype.mouseUp = function(sender,
me)
Handles the event by selecting the region of the rubberband using mxGraph.selectRegion.
mxSelectionCellsHandler.prototype.mouseUp = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseUp = function(sender,
me)
Handles the event by resetting the tooltip timer or hiding the existing tooltip.
mxVertexHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the geometry.
mxGuide.prototype.move = function(bounds,
delta,
gridEnabled)
Moves the bounds by the given mxPoint and returnt the snapped point.
Specifies the event name for move.
Fires while the window is being moved.
Specifies the event name for moveCells.
Fires between begin- and endUpdate in moveCells.
Specifies the event name for moveEnd.
Fires after the window is moved.
Specifies the event name for moveStart.
Fires before the window is moved.
mxCompositeLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell by calling move on master or the first layout in layouts.
mxGraphLayout.prototype.moveCell = function(cell,
x,
y)
Notified when a cell is being moved in a parent that has automatic layout to update the cell state (eg.
mxPartitionLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxStackLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxGraph.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.
mxGraphHandler.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves the given cells by the specified amount.
mxVertexHandler.prototype.moveChildren = function(cell,
dx,
dy)
Moves the children of the given cell by the given vector.
mxCircleLayout.prototype.moveCircle
Boolean specifying if the circle should be moved to the top, left corner specified by x0 and y0.
mxGraphHandler.prototype.moveEnabled
Specifies if moving is enabled.
mxLayoutManager.prototype.moveHandler
Holds the function that handles the move event.
Holds the function that handles the move event.
mxConnectionHandler.prototype.moveIconBack
Specifies if icons should be moved to the back of the overlay pane.
mxConnectionHandler.prototype.moveIconFront
Specifies if icons should be displayed inside the graph container instead of the overlay pane.
mxEdgeHandler.prototype.moveLabel = function(edgeState,
x,
y)
Changes the coordinates for the label of the given edge.
mxCompactTreeLayout.prototype.moveNode = function(node,
dx,
dy)
Moves the specified node and all of its children by the given amount.
mxAbstractCanvas2D.prototype.moveOp
Contains the string used for moving in paths.
mxVmlCanvas2D.prototype.moveOp
Contains the string used for moving in paths.
mxHierarchicalLayout.prototype.moveParent
Specifies if the parent should be moved if resizeParent is enabled.
mxSwimlaneLayout.prototype.moveParent
Specifies if the parent should be moved if resizeParent is enabled.
mxConnectionHandler.prototype.movePreviewAway
Switch to enable moving the preview away from the mousepointer.
mxEditor.prototype.movePropertiesDialog
Specifies if the properties dialog should be automatically moved near the cell it is displayed for, otherwise the dialog is not moved.
mxCellStatePreview.prototype.moveState = function(state,
dx,
dy,
add,
includeEdges)
mxAbstractCanvas2D.prototype.moveTo = function(x,
y)
Moves the current path the given coordinates.
mxXmlCanvas2D.prototype.moveTo = function(x,
y)
Moves the current path the given point.
mxCompactTreeLayout.prototype.moveTree
Specifies if the tree should be moved to the top, left corner if it is inside a top-level layer.
mxGraph.prototype.multigraph
Specifies if multiple edges in the same direction between the same pair of vertices are allowed.
mxGraph.prototype.multiplicities
An array of mxMultiplicities describing the allowed connections in a graph.
Base class for all canvases.
function mxAbstractCanvas2D()
Constructs a new abstract canvas.
Extends mxShape to implement an actor shape.
function mxActor(bounds,
fill,
stroke,
strokewidth)
Constructs a new actor shape.
Implements a basic animation in JavaScript.
function mxAnimation(delay)
Constructs an animation.
Extends mxShape to implement an arrow shape.
function mxArrow(points,
fill,
stroke,
strokewidth,
arrowWidth,
spacing,
endSize)
Constructs a new arrow shape.
Manager for automatically saving diagrams.
function mxAutoSaveManager(graph)
Constructs a new automatic layout for the given graph.
Cells are the elements of the graph model.
function mxCell(value,
geometry,
style)
Constructs a new cell to be used in a graph model.
Action to change the attribute of a cell’s user object.
function mxCellAttributeChange(cell,
attribute,
value)
Constructs a change of a attribute of the DOM node stored as the value of the given mxCell.
Codec for mxCells.
In-place editor for the graph.
function mxCellEditor(graph)
Constructs a new in-place editor for the specified graph.
A helper class to highlight cells.
function mxCellHighlight(graph,
highlightColor,
strokeWidth,
dashed)
Constructs a cell highlight.
A helper class to process mouse locations and highlight cells.
function mxCellMarker(graph,
validColor,
invalidColor,
hotspot)
Constructs a new cell marker.
Extends mxEventSource to implement a graph overlay, represented by an icon and a tooltip.
function mxCellOverlay(image,
tooltip,
align,
verticalAlign,
offset,
cursor)
Constructs a new overlay using the given image and tooltip.
Implements a mechanism for temporary cell Ids.
Renders cells into a document object model.
function mxCellRenderer()
arrow, rectangle, ellipse, rhombus, image, line, label, cylinder, swimlane, connector, actor and cloud.
Represents the current state of a cell in a given mxGraphView.
function mxCellState(view,
cell,
style)
Constructs a new object that represents the current state of the given cell in the specified view.
Implements a live preview for moving cells.
function mxCellStatePreview(graph)
Constructs a move preview for the given graph.
Event handler that highlights cells.
function mxCellTracker(graph,
color,
funct)
Constructs an event handler that highlights cells.
Action to add or remove a child in a model.
function mxChildChange(model,
parent,
child,
index)
Constructs a change of a child in the specified model.
Codec for mxChildChanges.
Extends mxGraphLayout to implement a circluar layout for a given radius.
function mxCircleLayout(graph,
radius)
Constructs a new circular layout for the specified radius.
Bootstrapping mechanism for the mxGraph thin client.
Singleton that implements a clipboard for graph cells.
Extends mxActor to implement a cloud shape.
function mxCloud(bounds,
fill,
stroke,
strokewidth)
Constructs a new cloud shape.
XML codec for JavaScript object graphs.
function mxCodec(document)
Constructs an XML encoder/decoder for the specified owner document.
Singleton class that acts as a global registry for codecs.
Action to change a cell’s collapsed state in a model.
function mxCollapseChange(model,
cell,
collapsed)
Constructs a change of a collapsed state in the specified model.
Extends mxGraphLayout to implement a compact tree (Moen) algorithm.
function mxCompactTreeLayout(graph,
horizontal,
invert)
Constructs a new compact tree layout for the specified graph and orientation.
Constructs a new fast organic layout for the specified graph.
Constructs a new fast organic layout for the specified graph.
Allows to compose multiple layouts into a single layout.
function mxCompositeLayout(graph,
layouts,
master)
Constructs a new layout using the given layouts.
Defines an object that contains the constraints about how to connect one side of an edge to its terminal.
function mxConnectionConstraint(point,
perimeter)
Constructs a new connection constraint for the given point and boolean arguments.
Graph event handler that creates new connections.
function mxConnectionHandler(graph,
factoryMethod)
Constructs an event handler that connects vertices using the specified factory method to create the new edges.
Extends mxShape to implement a connector shape.
function mxConnector(points,
stroke,
strokewidth)
Constructs a new connector shape.
Defines various global constants.
Handles constraints on connection targets.
function mxConstraintHandler(graph)
Constructs an new constraint handler.
Sets the horizontal locations of node and edge dummy nodes on each layer.
function mxCoordinateAssignment(layout,
intraCellSpacing,
interRankCellSpacing,
orientation,
initialX,
parallelEdgeSpacing)
Creates a coordinate assignment.
Action to change the current root in a view.
function mxCurrentRootChange(view,
root)
Constructs a change of the current root in the given view.
Constructs a change of the current root in the given view.
Extends mxShape to implement an cylinder shape.
function mxCylinder(bounds,
fill,
stroke,
strokewidth)
Constructs a new cylinder shape.
Binds keycodes to actionnames in an editor.
function mxDefaultKeyHandler(editor)
Constructs a new default key handler for the mxEditor.graph in the given mxEditor.
Custom codec for configuring mxDefaultKeyHandlers.
Creates popupmenus for mouse events.
function mxDefaultPopupMenu(config)
Constructs a new popupmenu-factory based on given configuration.
Custom codec for configuring mxDefaultPopupMenus.
Toolbar for the editor.
function mxDefaultToolbar(container,
editor)
Constructs a new toolbar for the given container and editor.
Custom codec for configuring mxDefaultToolbars.
A wrapper class for an associative array with object keys.
Maintains the size of a div element in Internet Explorer.
function mxDivResizer(div,
container)
Constructs an object that maintains the size of a div element when the window is being resized.
Extends mxShape to implement a double ellipse shape.
function mxDoubleEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
Wrapper to create a drag source from a DOM element so that the element can be dragged over a graph and dropped into the graph as a new cell.
function mxDragSource(element,
dropHandler)
Constructs a new drag source for the given element.
Graph event handler that reconnects edges and modifies control points and the edge label location.
function mxEdgeHandler(state)
Constructs an edge handler for the specified mxCellState.
Constructs an edge handler for the specified mxCellState.
Extends mxGraphLayout to implement an edge label layout.
function mxEdgeLabelLayout(graph,
radius)
Constructs a new edge label layout.
Provides various edge styles to be used as the values for mxConstants.STYLE_EDGE in a cell style.
Extends mxEventSource to implement a application wrapper for a graph that adds actions, I/O using mxCodec, auto-layout using mxLayoutManager, command history using undoManager, and standard dialogs and widgets, eg.
function mxEditor(config)
Constructs a new editor.
Codec for mxEditors.
Provides animation effects.
Graph event handler that reconnects edges and modifies control points and the edge label location.
Extends mxShape to implement an ellipse shape.
function mxEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
Cross-browser DOM event support.
The mxEventObject is a wrapper for all properties of a single event.
function mxEventObject(name)
Constructs a new event object with the specified name.
Base class for objects that dispatch named events.
Constructs a new dictionary which allows object to be used as keys.
function mxEventSource(eventSource)
Constructs a new event source.
Extends mxGraphLayout to implement a fast organic layout algorithm.
A simple class for creating HTML forms.
function mxForm(className)
Creates a HTML table using the specified classname.
Codec for mxValueChanges, mxStyleChanges, mxGeometryChanges, mxCollapseChanges and mxVisibleChanges.
var mxGenericChangeCodec = function(obj,
variable)
Factory function that creates a mxObjectCodec for the specified change and fieldname.
Extends mxRectangle to represent the geometry of a cell.
function mxGeometry(x,
y,
width,
height)
Constructs a new object to describe the size and location of a vertex or the control points of an edge.
Action to change a cell’s geometry in a model.
function mxGeometryChange(model,
cell,
geometry)
Constructs a change of a geometry in the specified model.
Extends mxEventSource to implement a graph component for the browser.
function mxGraph(container,
model,
renderHint,
stylesheet)
Constructs a new mxGraph in the specified container.
Set when the editor is started.
An abstraction of an internal hierarchy node or edge
function mxGraphAbstractHierarchyCell()
Constructs a new hierarchical layout algorithm.
Codec for mxGraphs.
Graph event handler that handles selection.
function mxGraphHandler(graph)
Constructs an event handler that creates handles for the selection cells.
An abstraction of a hierarchical edge for the hierarchy layout
function mxGraphHierarchyEdge(edges)
Constructs a hierarchy edge
Internal model of a hierarchical graph.
function mxGraphHierarchyModel(layout,
vertices,
roots,
parent,
tightenToSource)
Creates an internal ordered graph model using the vertices passed in.
An abstraction of a hierarchical edge for the hierarchy layout
function mxGraphHierarchyNode(cell)
Constructs an internal node to represent the specified real graph cell
Base class for all layout algorithms in mxGraph.
function mxGraphLayout(graph)
Constructs a new layout using the given layouts.
Extends mxEventSource to implement a graph model.
function mxGraphModel(root)
Constructs a new graph model.
Implements the selection model for a graph.
function mxGraphSelectionModel(graph)
Constructs a new graph selection model for the given mxGraph.
Extends mxEventSource to implement a view for a graph.
function mxGraphView(graph)
Constructs a new view for the given mxGraph.
Custom encoder for mxGraphViews.
Implements the alignment of selection cells to other cells in the graph.
function mxGuide(graph,
states)
Constructs a new guide object.
Implementation of the hexagon shape.
function mxHexagon()
Constructs a new hexagon shape.
A hierarchical layout algorithm.
function mxHierarchicalLayout(graph,
orientation,
deterministic)
Constructs a new hierarchical layout algorithm.
The specific layout interface for hierarchical layouts.
function mxHierarchicalLayoutStage()
Constructs a new hierarchical layout stage.
Encapsulates the URL, width and height of an image.
function mxImage(src,
width,
height)
Constructs a new image.
Maps from keys to base64 encoded images or file locations.
Creates a new image export instance to be used with an export canvas.
function mxImageExport()
Constructs a new image export.
Extends mxShape to implement an image shape.
function mxImageShape(bounds,
image,
fill,
stroke,
strokewidth)
Constructs a new image shape.
Event handler that listens to keystroke events.
function mxKeyHandler(graph,
target)
Constructs an event handler that executes functions bound to specific keystrokes.
Extends mxShape to implement an image shape with a label.
function mxLabel(bounds,
fill,
stroke,
strokewidth)
Constructs a new label shape.
function mxLayoutManager(graph)
Constructs a new automatic layout for the given graph.
Extends mxShape to implement a horizontal line shape.
function mxLine(bounds,
stroke,
strokewidth)
Constructs a new line shape.
Optional global config variable to toggle loading of the two resource files in mxGraph and mxEditor.
Optional global config variable to toggle loading of the CSS files when the library is initialized.
A singleton class that implements a simple console.
A static class that implements all markers for VML and SVG using a registry.
Sets the horizontal locations of node and edge dummy nodes on each layer.
function mxMedianHybridCrossingReduction(layout)
Creates a coordinate assignment.
An implementation of the first stage of the Sugiyama layout.
function mxMinimumCycleRemover(layout)
Creates a cycle remover for the given internal model.
Codec for mxGraphModels.
Implements animation for morphing cells.
function mxMorphing(graph,
steps,
ease,
delay)
Constructs an animation.
Base class for all mouse events in mxGraph.
function mxMouseEvent(evt,
state)
Constructs a new event object for the given arguments.
Defines invalid connections along with the error messages that they produce.
function mxMultiplicity(source,
type,
attr,
value,
min,
max,
validNeighbors,
countError,
typeError,
validNeighborsAllowed)
Instantiate class mxMultiplicity in order to describe allowed connections in a graph.
Generic codec for JavaScript objects that implements a mapping between JavaScript objects and XML nodes that maps each field or element to an attribute or child node, and vice versa.
function mxObjectCodec(template,
exclude,
idrefs,
mapping)
Constructs a new codec for the specified template object.
Identity for JavaScript objects.
Implements an outline (aka overview) for a graph.
function mxOutline(source,
container)
Constructs a new outline for the specified graph inside the given container.
Event handler that pans and creates popupmenus.
Constructs an event handler that creates a mxPopupMenu and pans the graph.
Implements a handler for panning.
Extends mxGraphLayout for arranging parallel edges.
Extends mxGraphLayout for partitioning the parent cell vertically or horizontally by filling the complete area with the child cells.
function mxPartitionLayout(graph,
horizontal,
spacing,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
Provides various perimeter functions to be used in a style as the value of mxConstants.STYLE_PERIMETER.
Implements a 2-dimensional vector with double precision coordinates.
function mxPoint(x,
y)
Constructs a new point for the optional x and y coordinates.
Extends mxShape to implement a polyline (a line with multiple points).
function mxPolyline(points,
stroke,
strokewidth)
Constructs a new polyline shape.
Basic popup menu.
Constructs a popupmenu.
function mxPopupMenuHandler(graph,
factoryMethod)
Constructs an event handler that creates a mxPopupMenu.
Implements printing of a diagram across multiple pages.
function mxPrintPreview(graph,
scale,
pageFormat,
border,
x0,
y0,
borderColor,
title,
pageSelector)
Constructs a new print preview for the given parameters.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
function mxRectangle(x,
y,
width,
height)
Constructs a new rectangle for the optional parameters.
Constructs a new rectangle for the optional parameters.
Extends mxShape to implement a rectangle shape.
function mxRectangleShape(bounds,
fill,
stroke,
strokewidth)
Constructs a new rectangle shape.
Optional global config variable to specify the extension of resource files.
Implements internationalization.
Extends mxShape to implement a rhombus (aka diamond) shape.
function mxRhombus(bounds,
fill,
stroke,
strokewidth)
Constructs a new rhombus shape.
Action to change the root in a model.
function mxRootChange(model,
root)
Constructs a change of the root in the specified model.
Codec for mxRootChanges.
Event handler that selects rectangular regions.
function mxRubberband(graph)
Constructs an event handler that selects rectangular regions in the graph using rubberband selection.
An event handler that manages cell handlers and invokes their mouse event processing functions.
Action to change the current root in a view.
Session for sharing an mxGraphModel with other parties via a backend that acts as a multicaster for all changes.
function mxSession(model,
urlInit,
urlPoll,
urlNotify)
Constructs a new session using the given mxGraphModel and URLs to communicate with the backend.
Base class for all shapes.
function mxShape(stencil)
Constructs a new shape.
In charge of moving cells after a resize.
function mxSpaceManager(graph,
shiftRightwards,
shiftDownwards,
extendParents)
Constructs a new automatic layout for the given graph.
Extends mxGraphLayout to create a horizontal or vertical stack of the child vertices.
function mxStackLayout(graph,
horizontal,
spacing,
x0,
y0,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
Implements a generic shape which is based on a XML node as a description.
function mxStencil(desc)
Constructs a new generic shape by setting desc to the given XML node and invoking parseDescription and parseConstraints.
A singleton class that provides a registry for stencils and the methods for painting those stencils onto a canvas or into a DOM.
Action to change a cell’s style in a model.
function mxStyleChange(model,
cell,
style)
Constructs a change of a style in the specified model.
Singleton class that acts as a global converter from string to object values in a style.
Defines the appearance of the cells in a graph.
function mxStylesheet()
Constructs a new stylesheet and assigns default styles.
Codec for mxStylesheets.
Extends mxAbstractCanvas2D to implement a canvas for SVG.
function mxSvgCanvas2D(root,
styleEnabled)
Constructs a new SVG canvas.
Extends mxShape to implement a swimlane shape.
function mxSwimlane(bounds,
fill,
stroke,
strokewidth)
Constructs a new swimlane shape.
A hierarchical layout algorithm.
function mxSwimlaneLayout(graph,
orientation,
deterministic)
Constructs a new hierarchical layout algorithm.
Manager for swimlanes and nested swimlanes that sets the size of newly added swimlanes to that of their siblings, and propagates changes to the size of a swimlane to its siblings, if siblings is true, and its ancestors, if bubbling is true.
function mxSwimlaneManager(graph,
horizontal,
addEnabled,
resizeEnabled)
Constructs a new swimlane manager for the given graph.
Internal model of a hierarchical graph.
function mxSwimlaneModel(layout,
vertices,
roots,
parent,
tightenToSource)
Creates an internal ordered graph model using the vertices passed in.
An implementation of the first stage of the Sugiyama layout.
function mxSwimlaneOrdering(layout)
Creates a cycle remover for the given internal model.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
Action to change a terminal in a model.
function mxTerminalChange(model,
cell,
terminal,
source)
Constructs a change of a terminal in the specified model.
Codec for mxTerminalChanges.
Extends mxShape to implement a text shape.
function mxText(value,
bounds,
align,
valign,
color,
family,
size,
fontStyle,
spacing,
spacingTop,
spacingRight,
spacingBottom,
spacingLeft,
horizontal,
background,
border,
wrap,
clipped,
overflow,
labelPadding)
Constructs a new text shape.
Creates a toolbar inside a given DOM node.
function mxToolbar(container)
Constructs a toolbar in the specified container.
Graph event handler that displays tooltips.
function mxTooltipHandler(graph,
delay)
Constructs an event handler that displays tooltips with the specified delay (in milliseconds).
mxCell.prototype.mxTransient
List of members that should not be cloned inside clone.
Implementation of the triangle shape.
function mxTriangle()
Constructs a new triangle shape.
Implements a composite undoable edit.
function mxUndoableEdit(source,
significant)
Constructs a new undoable edit for the given source.
Implements a command history.
function mxUndoManager(size)
Constructs a new undo manager with the given history size.
Converts relative and absolute URLs to absolute URLs with protocol and domain.
A singleton class that provides cross-browser helper methods.
Action to change a user object in a model.
function mxValueChange(model,
cell,
value)
Constructs a change of a user object in the specified model.
Event handler for resizing cells.
function mxVertexHandler(state)
Constructs an event handler that allows to resize vertices and groups.
Action to change a cell’s visible state in a model.
function mxVisibleChange(model,
cell,
visible)
Constructs a change of a visible state in the specified model.
Implements a canvas to be used for rendering VML.
Basic window inside a document.
function mxWindow(title,
content,
x,
y,
width,
height,
minimizable,
movable,
replaceNode,
style)
Constructs a new window with the given dimension and title to display the specified content.
Base class for all canvases.
function mxXmlCanvas2D(root)
Constructs a new abstract canvas.
XML HTTP request wrapper.
function mxXmlRequest(url,
params,
method,
async,
username,
password)
Constructs an XML HTTP request.
diff --git a/docs/js-api/index/General12.html b/docs/js-api/index/General12.html index 5a8bfc37e..7bd65dc62 100644 --- a/docs/js-api/index/General12.html +++ b/docs/js-api/index/General12.html @@ -11,13 +11,13 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
N
 name, mxEventObject
 nativeDoubleClickEnabled, mxGraph
 neighbours, mxFastOrganicLayout
 nestedBestRanks, mxMedianHybridCrossingReduction
 nextId, mxGraphModel
 nextLayerConnectedCache, mxCoordinateAssignment
 nextLayerConnectedCells, mxGraphAbstractHierarchyCell
 NO_FO, mxClient
 node, mxShape
 nodeDistance, mxCompactTreeLayout
 NODETYPE_ATTRIBUTE, mxConstants
 NODETYPE_CDATA, mxConstants
 NODETYPE_COMMENT, mxConstants
 NODETYPE_DOCUMENT, mxConstants
 NODETYPE_DOCUMENT_FRAGMENT, mxConstants
 NODETYPE_DOCUMENTTYPE, mxConstants
 NODETYPE_ELEMENT, mxConstants
 NODETYPE_ENTITY, mxConstants
 NODETYPE_ENTITY_REFERENCE, mxConstants
 NODETYPE_NOTATION, mxConstants
 NODETYPE_PROCESSING_INSTRUCTION, mxConstants
 NODETYPE_TEXT, mxConstants
 NONE, mxConstants
 noReset, mxToolbar
 NORMALIZE
 normalizeImage, mxWindow
 normalKeys, mxKeyHandler
 notify
 NOTIFY
 NS_SVG, mxConstants
 NS_XHTML, mxConstants
 NS_XLINK, mxConstants
 nudge, WeightedCellSorter
O
 objects
 OFFICE_PREFIX, mxClient
 offset
 oldBounds, mxTemporaryCellStates
 oldScale, mxTemporaryCellStates
 oldStates, mxTemporaryCellStates
 onEncode, mxRootChangeCodec
 onInit
 open
 OPEN
 optimizeVmlReflows, mxGraphView
 Order, mxGraph
 ORDER_CELLS
 orderCells, mxGraph
 orientation
 origin, mxCellState
 OrthConnector, mxEdgeStyle
 outline
 OUTLINE_COLOR, mxConstants
 OUTLINE_HANDLE_FILLCOLOR, mxConstants
 OUTLINE_HANDLE_STROKECOLOR, mxConstants
 OUTLINE_STROKEWIDTH, mxConstants
 outlineResource, mxEditor
 Overlays, mxGraph
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
N
 name, mxEventObject
 nativeDoubleClickEnabled, mxGraph
 neighbours, mxFastOrganicLayout
 nestedBestRanks, mxMedianHybridCrossingReduction
 nextId, mxGraphModel
 nextLayerConnectedCache, mxCoordinateAssignment
 nextLayerConnectedCells, mxGraphAbstractHierarchyCell
 NO_FO, mxClient
 node, mxShape
 nodeDistance, mxCompactTreeLayout
 NODETYPE_ATTRIBUTE, mxConstants
 NODETYPE_CDATA, mxConstants
 NODETYPE_COMMENT, mxConstants
 NODETYPE_DOCUMENT, mxConstants
 NODETYPE_DOCUMENT_FRAGMENT, mxConstants
 NODETYPE_DOCUMENTTYPE, mxConstants
 NODETYPE_ELEMENT, mxConstants
 NODETYPE_ENTITY, mxConstants
 NODETYPE_ENTITY_REFERENCE, mxConstants
 NODETYPE_NOTATION, mxConstants
 NODETYPE_PROCESSING_INSTRUCTION, mxConstants
 NODETYPE_TEXT, mxConstants
 NONE, mxConstants
 noReset, mxToolbar
 NORMALIZE
 normalizeImage, mxWindow
 normalKeys, mxKeyHandler
 notify
 NOTIFY
 NS_SVG, mxConstants
 NS_XHTML, mxConstants
 NS_XLINK, mxConstants
 nudge, WeightedCellSorter
O
 objects
 OFFICE_PREFIX, mxClient
 offset
 oldBounds, mxTemporaryCellStates
 oldScale, mxTemporaryCellStates
 oldStates, mxTemporaryCellStates
 onEncode, mxRootChangeCodec
 onInit
 open
 OPEN
 optimizeVmlReflows, mxGraphView
 Order, mxGraph
 ORDER_CELLS
 orderCells, mxGraph
 orientation
 origin, mxCellState
 OrthConnector, mxEdgeStyle
 outline
 OUTLINE_COLOR, mxConstants
 OUTLINE_HANDLE_FILLCOLOR, mxConstants
 OUTLINE_HANDLE_STROKECOLOR, mxConstants
 OUTLINE_STROKEWIDTH, mxConstants
 outlineResource, mxEditor
 Overlays, mxGraph
-
mxEventObject.prototype.name
Holds the name.
Specifies if native double click events should be deteced.
mxFastOrganicLayout.prototype.neighbours
Local copy of cell neighbours.
mxMedianHybridCrossingReduction.prototype.nestedBestRanks
Stores each rank as a collection of cells in the best order found for each layer so far
mxGraphModel.prototype.nextId
Specifies the next Id to be created.
mxCoordinateAssignment.prototype.nextLayerConnectedCache
A store of connections to the layer above for speed
mxGraphAbstractHierarchyCell.prototype.nextLayerConnectedCells
A cached version of the cells this cell connects to on the next layer up
NO_FO: !document.createElementNS || document.createElementNS(
   'http://www.w3.org/2000/svg',
   'foreignObject'
) !
True if foreignObject support is not available.
mxShape.prototype.node
Holds the outermost DOM node that represents this shape.
mxCompactTreeLayout.prototype.nodeDistance
Holds the nodeDistance.
DOM node of type ATTRIBUTE.
DOM node of type CDATA.
DOM node of type COMMENT.
DOM node of type DOCUMENT.
DOM node of type DOCUMENT_FRAGMENT.
DOM node of type DOCUMENTTYPE.
DOM node of type ELEMENT.
DOM node of type ENTITY.
DOM node of type ENTITY_REFERENCE.
DOM node of type NOTATION.
DOM node of type PROCESSING_INSTRUCTION.
DOM node of type TEXT.
Defines the value for none.
mxToolbar.prototype.noReset
Specifies if resetMode requires a forced flag of true for resetting the current mode in the toolbar.
Specifies the event name for normalize.
Fires after the window is normalized, that is, it returned from maximized or minimized state.
mxWindow.prototype.normalizeImage
URL of the image to be used for the normalize icon in the titlebar.
mxKeyHandler.prototype.normalKeys
Maps from keycodes to functions for non-pressed control keys.
mxSession.prototype.notify = function(xml,
onLoad,
onError)
Sends out the specified XML to urlNotify and fires a notify event.
mxUndoableEdit.prototype.notify = function()
Hook to notify any listeners of the changes after an undo or redo has been carried out.
Specifies the event name for notify.
Same as mxEvent.CHANGE, this event can be used for classes that need to implement a sync mechanism between this model and, say, a remote model.
Fires after a notification was sent in notify.
Defines the SVG namespace.
Defines the XHTML namespace.
Defines the XLink namespace.
WeightedCellSorter.prototype.nudge
Whether or not to flip equal weight values.
+
mxEventObject.prototype.name
Holds the name.
Specifies if native double click events should be deteced.
mxFastOrganicLayout.prototype.neighbours
Local copy of cell neighbours.
mxMedianHybridCrossingReduction.prototype.nestedBestRanks
Stores each rank as a collection of cells in the best order found for each layer so far
mxGraphModel.prototype.nextId
Specifies the next Id to be created.
mxCoordinateAssignment.prototype.nextLayerConnectedCache
A store of connections to the layer above for speed
mxGraphAbstractHierarchyCell.prototype.nextLayerConnectedCells
A cached version of the cells this cell connects to on the next layer up
NO_FO: !document.createElementNS || document.createElementNS(
   'http://www.w3.org/2000/svg',
   'foreignObject'
) !
True if foreignObject support is not available.
mxShape.prototype.node
Holds the outermost DOM node that represents this shape.
mxCompactTreeLayout.prototype.nodeDistance
Holds the nodeDistance.
DOM node of type ATTRIBUTE.
DOM node of type CDATA.
DOM node of type COMMENT.
DOM node of type DOCUMENT.
DOM node of type DOCUMENT_FRAGMENT.
DOM node of type DOCUMENTTYPE.
DOM node of type ELEMENT.
DOM node of type ENTITY.
DOM node of type ENTITY_REFERENCE.
DOM node of type NOTATION.
DOM node of type PROCESSING_INSTRUCTION.
DOM node of type TEXT.
Defines the value for none.
mxToolbar.prototype.noReset
Specifies if resetMode requires a forced flag of true for resetting the current mode in the toolbar.
Specifies the event name for normalize.
Fires after the window is normalized, that is, it returned from maximized or minimized state.
mxWindow.prototype.normalizeImage
URL of the image to be used for the normalize icon in the titlebar.
mxKeyHandler.prototype.normalKeys
Maps from keycodes to functions for non-pressed control keys.
mxSession.prototype.notify = function(xml,
onLoad,
onError)
Sends out the specified XML to urlNotify and fires a notify event.
mxUndoableEdit.prototype.notify = function()
Hook to notify any listeners of the changes after an undo or redo has been carried out.
Specifies the event name for notify.
Same as mxEvent.CHANGE, this event can be used for classes that need to implement a sync mechanism between this model and, say, a remote model.
Fires after a notification was sent in notify.
Defines the SVG namespace.
Defines the XHTML namespace.
Defines the XLink namespace.
WeightedCellSorter.prototype.nudge
Whether or not to flip equal weight values.
-
mxCodec.prototype.objects
Maps from IDs to objects.
Contains all objects where any listener was added using addListener.
Prefix for VML office namespace in node names.
mxCellOverlay.prototype.offset
Holds the offset as an mxPoint.
mxCompactTreeLayout.prototype.offset = function(p1,
p2,
a1,
a2,
b1,
b2)
mxGeometry.prototype.offset
For edges, this holds the offset (in pixels) from the position defined by x and y on the edge.
mxTemporaryCellStates.prototype.oldBounds
Holds the height of the rectangle.
mxTemporaryCellStates.prototype.oldScale
Holds the height of the rectangle.
mxTemporaryCellStates.prototype.oldStates
Holds the height of the rectangle.
Encodes the child recursively.
Called from within the constructor.
Called from within the constructor.
mxEditor.prototype.open = function (filename)
Opens the specified file synchronously and parses it using readGraphModel.
mxPrintPreview.prototype.open = function(css)
Shows the print preview window.
open: function(filename)
Opens the specified file from the local filesystem and returns the contents of the file as a string.
Fires after a file was opened in open.
Specifies the event name for open.
mxGraphView.prototype.optimizeVmlReflows
Specifies if the canvas should be hidden while rendering in IE8 standards mode and quirks mode.
Specifies the event name for orderCells.
Fires between begin- and endUpdate in orderCells.
mxGraph.prototype.orderCells = function(back,
cells)
Moves the given cells to the front or back.
mxCoordinateAssignment.prototype.orientation
The position of the root ( start ) node(s) relative to the rest of the laid out graph.
mxHierarchicalLayout.prototype.orientation
The position of the root node(s) relative to the laid out graph in.
mxSwimlaneLayout.prototype.orientation
The position of the root node(s) relative to the laid out graph in.
mxCellState.prototype.origin
mxPoint that holds the origin for all child cells.
OrthConnector: function(state,
source,
target,
points,
result)
Implements a local orthogonal router between the given cells.
mxEditor.prototype.outline
Reference to the mxWindow that contains the outline.
Reference to the mxGraph that renders the outline.
Defines the color to be used for the outline rectangle border.
Defines the color to be used for the outline sizer fill color.
Defines the color to be used for the outline sizer stroke color.
Defines the strokewidth to be used for the outline rectangle stroke width.
mxEditor.prototype.outlineResource
Specifies the resource key for the outline window title.
+
mxCodec.prototype.objects
Maps from IDs to objects.
Contains all objects where any listener was added using addListener.
Prefix for VML office namespace in node names.
mxCellOverlay.prototype.offset
Holds the offset as an mxPoint.
mxCompactTreeLayout.prototype.offset = function(p1,
p2,
a1,
a2,
b1,
b2)
mxGeometry.prototype.offset
For edges, this holds the offset (in pixels) from the position defined by x and y on the edge.
mxTemporaryCellStates.prototype.oldBounds
Holds the height of the rectangle.
mxTemporaryCellStates.prototype.oldScale
Holds the height of the rectangle.
mxTemporaryCellStates.prototype.oldStates
Holds the height of the rectangle.
Encodes the child recursively.
Called from within the constructor.
Called from within the constructor.
mxEditor.prototype.open = function (filename)
Opens the specified file synchronously and parses it using readGraphModel.
mxPrintPreview.prototype.open = function(css)
Shows the print preview window.
open: function(filename)
Opens the specified file from the local filesystem and returns the contents of the file as a string.
Fires after a file was opened in open.
Specifies the event name for open.
mxGraphView.prototype.optimizeVmlReflows
Specifies if the canvas should be hidden while rendering in IE8 standards mode and quirks mode.
Specifies the event name for orderCells.
Fires between begin- and endUpdate in orderCells.
mxGraph.prototype.orderCells = function(back,
cells)
Moves the given cells to the front or back.
mxCoordinateAssignment.prototype.orientation
The position of the root ( start ) node(s) relative to the rest of the laid out graph.
mxHierarchicalLayout.prototype.orientation
The position of the root node(s) relative to the laid out graph in.
mxSwimlaneLayout.prototype.orientation
The position of the root node(s) relative to the laid out graph in.
mxCellState.prototype.origin
mxPoint that holds the origin for all child cells.
OrthConnector: function(state,
source,
target,
points,
result)
Implements a local orthogonal router between the given cells.
mxEditor.prototype.outline
Reference to the mxWindow that contains the outline.
Reference to the mxGraph that renders the outline.
Defines the color to be used for the outline rectangle border.
Defines the color to be used for the outline sizer fill color.
Defines the color to be used for the outline sizer stroke color.
Defines the strokewidth to be used for the outline rectangle stroke width.
mxEditor.prototype.outlineResource
Specifies the resource key for the outline window title.
diff --git a/docs/js-api/index/General13.html b/docs/js-api/index/General13.html index 374992396..c80102ed1 100644 --- a/docs/js-api/index/General13.html +++ b/docs/js-api/index/General13.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
P
 PAGE_FORMAT_A4_PORTRAIT, mxConstants
 PAGE_FORMAT_LETTER_PORTRAIT, mxConstants
 pageBreakColor, mxGraph
 pageBreakDashed, mxGraph
 pageBreaksVisible, mxGraph
 pageCount, mxPrintPreview
 pageFormat
 pageScale, mxGraph
 pageSelector, mxPrintPreview
 pageVisible, mxGraph
 paint
 paintBackground
 paintEdgeShape
 paintForeground
 paintGlassEffect, mxShape
 paintImage, mxLabel
 paintIndicator, mxLabel
 paintLine
 paintRoundedSwimlane, mxSwimlane
 paintStencilShape, mxShape
 paintSwimlane, mxSwimlane
 paintVertexShape
 PAN
 PAN_END
 PAN_START
 panDx, mxGraph
 panDy, mxGraph
 panGraph
 panningEnabled, mxPanningHandler
 para, mxUtils
 parallelEdgeSpacing
 params, mxXmlRequest
 parent
 parentBorder
 parentForCellChanged, mxGraphModel
 parentsChanged, mxCompactTreeLayout
 parse, mxResources
 parseConstraint, mxStencil
 parseConstraints, mxStencil
 parseDescription, mxStencil
 parseXml, mxUtils
 password, mxXmlRequest
 paste, mxClipboard
 path
 PATH_SEPARATOR, mxCellPath
 perimeter, mxConnectionConstraint
 PERIMETER_ELLIPSE, mxConstants
 PERIMETER_RECTANGLE, mxConstants
 PERIMETER_RHOMBUS, mxConstants
 PERIMETER_TRIANGLE, mxConstants
 placeLabels, mxEdgeLabelLayout
 placementStage
 plainText, mxVmlCanvas2D
 point, mxConnectionConstraint
 pointerEvents
 pointImage, mxConstraintHandler
 points
 poll, mxSession
 polling, mxSession
 popup
 popupHandler, mxEditor
 portsEnabled, mxGraph
 post, mxUtils
 POST
 postConfigureShape, mxCellRenderer
 postDiagram, mxEditor
 postfix, mxGraphModel
 postParameterName, mxEditor
 postProcessCellStyle, mxGraph
 preferHtml, mxEdgeHandler
 preferPageSize, mxGraph
 prefHozEdgeSep
 prefix, mxGraphModel
 prefVertEdgeOff
 preserveImageAspect, mxImageShape
 previewColor, mxGraphHandler
 previewElement, mxDragSource
 previewEnabled, mxPanningHandler
 previousLayerConnectedCache, mxCoordinateAssignment
 previousLayerConnectedCells, mxGraphAbstractHierarchyCell
 print, mxPrintPreview
 printOverlays, mxPrintPreview
 printScreen, mxUtils
 process, mxCellMarker
 processChange, mxGraph
 processDelta, mxSession
 processEdit, mxSession
 processInclude, mxObjectCodec
 processReversedEdge, mxCoordinateAssignment
 processState, mxSession
 prompt, mxUtils
 properties, mxEventObject
 propertiesHeight, mxEditor
 propertiesResource, mxEditor
 propertiesWidth, mxEditor
 ptSeqDistSq, mxUtils
 put, mxDictionary
 putCellStyle, mxStylesheet
 putDefaultEdgeStyle, mxStylesheet
 putDefaultVertexStyle, mxStylesheet
 putImage, mxImageBundle
 putObject, mxCodec
 putValue, mxStyleRegistry
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
P
 PAGE_FORMAT_A4_PORTRAIT, mxConstants
 PAGE_FORMAT_LETTER_PORTRAIT, mxConstants
 pageBreakColor, mxGraph
 pageBreakDashed, mxGraph
 pageBreaksVisible, mxGraph
 pageCount, mxPrintPreview
 pageFormat
 pageScale, mxGraph
 pageSelector, mxPrintPreview
 pageVisible, mxGraph
 paint
 paintBackground
 paintEdgeShape
 paintForeground
 paintGlassEffect, mxShape
 paintImage, mxLabel
 paintIndicator, mxLabel
 paintLine
 paintRoundedSwimlane, mxSwimlane
 paintStencilShape, mxShape
 paintSwimlane, mxSwimlane
 paintVertexShape
 PAN
 PAN_END
 PAN_START
 panDx, mxGraph
 panDy, mxGraph
 panGraph
 panningEnabled, mxPanningHandler
 para, mxUtils
 parallelEdgeSpacing
 params, mxXmlRequest
 parent
 parentBorder
 parentForCellChanged, mxGraphModel
 parentsChanged, mxCompactTreeLayout
 parse, mxResources
 parseConstraint, mxStencil
 parseConstraints, mxStencil
 parseDescription, mxStencil
 parseXml, mxUtils
 password, mxXmlRequest
 paste, mxClipboard
 path
 PATH_SEPARATOR, mxCellPath
 perimeter, mxConnectionConstraint
 PERIMETER_ELLIPSE, mxConstants
 PERIMETER_RECTANGLE, mxConstants
 PERIMETER_RHOMBUS, mxConstants
 PERIMETER_TRIANGLE, mxConstants
 placeLabels, mxEdgeLabelLayout
 placementStage
 plainText, mxVmlCanvas2D
 point, mxConnectionConstraint
 pointerEvents
 pointImage, mxConstraintHandler
 points
 poll, mxSession
 polling, mxSession
 popup
 popupHandler, mxEditor
 portsEnabled, mxGraph
 post, mxUtils
 POST
 postConfigureShape, mxCellRenderer
 postDiagram, mxEditor
 postfix, mxGraphModel
 postParameterName, mxEditor
 postProcessCellStyle, mxGraph
 preferHtml, mxEdgeHandler
 preferPageSize, mxGraph
 prefHozEdgeSep
 prefix, mxGraphModel
 prefVertEdgeOff
 preserveImageAspect, mxImageShape
 previewColor, mxGraphHandler
 previewElement, mxDragSource
 previewEnabled, mxPanningHandler
 previousLayerConnectedCache, mxCoordinateAssignment
 previousLayerConnectedCells, mxGraphAbstractHierarchyCell
 print, mxPrintPreview
 printOverlays, mxPrintPreview
 printScreen, mxUtils
 process, mxCellMarker
 processChange, mxGraph
 processDelta, mxSession
 processEdit, mxSession
 processInclude, mxObjectCodec
 processReversedEdge, mxCoordinateAssignment
 processState, mxSession
 prompt, mxUtils
 properties, mxEventObject
 propertiesHeight, mxEditor
 propertiesResource, mxEditor
 propertiesWidth, mxEditor
 ptSeqDistSq, mxUtils
 put, mxDictionary
 putCellStyle, mxStylesheet
 putDefaultEdgeStyle, mxStylesheet
 putDefaultVertexStyle, mxStylesheet
 putImage, mxImageBundle
 putObject, mxCodec
 putValue, mxStyleRegistry
-
Defines the rectangle for the A4 portrait page format.
Defines the rectangle for the Letter portrait page format.
mxGraph.prototype.pageBreakColor
Specifies the color for page breaks.
mxGraph.prototype.pageBreakDashed
Specifies the page breaks should be dashed.
mxGraph.prototype.pageBreaksVisible
Specifies if a dashed line should be drawn between multiple pages.
mxPrintPreview.prototype.pageCount
Holds the actual number of pages in the preview.
mxGraph.prototype.pageFormat
Specifies the page format for the background page.
mxPrintPreview.prototype.pageFormat
Holds the mxRectangle that defines the page format.
mxGraph.prototype.pageScale
Specifies the scale of the background page.
mxPrintPreview.prototype.pageSelector
Boolean that specifies if the page selector should be displayed.
mxGraph.prototype.pageVisible
Specifies if the background page should be visible.
mxShape.prototype.paint = function(c)
Generic rendering code.
mxText.prototype.paint = function(c)
Generic rendering code.
mxDoubleEllipse.prototype.paintBackground = function(c,
x,
y,
w,
h)
Paints the background.
mxRectangleShape.prototype.paintBackground = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxShape.prototype.paintBackground = function(c,
x,
y,
w,
h)
Hook for subclassers.
mxArrow.prototype.paintEdgeShape = function(c,
pts)
Paints the line shape.
mxConnector.prototype.paintEdgeShape = function(c,
pts)
Paints the line shape.
mxPolyline.prototype.paintEdgeShape = function(c,
pts)
Paints the line shape.
mxShape.prototype.paintEdgeShape = function(c,
pts)
Hook for subclassers.
mxDoubleEllipse.prototype.paintForeground = function(c,
x,
y,
w,
h)
Paints the foreground.
mxLabel.prototype.paintForeground = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxRectangleShape.prototype.paintForeground = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxShape.prototype.paintForeground = function(c,
x,
y,
w,
h)
Hook for subclassers.
mxShape.prototype.paintGlassEffect = function(c,
x,
y,
w,
h,
arc)
Paints the glass gradient effect.
mxLabel.prototype.paintImage = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxLabel.prototype.paintIndicator = function(c,
x,
y,
w,
h)
Generic background painting implementation.
Paints the line shape.
mxPolyline.prototype.paintLine = function(c,
pts,
rounded)
Paints the line shape.
mxSwimlane.prototype.paintRoundedSwimlane = function(c,
x,
y,
w,
h,
start,
r,
fill,
swimlaneLine)
Paints the swimlane vertex shape.
mxShape.prototype.paintStencilShape = function(c,
x,
y,
w,
h)
Paints the line shape.
mxSwimlane.prototype.paintSwimlane = function(c,
x,
y,
w,
h,
start,
fill,
swimlaneLine)
Paints the swimlane vertex shape.
mxActor.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Redirects to redrawPath for subclasses to work.
mxCylinder.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Redirects to redrawPath for subclasses to work.
mxEllipse.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Paints the ellipse shape.
mxImageShape.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxLine.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Redirects to redrawPath for subclasses to work.
mxRhombus.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Generic painting implementation.
mxShape.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Paints the vertex shape.
mxSwimlane.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Paints the swimlane vertex shape.
Specifies the event name for pan.
Fires while handle is processing events.
Specifies the event name for panEnd.
Fires when the panning handler changes its active state to false.
Specifies the event name for panStart.
Fires when the panning handler changes its active state to true.
mxGraph.prototype.panDx
Current horizontal panning value.
mxGraph.prototype.panDy
Current vertical panning value.
mxGraph.prototype.panGraph = function(dx,
dy)
Shifts the graph display by the given amount.
mxPanningHandler.prototype.panGraph = function(dx,
dy)
Pans graph by the given amount.
mxPanningHandler.prototype.panningEnabled
Specifies if panning should be enabled.
para: function(parent,
text)
Appends a new paragraph with the given text to the specified parent and returns the paragraph.
mxCoordinateAssignment.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges.
mxHierarchicalLayout.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges
mxSwimlaneLayout.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges
mxXmlRequest.prototype.params
Holds the form encoded data for the POST request.
mxCell.prototype.parent
Reference to the parent cell.
mxGraphHierarchyModel.prototype.parent
The parent cell whose children are being laid out
mxGraphLayout.prototype.parent
The parent cell of the layout, if any
mxSwimlaneModel.prototype.parent
The parent cell whose children are being laid out
mxHierarchicalLayout.prototype.parentBorder
The border to be added around the children if the parent is to be resized using resizeParent.
mxSwimlaneLayout.prototype.parentBorder
The border to be added around the children if the parent is to be resized using resizeParent.
mxGraphModel.prototype.parentForCellChanged = function(cell,
parent,
index)
Inner callback to update the parent of a cell using mxCell.insert on the parent and return the previous parent.
mxCompactTreeLayout.prototype.parentsChanged
A set of the parents that need updating based on children process as part of the layout.
parse: function(text)
Parses the key, value pairs in the specified text and stores them as local resources.
mxStencil.prototype.parseConstraint = function(node)
Parses the given XML node and returns its mxConnectionConstraint.
mxStencil.prototype.parseConstraints = function()
Reads the constraints from desc into constraints using parseConstraint.
mxStencil.prototype.parseDescription = function()
Reads w0, h0, aspect, bgNodes and fgNodes from desc.
parseXml: function()
Parses the specified XML string into a new XML document and returns the new document.
mxXmlRequest.prototype.password
Specifies the password to be used for authentication.
paste: function(graph)
Pastes the cells into the specified graph restoring the relation to parents, if possible.
mxAbstractCanvas2D.prototype.path
Holds the current path as an array.
Holds the current DOM node.
Holds the current DOM node.
Defines the separator between the path components.
mxConnectionConstraint.prototype.perimeter
Boolean that specifies if the point should be projected onto the perimeter of the terminal.
Name of the ellipse perimeter.
Name of the rectangle perimeter.
Name of the rhombus perimeter.
PERIMETER_TRIANGLE: 'trianglePerimeter' }
Name of the triangle perimeter.
mxEdgeLabelLayout.prototype.placeLabels = function(v,
e)
Places the labels of the given edges.
mxHierarchicalLayout.prototype.placementStage = function(initialX,
parent)
Executes the placement stage using mxCoordinateAssignment.
mxSwimlaneLayout.prototype.placementStage = function(initialX,
parent)
Executes the placement stage using mxCoordinateAssignment.
mxVmlCanvas2D.prototype.plainText = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the outline of the current path.
mxConnectionConstraint.prototype.point
mxPoint that specifies the fixed location of the connection point.
mxAbstractCanvas2D.prototype.pointerEvents
Boolean value that specifies if events should be handled.
mxShape.prototype.pointerEvents
Specifies if pointer events should be handled.
mxConstraintHandler.prototype.pointImage
mxImage to be used as the image for fixed connection points.
mxGeometry.prototype.points
Array of mxPoints which specifies the control points along the edge.
mxShape.prototype.points
Holds the array of mxPoints that specify the points of this shape.
mxSession.prototype.poll = function()
Sends an asynchronous GET request to urlPoll.
mxSession.prototype.polling
mxPopupMenu.prototype.popup = function(x,
y,
cell,
evt)
Shows the popup menu for the given event and cell.
popup: function(content,
isInternalWindow)
Shows the specified text content in a new mxWindow or a new browser window if isInternalWindow is false.
mxEditor.prototype.popupHandler
Holds a mxDefaultPopupMenu for displaying popupmenus.
mxGraph.prototype.portsEnabled
Specifies if ports are enabled.
post: function(url,
params,
onload,
onerror)
Posts the specified params to the given URL asynchronously and invokes the given functions depending on the request status.
Fires if a successful response was received in postDiagram.
Specifies the event name for post.
mxCellRenderer.prototype.postConfigureShape = function(state)
Replaces any reserved words used for attributes, eg.
mxEditor.prototype.postDiagram = function (url,
data)
Hook for subclassers to override the posting of a diagram represented by the given node to the given URL.
mxGraphModel.prototype.postfix
Defines the postfix of new Ids.
mxEditor.prototype.postParameterName
Specifies if the name of the post parameter that contains the diagram data in a post request to the server.
mxGraph.prototype.postProcessCellStyle = function(style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
mxEdgeHandler.prototype.preferHtml
Specifies if bends should be added to the graph container.
mxGraph.prototype.preferPageSize
Specifies if the graph size should be rounded to the next page number in sizeDidChange.
mxCompactTreeLayout.prototype.prefHozEdgeSep
The preferred horizontal distance between edges exiting a vertex.
mxCoordinateAssignment.prototype.prefHozEdgeSep
The preferred horizontal distance between edges exiting a vertex
mxGraphModel.prototype.prefix
Defines the prefix of new Ids.
mxCompactTreeLayout.prototype.prefVertEdgeOff
The preferred vertical offset between edges exiting a vertex.
mxCoordinateAssignment.prototype.prefVertEdgeOff
The preferred vertical offset between edges exiting a vertex
mxImageShape.prototype.preserveImageAspect
Switch to preserve image aspect.
mxGraphHandler.prototype.previewColor
Specifies the color of the preview shape.
mxDragSource.prototype.previewElement
Optional mxRectangle that specifies the unscaled size of the preview.
mxPanningHandler.prototype.previewEnabled
Specifies if the panning should be previewed.
mxCoordinateAssignment.prototype.previousLayerConnectedCache
A store of connections to the layer below for speed
mxGraphAbstractHierarchyCell.prototype.previousLayerConnectedCells
A cached version of the cells this cell connects to on the next layer down
mxPrintPreview.prototype.print = function(css)
Opens the print preview and shows the print dialog.
mxPrintPreview.prototype.printOverlays
Specifies if overlays should be printed.
printScreen: function(graph)
Prints the specified graph using a new window and the built-in print dialog.
mxCellMarker.prototype.process = function(me)
Processes the given event and cell and marks the state returned by getState with the color returned by getMarkerColor.
mxGraph.prototype.processChange = function(change)
Processes the given change and invalidates the respective cached data in view.
mxSession.prototype.processDelta = function(node)
Processes the given delta node which contains a sequence of edits which in turn map to one transaction on the remote model each.
mxSession.prototype.processEdit = function(node)
Processes the given edit by executing its changes and firing the required events via the model.
mxObjectCodec.prototype.processInclude = function(dec,
node,
into)
Returns true if the given node is an include directive and executes the include by decoding the XML document.
mxCoordinateAssignment.prototype.processReversedEdge = function(graph,
model)
Hook to add additional processing
mxSession.prototype.processState = function(node)
Processes the given state node which contains the current state of the remote model.
prompt: function(message,
defaultValue)
Displays the given message in a prompt dialog.
mxEventObject.prototype.properties
Holds the properties as an associative array.
mxEditor.prototype.propertiesHeight
Specifies the height of the properties window in pixels.
mxEditor.prototype.propertiesResource
Specifies the resource key for the properties window title.
mxEditor.prototype.propertiesWidth
Specifies the width of the properties window in pixels.
Returns the square distance between a segment and a point.
mxDictionary.prototype.put = function(key,
value)
Stores the value under the given key and returns the previous value for that key.
mxStylesheet.prototype.putCellStyle = function(name,
style)
Stores the given map of key, value pairs under the given name in styles.
mxStylesheet.prototype.putDefaultEdgeStyle = function(style)
Sets the default style for edges using defaultEdge as the stylename.
mxStylesheet.prototype.putDefaultVertexStyle = function(style)
Sets the default style for vertices using defaultVertex as the stylename.
mxImageBundle.prototype.putImage = function(key,
value,
fallback)
Adds the specified entry to the map.
mxCodec.prototype.putObject = function(id,
obj)
Assoiates the given object with the given ID and returns the given object.
putValue: function(name,
obj)
Puts the given object into the registry under the given name.
+
Defines the rectangle for the A4 portrait page format.
Defines the rectangle for the Letter portrait page format.
mxGraph.prototype.pageBreakColor
Specifies the color for page breaks.
mxGraph.prototype.pageBreakDashed
Specifies the page breaks should be dashed.
mxGraph.prototype.pageBreaksVisible
Specifies if a dashed line should be drawn between multiple pages.
mxPrintPreview.prototype.pageCount
Holds the actual number of pages in the preview.
mxGraph.prototype.pageFormat
Specifies the page format for the background page.
mxPrintPreview.prototype.pageFormat
Holds the mxRectangle that defines the page format.
mxGraph.prototype.pageScale
Specifies the scale of the background page.
mxPrintPreview.prototype.pageSelector
Boolean that specifies if the page selector should be displayed.
mxGraph.prototype.pageVisible
Specifies if the background page should be visible.
mxShape.prototype.paint = function(c)
Generic rendering code.
mxText.prototype.paint = function(c)
Generic rendering code.
mxDoubleEllipse.prototype.paintBackground = function(c,
x,
y,
w,
h)
Paints the background.
mxRectangleShape.prototype.paintBackground = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxShape.prototype.paintBackground = function(c,
x,
y,
w,
h)
Hook for subclassers.
mxArrow.prototype.paintEdgeShape = function(c,
pts)
Paints the line shape.
mxConnector.prototype.paintEdgeShape = function(c,
pts)
Paints the line shape.
mxPolyline.prototype.paintEdgeShape = function(c,
pts)
Paints the line shape.
mxShape.prototype.paintEdgeShape = function(c,
pts)
Hook for subclassers.
mxDoubleEllipse.prototype.paintForeground = function(c,
x,
y,
w,
h)
Paints the foreground.
mxLabel.prototype.paintForeground = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxRectangleShape.prototype.paintForeground = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxShape.prototype.paintForeground = function(c,
x,
y,
w,
h)
Hook for subclassers.
mxShape.prototype.paintGlassEffect = function(c,
x,
y,
w,
h,
arc)
Paints the glass gradient effect.
mxLabel.prototype.paintImage = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxLabel.prototype.paintIndicator = function(c,
x,
y,
w,
h)
Generic background painting implementation.
Paints the line shape.
mxPolyline.prototype.paintLine = function(c,
pts,
rounded)
Paints the line shape.
mxSwimlane.prototype.paintRoundedSwimlane = function(c,
x,
y,
w,
h,
start,
r,
fill,
swimlaneLine)
Paints the swimlane vertex shape.
mxShape.prototype.paintStencilShape = function(c,
x,
y,
w,
h)
Paints the line shape.
mxSwimlane.prototype.paintSwimlane = function(c,
x,
y,
w,
h,
start,
fill,
swimlaneLine)
Paints the swimlane vertex shape.
mxActor.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Redirects to redrawPath for subclasses to work.
mxCylinder.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Redirects to redrawPath for subclasses to work.
mxEllipse.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Paints the ellipse shape.
mxImageShape.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Generic background painting implementation.
mxLine.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Redirects to redrawPath for subclasses to work.
mxRhombus.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Generic painting implementation.
mxShape.prototype.paintVertexShape = function(c,
x,
y,
w,
h)
Paints the vertex shape.
Paints the swimlane vertex shape.
Specifies the event name for pan.
Fires while handle is processing events.
Specifies the event name for panEnd.
Fires when the panning handler changes its active state to false.
Specifies the event name for panStart.
Fires when the panning handler changes its active state to true.
mxGraph.prototype.panDx
Current horizontal panning value.
mxGraph.prototype.panDy
Current vertical panning value.
mxGraph.prototype.panGraph = function(dx,
dy)
Shifts the graph display by the given amount.
mxPanningHandler.prototype.panGraph = function(dx,
dy)
Pans graph by the given amount.
mxPanningHandler.prototype.panningEnabled
Specifies if panning should be enabled.
para: function(parent,
text)
Appends a new paragraph with the given text to the specified parent and returns the paragraph.
mxCoordinateAssignment.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges.
mxHierarchicalLayout.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges
mxSwimlaneLayout.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges
mxXmlRequest.prototype.params
Holds the form encoded data for the POST request.
mxCell.prototype.parent
Reference to the parent cell.
mxGraphHierarchyModel.prototype.parent
The parent cell whose children are being laid out
mxGraphLayout.prototype.parent
The parent cell of the layout, if any
mxSwimlaneModel.prototype.parent
The parent cell whose children are being laid out
mxHierarchicalLayout.prototype.parentBorder
The border to be added around the children if the parent is to be resized using resizeParent.
mxSwimlaneLayout.prototype.parentBorder
The border to be added around the children if the parent is to be resized using resizeParent.
mxGraphModel.prototype.parentForCellChanged = function(cell,
parent,
index)
Inner callback to update the parent of a cell using mxCell.insert on the parent and return the previous parent.
mxCompactTreeLayout.prototype.parentsChanged
A set of the parents that need updating based on children process as part of the layout.
parse: function(text)
Parses the key, value pairs in the specified text and stores them as local resources.
mxStencil.prototype.parseConstraint = function(node)
Parses the given XML node and returns its mxConnectionConstraint.
mxStencil.prototype.parseConstraints = function()
Reads the constraints from desc into constraints using parseConstraint.
mxStencil.prototype.parseDescription = function()
Reads w0, h0, aspect, bgNodes and fgNodes from desc.
parseXml: function()
Parses the specified XML string into a new XML document and returns the new document.
mxXmlRequest.prototype.password
Specifies the password to be used for authentication.
paste: function(graph)
Pastes the cells into the specified graph restoring the relation to parents, if possible.
mxAbstractCanvas2D.prototype.path
Holds the current path as an array.
Holds the current DOM node.
Holds the current DOM node.
Defines the separator between the path components.
mxConnectionConstraint.prototype.perimeter
Boolean that specifies if the point should be projected onto the perimeter of the terminal.
Name of the ellipse perimeter.
Name of the rectangle perimeter.
Name of the rhombus perimeter.
PERIMETER_TRIANGLE: 'trianglePerimeter' }
Name of the triangle perimeter.
mxEdgeLabelLayout.prototype.placeLabels = function(v,
e)
Places the labels of the given edges.
mxHierarchicalLayout.prototype.placementStage = function(initialX,
parent)
Executes the placement stage using mxCoordinateAssignment.
mxSwimlaneLayout.prototype.placementStage = function(initialX,
parent)
Executes the placement stage using mxCoordinateAssignment.
mxVmlCanvas2D.prototype.plainText = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the outline of the current path.
mxConnectionConstraint.prototype.point
mxPoint that specifies the fixed location of the connection point.
mxAbstractCanvas2D.prototype.pointerEvents
Boolean value that specifies if events should be handled.
mxShape.prototype.pointerEvents
Specifies if pointer events should be handled.
mxConstraintHandler.prototype.pointImage
mxImage to be used as the image for fixed connection points.
mxGeometry.prototype.points
Array of mxPoints which specifies the control points along the edge.
mxShape.prototype.points
Holds the array of mxPoints that specify the points of this shape.
mxSession.prototype.poll = function()
Sends an asynchronous GET request to urlPoll.
mxSession.prototype.polling
mxPopupMenu.prototype.popup = function(x,
y,
cell,
evt)
Shows the popup menu for the given event and cell.
popup: function(content,
isInternalWindow)
Shows the specified text content in a new mxWindow or a new browser window if isInternalWindow is false.
mxEditor.prototype.popupHandler
Holds a mxDefaultPopupMenu for displaying popupmenus.
mxGraph.prototype.portsEnabled
Specifies if ports are enabled.
post: function(url,
params,
onload,
onerror)
Posts the specified params to the given URL asynchronously and invokes the given functions depending on the request status.
Fires if a successful response was received in postDiagram.
Specifies the event name for post.
mxCellRenderer.prototype.postConfigureShape = function(state)
Replaces any reserved words used for attributes, eg.
mxEditor.prototype.postDiagram = function (url,
data)
Hook for subclassers to override the posting of a diagram represented by the given node to the given URL.
mxGraphModel.prototype.postfix
Defines the postfix of new Ids.
mxEditor.prototype.postParameterName
Specifies if the name of the post parameter that contains the diagram data in a post request to the server.
mxGraph.prototype.postProcessCellStyle = function(style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
mxEdgeHandler.prototype.preferHtml
Specifies if bends should be added to the graph container.
mxGraph.prototype.preferPageSize
Specifies if the graph size should be rounded to the next page number in sizeDidChange.
mxCompactTreeLayout.prototype.prefHozEdgeSep
The preferred horizontal distance between edges exiting a vertex.
mxCoordinateAssignment.prototype.prefHozEdgeSep
The preferred horizontal distance between edges exiting a vertex
mxGraphModel.prototype.prefix
Defines the prefix of new Ids.
mxCompactTreeLayout.prototype.prefVertEdgeOff
The preferred vertical offset between edges exiting a vertex.
mxCoordinateAssignment.prototype.prefVertEdgeOff
The preferred vertical offset between edges exiting a vertex
mxImageShape.prototype.preserveImageAspect
Switch to preserve image aspect.
mxGraphHandler.prototype.previewColor
Specifies the color of the preview shape.
mxDragSource.prototype.previewElement
Optional mxRectangle that specifies the unscaled size of the preview.
mxPanningHandler.prototype.previewEnabled
Specifies if the panning should be previewed.
mxCoordinateAssignment.prototype.previousLayerConnectedCache
A store of connections to the layer below for speed
mxGraphAbstractHierarchyCell.prototype.previousLayerConnectedCells
A cached version of the cells this cell connects to on the next layer down
mxPrintPreview.prototype.print = function(css)
Opens the print preview and shows the print dialog.
mxPrintPreview.prototype.printOverlays
Specifies if overlays should be printed.
printScreen: function(graph)
Prints the specified graph using a new window and the built-in print dialog.
mxCellMarker.prototype.process = function(me)
Processes the given event and cell and marks the state returned by getState with the color returned by getMarkerColor.
mxGraph.prototype.processChange = function(change)
Processes the given change and invalidates the respective cached data in view.
mxSession.prototype.processDelta = function(node)
Processes the given delta node which contains a sequence of edits which in turn map to one transaction on the remote model each.
mxSession.prototype.processEdit = function(node)
Processes the given edit by executing its changes and firing the required events via the model.
mxObjectCodec.prototype.processInclude = function(dec,
node,
into)
Returns true if the given node is an include directive and executes the include by decoding the XML document.
mxCoordinateAssignment.prototype.processReversedEdge = function(graph,
model)
Hook to add additional processing
mxSession.prototype.processState = function(node)
Processes the given state node which contains the current state of the remote model.
prompt: function(message,
defaultValue)
Displays the given message in a prompt dialog.
mxEventObject.prototype.properties
Holds the properties as an associative array.
mxEditor.prototype.propertiesHeight
Specifies the height of the properties window in pixels.
mxEditor.prototype.propertiesResource
Specifies the resource key for the properties window title.
mxEditor.prototype.propertiesWidth
Specifies the width of the properties window in pixels.
Returns the square distance between a segment and a point.
mxDictionary.prototype.put = function(key,
value)
Stores the value under the given key and returns the previous value for that key.
mxStylesheet.prototype.putCellStyle = function(name,
style)
Stores the given map of key, value pairs under the given name in styles.
mxStylesheet.prototype.putDefaultEdgeStyle = function(style)
Sets the default style for edges using defaultEdge as the stylename.
mxStylesheet.prototype.putDefaultVertexStyle = function(style)
Sets the default style for vertices using defaultVertex as the stylename.
mxImageBundle.prototype.putImage = function(key,
value,
fallback)
Adds the specified entry to the map.
mxCodec.prototype.putObject = function(id,
obj)
Assoiates the given object with the given ID and returns the given object.
putValue: function(name,
obj)
Puts the given object into the registry under the given name.
diff --git a/docs/js-api/index/General14.html b/docs/js-api/index/General14.html index 0af97cda9..8e73b41a9 100644 --- a/docs/js-api/index/General14.html +++ b/docs/js-api/index/General14.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
Q
 quadOp, mxAbstractCanvas2D
 quadTo
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
Q
 quadOp, mxAbstractCanvas2D
 quadTo
-
mxAbstractCanvas2D.prototype.quadOp
Contains the string used for quadratic paths.
mxAbstractCanvas2D.prototype.quadTo = function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
mxVmlCanvas2D.prototype.quadTo = function(x1,
y1,
x2,
y2)
Replaces quadratic curve with bezier curve in VML.
mxXmlCanvas2D.prototype.quadTo = function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
+
mxAbstractCanvas2D.prototype.quadOp
Contains the string used for quadratic paths.
mxAbstractCanvas2D.prototype.quadTo = function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
mxVmlCanvas2D.prototype.quadTo = function(x1,
y1,
x2,
y2)
Replaces quadratic curve with bezier curve in VML.
mxXmlCanvas2D.prototype.quadTo = function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
diff --git a/docs/js-api/index/General15.html b/docs/js-api/index/General15.html index e402b4a78..3b74f8e79 100644 --- a/docs/js-api/index/General15.html +++ b/docs/js-api/index/General15.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 radius
 radiusSquared, mxFastOrganicLayout
 rankBottomY, mxCoordinateAssignment
 rankCoordinates, mxCoordinateAssignment
 rankIndex, WeightedCellSorter
 rankMedianPosition, mxCoordinateAssignment
 ranks
 ranksPerGroup, mxSwimlaneModel
 rankTopY, mxCoordinateAssignment
 rankWidths, mxCoordinateAssignment
 rankY, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 RECEIVE
 received, mxSession
 reconfigure, mxShape
 rect
 RECTANGLE_ROUNDING_FACTOR, mxConstants
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 recursiveResize, mxGraph
 redirectMouseEvents, mxEvent
 redo
 REDO
 redone, mxUndoableEdit
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawHandles
 redrawHtml, mxRectangleShape
 redrawHtmlShape
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxShape
 reduceTemperature, mxFastOrganicLayout
 refCount, mxSvgCanvas2D
 reference, mxCodec
 refresh
 REFRESH
 refreshHandler, mxSelectionCellsHandler
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relative, mxGeometry
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgGradients, mxShape
 remove
 REMOVE
 REMOVE_CELLS
 REMOVE_CELLS_FROM_PARENT
 REMOVE_OVERLAY
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent
 removeCursors, mxUtils
 removeEdge, mxCell
 removeEnabled, mxEdgeHandler
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeGestureListeners, mxEvent
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderHint, mxGraph
 rendering, mxGraphView
 RENDERING_HINT_EXACT, mxConstants
 RENDERING_HINT_FASTER, mxConstants
 RENDERING_HINT_FASTEST, mxConstants
 renderPage, mxPrintPreview
 repaint
 replaceLinefeeds, mxText
 repositionValid, mxCoordinateAssignment
 request, mxXmlRequest
 reset
 RESET
 resetEdge, mxGraph
 resetEdges
 resetEdgesOnConnect, mxGraph
 resetEdgesOnMove, mxGraph
 resetEdgesOnResize, mxGraph
 resetFirstTime, mxEditor
 resetHandler
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resetValidationState, mxGraphView
 resetViewOnRootChange, mxGraph
 resize
 RESIZE
 RESIZE_CELLS
 RESIZE_END
 RESIZE_START
 resizeCell
 resizeCells, mxGraph
 resizeChildCells, mxGraph
 resizeContainer, mxGraph
 resizeEnabled, mxSwimlaneManager
 resizeHandler, mxSpaceManager
 resizeHeight, mxDivResizer
 resizeLast, mxStackLayout
 resizeParent
 resizeSwimlane, mxSwimlaneManager
 resizeVertices, mxPartitionLayout
 resizeWidth, mxDivResizer
 resolve, mxCellPath
 resolveColor, mxCellRenderer
 resources, mxResources
 resourcesEncoded, mxResources
 restore
 restoreClone, mxGraphModel
 resume, mxSession
 RESUME
 revalidate, mxGraphView
 revalidateState, mxCellStatePreview
 reverse, mxObjectCodec
 reversePortConstraints, mxUtils
 RhombusPerimeter, mxPerimeter
 root
 ROOT
 rootChanged, mxGraphModel
 roots
 rotate
 rotateCell, mxVertexHandler
 rotatedHtmlBackground, mxVmlCanvas2D
 rotateHtml, mxAbstractCanvas2D
 rotateLabelBounds, mxCellRenderer
 rotatePoint, mxAbstractCanvas2D
 ROTATION_HANDLE, mxEvent
 rotationEnabled
 rotationRaster, mxVertexHandler
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 radius
 radiusSquared, mxFastOrganicLayout
 rankBottomY, mxCoordinateAssignment
 rankCoordinates, mxCoordinateAssignment
 rankIndex, WeightedCellSorter
 rankMedianPosition, mxCoordinateAssignment
 ranks
 ranksPerGroup, mxSwimlaneModel
 rankTopY, mxCoordinateAssignment
 rankWidths, mxCoordinateAssignment
 rankY, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 RECEIVE
 received, mxSession
 reconfigure, mxShape
 rect
 RECTANGLE_ROUNDING_FACTOR, mxConstants
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 recursiveResize, mxGraph
 redirectMouseEvents, mxEvent
 redo
 REDO
 redone, mxUndoableEdit
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawHandles
 redrawHtml, mxRectangleShape
 redrawHtmlShape
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxShape
 reduceTemperature, mxFastOrganicLayout
 refCount, mxSvgCanvas2D
 reference, mxCodec
 refresh
 REFRESH
 refreshHandler, mxSelectionCellsHandler
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relative, mxGeometry
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgGradients, mxShape
 remove
 REMOVE
 REMOVE_CELLS
 REMOVE_CELLS_FROM_PARENT
 REMOVE_OVERLAY
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent
 removeCursors, mxUtils
 removeEdge, mxCell
 removeEnabled, mxEdgeHandler
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeGestureListeners, mxEvent
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderHint, mxGraph
 rendering, mxGraphView
 RENDERING_HINT_EXACT, mxConstants
 RENDERING_HINT_FASTER, mxConstants
 RENDERING_HINT_FASTEST, mxConstants
 renderPage, mxPrintPreview
 repaint
 replaceLinefeeds, mxText
 repositionValid, mxCoordinateAssignment
 request, mxXmlRequest
 reset
 RESET
 resetEdge, mxGraph
 resetEdges
 resetEdgesOnConnect, mxGraph
 resetEdgesOnMove, mxGraph
 resetEdgesOnResize, mxGraph
 resetFirstTime, mxEditor
 resetHandler
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resetValidationState, mxGraphView
 resetViewOnRootChange, mxGraph
 resize
 RESIZE
 RESIZE_CELLS
 RESIZE_END
 RESIZE_START
 resizeCell
 resizeCells, mxGraph
 resizeChildCells, mxGraph
 resizeContainer, mxGraph
 resizeEnabled, mxSwimlaneManager
 resizeHandler, mxSpaceManager
 resizeHeight, mxDivResizer
 resizeLast, mxStackLayout
 resizeParent
 resizeSwimlane, mxSwimlaneManager
 resizeVertices, mxPartitionLayout
 resizeWidth, mxDivResizer
 resolve, mxCellPath
 resolveColor, mxCellRenderer
 resources, mxResources
 resourcesEncoded, mxResources
 restore
 restoreClone, mxGraphModel
 resume, mxSession
 RESUME
 revalidate, mxGraphView
 revalidateState, mxCellStatePreview
 reverse, mxObjectCodec
 reversePortConstraints, mxUtils
 RhombusPerimeter, mxPerimeter
 root
 ROOT
 rootChanged, mxGraphModel
 roots
 rotate
 rotateCell, mxVertexHandler
 rotatedHtmlBackground, mxVmlCanvas2D
 rotateHtml, mxAbstractCanvas2D
 rotateLabelBounds, mxCellRenderer
 rotatePoint, mxAbstractCanvas2D
 ROTATION_HANDLE, mxEvent
 rotationEnabled
 rotationRaster, mxVertexHandler
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run
-
mxCircleLayout.prototype.radius
Integer specifying the size of the radius.
mxFastOrganicLayout.prototype.radius
The approximate radius of each cell, nodes only.
mxFastOrganicLayout.prototype.radiusSquared
The approximate radius squared of each cell, nodes only.
mxCoordinateAssignment.prototype.rankBottomY
Internal cache of bottom-most value of Y for each rank
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
WeightedCellSorter.prototype.rankIndex
The index this cell is in the model rank.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxGraphHierarchyModel.prototype.ranks
Mapping from rank number to actual rank
mxSwimlaneModel.prototype.ranks
Mapping from rank number to actual rank
mxSwimlaneModel.prototype.ranksPerGroup
An array of the number of ranks within each swimlane
mxCoordinateAssignment.prototype.rankTopY
Internal cache of top-most values of Y for each rank
mxCoordinateAssignment.prototype.rankWidths
The width of all the ranks
mxCoordinateAssignment.prototype.rankY
The Y-coordinate of all the ranks
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
Specifies the event name for receive.
Fires after an XML node was received in receive.
mxSession.prototype.received
Total number of received bytes.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSvgCanvas2D.prototype.rect = function(x,
y,
w,
h)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Sets the current path to a rectangle.
mxXmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Puts a rectangle into the drawing buffer.
Defines the rounding factor for rounded rectangles in percent between 0 and 1.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
mxGraph.prototype.recursiveResize
Specifies the return value for isRecursiveResize.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
Specifies the event name for redo.
Fires afer a significant edit was redone in redo.
mxUndoableEdit.prototype.redone
Specifies if this edit has been redone.
mxEdgeSegmentHandler.prototype.redraw = function()
Overridden to invoke refresh before the redraw.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redrawHtmlShape = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Reconfigures this shape.
mxShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state,
forced)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state,
forced)
Redraws the control for the given cell state.
mxEdgeHandler.prototype.redrawHandles = function()
Redraws the handles.
mxVertexHandler.prototype.redrawHandles = function()
Redraws the handles.
mxRectangleShape.prototype.redrawHtmlShape = function()
Allow optimization by replacing VML with HTML.
mxLabel.prototype.redrawHtmlShape = function()
Generic background painting implementation.
mxText.prototype.redrawHtmlShape = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state,
forced)
Redraws the label for the given cell state.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(c,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxSvgCanvas2D.prototype.refCount
Local counter for references in SVG export.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
Specifies the event name for refresh.
Fires after refresh was executed.
mxSelectionCellsHandler.prototype.refreshHandler
Keeps a reference to an event listener for later removal.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
mxGeometry.prototype.relative
Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxShape.prototype.releaseSvgGradients = function(grads)
Paints the line shape.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
Specifies the event name for remove.
Fires if a cell has been remove from the selection.
Specifies the event name for removeCells.
Fires between begin- and endUpdate in removeCells.
Specifies the event name for removeCellsFromParent.
Fires between begin- and endUpdate in removeCellsFromParent.
Specifies the event name for removeOverlay.
Fires after an overlay is removed in removeCellOverlay and removeCellOverlays.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
mxGraphHandler.prototype.removeCellsFromParent
Specifies if cells may be moved out of their parents.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxEdgeHandler.prototype.removeEnabled
Specifies if removing bends by shift-click is enabled.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
removeGestureListeners: function(node,
startListener,
moveListener,
endListener)
Removes the given listeners from mousedown, mousemove, mouseup and the respective touch events if mxClient.IS_TOUCH is true.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxGraph.prototype.renderHint
RenderHint as it was passed to the constructor.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
Defines the exact rendering hint.
Defines the faster rendering hint.
Defines the fastest rendering hint.
mxPrintPreview.prototype.renderPage = function(w,
h,
dx,
dy,
content)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxCellHighlight.prototype.repaint = function()
Updates the highlight after a change of the model or view.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
mxText.prototype.replaceLinefeeds
Specifies if linefeeds in HTML labels should be replaced with BR tags.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxXmlRequest.prototype.request
Holds the inner, browser-specific request object.
mxAbstractCanvas2D.prototype.reset = function()
Resets the state of this canvas.
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxSvgCanvas2D.prototype.reset = function()
Returns any offsets for rendering pixels.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
Fires when the reset method is invoked.
RESET: 'reset' }
Specifies the event name for reset.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxCircleLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxCompactTreeLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxFastOrganicLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxGraph.prototype.resetEdgesOnConnect
Specifies if edge control points should be reset after the the edge has been reconnected.
mxGraph.prototype.resetEdgesOnMove
Specifies if edge control points should be reset after the move of a connected cell.
mxGraph.prototype.resetEdgesOnResize
Specifies if edge control points should be reset after the resize of a connected cell.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxCellHighlight.prototype.resetHandler
Holds the handler that automatically invokes reset if the highlight should be hidden.
mxDefaultToolbar.prototype.resetHandler
Reference to the function used to reset the toolbar.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxGraphView.prototype.resetValidationState = function()
Resets the current validation state.
mxGraph.prototype.resetViewOnRootChange
Specifies if the scale and translate should be reset if the root changes in the model.
mxCellEditor.prototype.resize = function()
Returns modified.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
Specifies the event name for resize.
Fires while the window is being resized.
Specifies the event name for resizeCells.
Fires between begin- and endUpdate in resizeCells.
Specifies the event name for resizeEnd.
Fires after the window is resized.
Specifies the event name for resizeStart.
Fires before the window is resized.
mxGraph.prototype.resizeCell = function(cell,
bounds,
recurse)
Sets the bounds of the given cell using resizeCells.
mxVertexHandler.prototype.resizeCell = function(cell,
dx,
dy,
index,
gridEnabled,
constrained)
Uses the given vector to change the bounds of the given cell in the graph using mxGraph.resizeCell.
mxGraph.prototype.resizeCells = function(cells,
bounds,
recurse)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
mxGraph.prototype.resizeChildCells = function(cell,
newGeo)
Resizes the child cells of the given cell for the given new geometry with respect to the current geometry of the cell.
mxGraph.prototype.resizeContainer
Specifies if the container should be resized to the graph size when the graph size has changed.
mxSwimlaneManager.prototype.resizeEnabled
Specifies if resizing of swimlanes should be handled.
mxSpaceManager.prototype.resizeHandler
Holds the function that handles the move event.
Boolean specifying if the height should be updated.
mxStackLayout.prototype.resizeLast
If the last element should be resized to fill out the parent.
mxCompactTreeLayout.prototype.resizeParent
If the parents should be resized to match the width/height of the children.
mxHierarchicalLayout.prototype.resizeParent
Specifies if the parent should be resized after the layout so that it contains all the child cells.
mxStackLayout.prototype.resizeParent
If the parent should be resized to match the width/height of the stack.
mxSwimlaneLayout.prototype.resizeParent
Specifies if the parent should be resized after the layout so that it contains all the child cells.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h,
parentHorizontal)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
mxPartitionLayout.prototype.resizeVertices
Boolean that specifies if vertices should be resized.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
Associative array that maps from keys to values.
Specifies whether or not values in resource files are encoded with \u or percentage.
mxAbstractCanvas2D.prototype.restore = function()
Restores the current state.
mxXmlCanvas2D.prototype.restore = function()
Restores the drawing state.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
Specifies the event name for suspend.
Fires after the session was resumed in resume.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
mxObjectCodec.prototype.reverse
Maps from from XML attribute names to fieldnames.
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
this.root
Reference to the container for the SVG content.
this.root
Reference to the container for the SVG content.
this.root
Reference to the container for the SVG content.
Fires when the current root has changed, or when the title of the current root has changed.
Specifies the event name for root.
Fires if the root in the model has changed.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
mxGraphHierarchyModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxHierarchicalLayout.prototype.roots
Holds the array of mxCell that this layout contains.
mxSwimlaneLayout.prototype.roots
Holds the array of mxCell that this layout contains.
mxSwimlaneModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxSvgCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxVmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxXmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the output around a given center.
mxVertexHandler.prototype.rotateCell = function(cell,
delta)
Rotates the given cell to the given rotation.
mxVmlCanvas2D.prototype.rotatedHtmlBackground
Background color for rotated HTML.
mxAbstractCanvas2D.prototype.rotateHtml
Switch for rotation of HTML.
mxCellRenderer.prototype.rotateLabelBounds = function(state,
bounds)
Adds the shape rotation to the given label bounds and applies the alignment and offsets.
mxAbstractCanvas2D.prototype.rotatePoint = function(x,
y,
theta,
cx,
cy)
Rotates the given point and returns the result as an mxPoint.
Index for the rotation handle in an mxMouseEvent.
mxGraphHandler.prototype.rotationEnabled
Specifies if the bounding box should allow for rotation.
mxVertexHandler.prototype.rotationEnabled
Specifies if a rotation handle should be visible.
mxVertexHandler.prototype.rotationRaster
Specifies if rotation steps should be “rasterized” depening on the distance to the handle.
mxSvgCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxXmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Puts a rounded rectangle into the drawing buffer.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
mxSwimlaneLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
+
mxCircleLayout.prototype.radius
Integer specifying the size of the radius.
mxFastOrganicLayout.prototype.radius
The approximate radius of each cell, nodes only.
mxFastOrganicLayout.prototype.radiusSquared
The approximate radius squared of each cell, nodes only.
mxCoordinateAssignment.prototype.rankBottomY
Internal cache of bottom-most value of Y for each rank
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
WeightedCellSorter.prototype.rankIndex
The index this cell is in the model rank.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxGraphHierarchyModel.prototype.ranks
Mapping from rank number to actual rank
mxSwimlaneModel.prototype.ranks
Mapping from rank number to actual rank
mxSwimlaneModel.prototype.ranksPerGroup
An array of the number of ranks within each swimlane
mxCoordinateAssignment.prototype.rankTopY
Internal cache of top-most values of Y for each rank
mxCoordinateAssignment.prototype.rankWidths
The width of all the ranks
mxCoordinateAssignment.prototype.rankY
The Y-coordinate of all the ranks
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
Specifies the event name for receive.
Fires after an XML node was received in receive.
mxSession.prototype.received
Total number of received bytes.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSvgCanvas2D.prototype.rect = function(x,
y,
w,
h)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Sets the current path to a rectangle.
mxXmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Puts a rectangle into the drawing buffer.
Defines the rounding factor for rounded rectangles in percent between 0 and 1.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
mxGraph.prototype.recursiveResize
Specifies the return value for isRecursiveResize.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
Specifies the event name for redo.
Fires afer a significant edit was redone in redo.
mxUndoableEdit.prototype.redone
Specifies if this edit has been redone.
mxEdgeSegmentHandler.prototype.redraw = function()
Overridden to invoke refresh before the redraw.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redrawHtmlShape = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Reconfigures this shape.
mxShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state,
forced)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state,
forced)
Redraws the control for the given cell state.
mxEdgeHandler.prototype.redrawHandles = function()
Redraws the handles.
mxVertexHandler.prototype.redrawHandles = function()
Redraws the handles.
mxRectangleShape.prototype.redrawHtmlShape = function()
Allow optimization by replacing VML with HTML.
mxLabel.prototype.redrawHtmlShape = function()
Generic background painting implementation.
mxText.prototype.redrawHtmlShape = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state,
forced)
Redraws the label for the given cell state.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(c,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxSvgCanvas2D.prototype.refCount
Local counter for references in SVG export.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
Specifies the event name for refresh.
Fires after refresh was executed.
mxSelectionCellsHandler.prototype.refreshHandler
Keeps a reference to an event listener for later removal.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
mxGeometry.prototype.relative
Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxShape.prototype.releaseSvgGradients = function(grads)
Paints the line shape.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
Specifies the event name for remove.
Fires if a cell has been remove from the selection.
Specifies the event name for removeCells.
Fires between begin- and endUpdate in removeCells.
Specifies the event name for removeCellsFromParent.
Fires between begin- and endUpdate in removeCellsFromParent.
Specifies the event name for removeOverlay.
Fires after an overlay is removed in removeCellOverlay and removeCellOverlays.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
mxGraphHandler.prototype.removeCellsFromParent
Specifies if cells may be moved out of their parents.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxEdgeHandler.prototype.removeEnabled
Specifies if removing bends by shift-click is enabled.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
removeGestureListeners: function(node,
startListener,
moveListener,
endListener)
Removes the given listeners from mousedown, mousemove, mouseup and the respective touch events if mxClient.IS_TOUCH is true.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxGraph.prototype.renderHint
RenderHint as it was passed to the constructor.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
Defines the exact rendering hint.
Defines the faster rendering hint.
Defines the fastest rendering hint.
mxPrintPreview.prototype.renderPage = function(w,
h,
dx,
dy,
content)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxCellHighlight.prototype.repaint = function()
Updates the highlight after a change of the model or view.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
mxText.prototype.replaceLinefeeds
Specifies if linefeeds in HTML labels should be replaced with BR tags.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxXmlRequest.prototype.request
Holds the inner, browser-specific request object.
mxAbstractCanvas2D.prototype.reset = function()
Resets the state of this canvas.
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxSvgCanvas2D.prototype.reset = function()
Returns any offsets for rendering pixels.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
Fires when the reset method is invoked.
RESET: 'reset' }
Specifies the event name for reset.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxCircleLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxCompactTreeLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxFastOrganicLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxGraph.prototype.resetEdgesOnConnect
Specifies if edge control points should be reset after the the edge has been reconnected.
mxGraph.prototype.resetEdgesOnMove
Specifies if edge control points should be reset after the move of a connected cell.
mxGraph.prototype.resetEdgesOnResize
Specifies if edge control points should be reset after the resize of a connected cell.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxCellHighlight.prototype.resetHandler
Holds the handler that automatically invokes reset if the highlight should be hidden.
mxDefaultToolbar.prototype.resetHandler
Reference to the function used to reset the toolbar.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxGraphView.prototype.resetValidationState = function()
Resets the current validation state.
mxGraph.prototype.resetViewOnRootChange
Specifies if the scale and translate should be reset if the root changes in the model.
mxCellEditor.prototype.resize = function()
Returns modified.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
Specifies the event name for resize.
Fires while the window is being resized.
Specifies the event name for resizeCells.
Fires between begin- and endUpdate in resizeCells.
Specifies the event name for resizeEnd.
Fires after the window is resized.
Specifies the event name for resizeStart.
Fires before the window is resized.
mxGraph.prototype.resizeCell = function(cell,
bounds,
recurse)
Sets the bounds of the given cell using resizeCells.
mxVertexHandler.prototype.resizeCell = function(cell,
dx,
dy,
index,
gridEnabled,
constrained)
Uses the given vector to change the bounds of the given cell in the graph using mxGraph.resizeCell.
mxGraph.prototype.resizeCells = function(cells,
bounds,
recurse)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
mxGraph.prototype.resizeChildCells = function(cell,
newGeo)
Resizes the child cells of the given cell for the given new geometry with respect to the current geometry of the cell.
mxGraph.prototype.resizeContainer
Specifies if the container should be resized to the graph size when the graph size has changed.
mxSwimlaneManager.prototype.resizeEnabled
Specifies if resizing of swimlanes should be handled.
mxSpaceManager.prototype.resizeHandler
Holds the function that handles the move event.
Boolean specifying if the height should be updated.
mxStackLayout.prototype.resizeLast
If the last element should be resized to fill out the parent.
mxCompactTreeLayout.prototype.resizeParent
If the parents should be resized to match the width/height of the children.
mxHierarchicalLayout.prototype.resizeParent
Specifies if the parent should be resized after the layout so that it contains all the child cells.
mxStackLayout.prototype.resizeParent
If the parent should be resized to match the width/height of the stack.
mxSwimlaneLayout.prototype.resizeParent
Specifies if the parent should be resized after the layout so that it contains all the child cells.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h,
parentHorizontal)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
mxPartitionLayout.prototype.resizeVertices
Boolean that specifies if vertices should be resized.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
Associative array that maps from keys to values.
Specifies whether or not values in resource files are encoded with \u or percentage.
mxAbstractCanvas2D.prototype.restore = function()
Restores the current state.
mxXmlCanvas2D.prototype.restore = function()
Restores the drawing state.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
Specifies the event name for suspend.
Fires after the session was resumed in resume.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
mxObjectCodec.prototype.reverse
Maps from from XML attribute names to fieldnames.
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
this.root
Reference to the container for the SVG content.
this.root
Reference to the container for the SVG content.
this.root
Reference to the container for the SVG content.
Fires when the current root has changed, or when the title of the current root has changed.
Specifies the event name for root.
Fires if the root in the model has changed.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
mxGraphHierarchyModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxHierarchicalLayout.prototype.roots
Holds the array of mxCell that this layout contains.
mxSwimlaneLayout.prototype.roots
Holds the array of mxCell that this layout contains.
mxSwimlaneModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxSvgCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxVmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxXmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the output around a given center.
mxVertexHandler.prototype.rotateCell = function(cell,
delta)
Rotates the given cell to the given rotation.
mxVmlCanvas2D.prototype.rotatedHtmlBackground
Background color for rotated HTML.
mxAbstractCanvas2D.prototype.rotateHtml
Switch for rotation of HTML.
mxCellRenderer.prototype.rotateLabelBounds = function(state,
bounds)
Adds the shape rotation to the given label bounds and applies the alignment and offsets.
mxAbstractCanvas2D.prototype.rotatePoint = function(x,
y,
theta,
cx,
cy)
Rotates the given point and returns the result as an mxPoint.
Index for the rotation handle in an mxMouseEvent.
mxGraphHandler.prototype.rotationEnabled
Specifies if the bounding box should allow for rotation.
mxVertexHandler.prototype.rotationEnabled
Specifies if a rotation handle should be visible.
mxVertexHandler.prototype.rotationRaster
Specifies if rotation steps should be “rasterized” depening on the distance to the handle.
mxSvgCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxXmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Puts a rounded rectangle into the drawing buffer.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
mxSwimlaneLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
diff --git a/docs/js-api/index/General16.html b/docs/js-api/index/General16.html index afe3915d2..560e82290 100644 --- a/docs/js-api/index/General16.html +++ b/docs/js-api/index/General16.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 save
 SAVE
 saveAs, mxUtils
 scale
 SCALE
 SCALE_AND_TRANSLATE
 scaleAndTranslate, mxGraphView
 scaleCell, mxGraph
 scaleGraph, mxPanningHandler
 scaleGrid, mxGraphHandler
 scrollCellToVisible, mxGraph
 scrollOnMove, mxGraphHandler
 scrollPointToVisible, mxGraph
 scrollRectToVisible, mxGraph
 SegmentConnector, mxEdgeStyle
 segments, mxCellState
 select, mxConnectionHandler
 SELECT
 selectAll, mxGraph
 selectCell, mxGraph
 selectCellForEvent, mxGraph
 selectCells
 selectCellsForEvent, mxGraph
 selectChildCell, mxGraph
 selectDelayed, mxGraphHandler
 selectEnabled, mxGraphHandler
 Selection, mxGraph
 Selection state, mxGraph
 SELECTION_DASHED, mxConstants
 selectionModel, mxGraph
 selectMode, mxToolbar
 selectNextCell, mxGraph
 selectOnPopup, mxPanningHandler
 selectParentCell, mxGraph
 selectPreviousCell, mxGraph
 selectRegion, mxGraph
 selectText, mxCellEditor
 selectVertices, mxGraph
 send
 sent, mxSession
 session, mxEditor
 SESSION
 setAbsoluteTerminalPoint, mxCellState
 setAddEnabled, mxSwimlaneManager
 setAllowDanglingEdges, mxGraph
 setAllowEval, mxGraphView
 setAllowLoops, mxGraph
 setAlpha
 setAttribute
 setAutoSizeCells, mxGraph
 setBackgroundImage, mxGraph
 setBaseDomain, mxUrlConverter
 setBaseUrl, mxUrlConverter
 setBinary, mxXmlRequest
 setBorder, mxGraph
 setBubbling, mxLayoutManager
 setCell, mxGraphSelectionModel
 setCellHeights, mxCompactTreeLayout
 setCellLocations, mxCoordinateAssignment
 setCells
 setCellsBendable, mxGraph
 setCellsCloneable, mxGraph
 setCellsDeletable, mxGraph
 setCellsDisconnectable, mxGraph
 setCellsEditable, mxGraph
 setCellsMovable, mxGraph
 setCellsResizable, mxGraph
 setCellsSelectable, mxGraph
 setCellStyle, mxGraph
 setCellStyleFlags
 setCellStyles
 setCellWarning, mxGraph
 setCloneEnabled, mxGraphHandler
 setCloneInvalidEdges, mxGraph
 setClosable, mxWindow
 setCollapsed
 setConnectable
 setConnectableEdges, mxGraph
 setConnectionConstraint, mxGraph
 setConstrainChildren, mxGraph
 setConstrainChildrenOnResize, mxGraph
 setCreateIds, mxGraphModel
 setCreateTarget, mxConnectionHandler
 setCurrentRoot, mxGraphView
 setCursor
 setDashed
 setDashPattern
 setDefaultParent, mxGraph
 setDisconnectOnMove, mxGraph
 setDropEnabled, mxGraph
 setEdge, mxCell
 setEdgePoints, mxGraphLayout
 setEdgePosition, mxCoordinateAssignment
 setEdgeStyleEnabled, mxGraphLayout
 setEnabled
 setEnterStopsCellEditing, mxGraph
 setEscapeEnabled, mxGraph
 setEventsEnabled, mxEventSource
 setEventSource, mxEventSource
 setExtendParents, mxGraph
 setExtendParentsOnAdd, mxGraph
 setFillColor
 setFontBackgroundColor, mxXmlCanvas2D
 setFontBorderColor, mxXmlCanvas2D
 setFontColor
 setFontFamily
 setFontSize
 setFontStyle
 setGeneralPurposeVariable
 setGeometry
 setGradient
 setGraph
 setGraphBounds, mxGraphView
 setGraphContainer, mxEditor
 setGridEnabled
 setGridSize, mxGraph
 setGuidesEnabled, mxDragSource
 setHideOnHover, mxTooltipHandler
 setHighlightColor
 setHorizontal, mxSwimlaneManager
 setHotspot, mxCellMarker
 setHotspotEnabled, mxCellMarker
 setHtmlLabels, mxGraph
 setId, mxCell
 setImage, mxWindow
 setInvokesStopCellEditing, mxGraph
 setLineCap
 setLineJoin
 setLocation, mxWindow
 setLocked, mxGraph
 setMaximizable, mxWindow
 setMinimizable, mxWindow
 setMiterLimit
 setMode, mxEditor
 setModified
 setMoveEnabled, mxGraphHandler
 setMultigraph, mxGraph
 setOpacity, mxUtils
 setOrthogonalEdge, mxGraphLayout
 setPanning, mxGraph
 setPanningEnabled, mxPanningHandler
 setParent, mxCell
 setPortsEnabled, mxGraph
 setPrefixedStyle, mxUtils
 setPreviewColor, mxEdgeHandler
 setRect, mxRectangle
 setRecursiveResize, mxGraph
 setRemoveCellsFromParent, mxGraphHandler
 setRendering, mxGraphView
 setRequestHeaders, mxXmlRequest
 setResizable, mxWindow
 setResizeContainer, mxGraph
 setResizeEnabled, mxSwimlaneManager
 setRoot, mxGraphModel
 setScale, mxGraphView
 setScrollable, mxWindow
 setSelectEnabled, mxGraphHandler
 setSelectionCell, mxGraph
 setSelectionCells, mxGraph
 setSelectionModel, mxGraph
 setShadow
 setShadowAlpha
 setShadowColor
 setShadowOffset
 setShiftDownwards, mxSpaceManager
 setShiftRightwards, mxSpaceManager
 setSingleSelection, mxGraphSelectionModel
 setSize, mxWindow
 setSplitEnabled, mxGraph
 setStates
 setStatus, mxEditor
 setStatusContainer, mxEditor
 setStrokeColor
 setStrokeWidth
 setStyle
 setStyleFlag, mxUtils
 setStylesheet, mxGraph
 setSwimlaneNesting, mxGraph
 setSwimlaneSelectionEnabled, mxGraph
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTextContent, mxUtils
 setTitle, mxWindow
 setTitleContainer, mxEditor
 setTolerance, mxGraph
 setToolbarContainer, mxEditor
 setTooltips, mxGraph
 setTranslate, mxGraphView
 setTransparentBackgroundImage, mxShape
 setValue
 setVertex, mxCell
 setVertexLabelsMovable, mxGraph
 setVertexLocation
 setVisible
 setVisibleTerminalState, mxCellState
 setX, mxGraphAbstractHierarchyCell
 setY, mxGraphAbstractHierarchyCell
 setZoomEnabled, mxOutline
 SHADOW_OFFSET_X, mxConstants
 SHADOW_OFFSET_Y, mxConstants
 SHADOW_OPACITY, mxConstants
 SHADOWCOLOR, mxConstants
 shape
 SHAPE_ACTOR, mxConstants
 SHAPE_ARROW, mxConstants
 SHAPE_CLOUD, mxConstants
 SHAPE_CONNECTOR, mxConstants
 SHAPE_CYLINDER, mxConstants
 SHAPE_DOUBLE_ELLIPSE, mxConstants
 SHAPE_ELLIPSE, mxConstants
 SHAPE_HEXAGON, mxConstants
 SHAPE_IMAGE, mxConstants
 SHAPE_LABEL, mxConstants
 SHAPE_LINE, mxConstants
 SHAPE_RECTANGLE, mxConstants
 SHAPE_RHOMBUS, mxConstants
 SHAPE_SWIMLANE, mxConstants
 SHAPE_TRIANGLE, mxConstants
 sharedDiv, mxRubberband
 shiftCell, mxSpaceManager
 shiftDownwards, mxSpaceManager
 shiftKeys, mxKeyHandler
 shiftRightwards, mxSpaceManager
 shouldRemoveCellsFromParent, mxGraphHandler
 show
 SHOW
 showHelp, mxEditor
 showMenu, mxPopupMenu
 showOutline, mxEditor
 showProperties, mxEditor
 showSubmenu, mxPopupMenu
 showTasks, mxEditor
 showViewport, mxOutline
 SideToSide, mxEdgeStyle
 significant, mxUndoableEdit
 significantRemoteChanges, mxSession
 simulate, mxXmlRequest
 singleSelection, mxGraphSelectionModel
 singleSizer, mxVertexHandler
 size, mxUndoManager
 SIZE
 sizeDidChange, mxGraph
 sizerImage, mxOutline
 smartSeparators, mxPopupMenu
 snap
 snapToTerminals, mxEdgeHandler
 sortCells, mxUtils
 sortEdges, mxCompactTreeLayout
 sortOutgoingEdges, mxCompactTreeLayout
 source
 sourcePoint, mxGeometry
 SOURCESCANSTARTRANK
 spacing
 SPLIT_EDGE
 splitEdge, mxGraph
 splitEnabled, mxGraph
 src, mxImage
 start
 START
 START_EDIT
 START_EDITING
 startAnimation, mxAnimation
 startDrag, mxDragSource
 startEditing
 startEditingAtCell, mxGraph
 state
 states
 stateValidated, mxGraphView
 status, mxEditor
 stencil, mxShape
 stencilPointerEvents, mxShape
 step, mxMorphing
 steps, mxMorphing
 STEPSIZE, mxClipboard
 stop, mxSession
 stopAnimation, mxAnimation
 stopDrag, mxDragSource
 stopEditing
 stopRecursion, mxMorphing
 stroke
 strokeTolerance, mxSvgCanvas2D
 strokewidth, mxStencil
 style
 STYLE_ALIGN, mxConstants
 STYLE_ARCSIZE, mxConstants
 STYLE_ASPECT, mxConstants
 STYLE_AUTOSIZE, mxConstants
 STYLE_BENDABLE, mxConstants
 STYLE_CLONEABLE, mxConstants
 STYLE_CURVED, mxConstants
 STYLE_DASHED, mxConstants
 STYLE_DELETABLE, mxConstants
 STYLE_DIRECTION, mxConstants
 STYLE_EDGE, mxConstants
 STYLE_EDITABLE, mxConstants
 STYLE_ELBOW, mxConstants
 STYLE_ENDARROW, mxConstants
 STYLE_ENDFILL, mxConstants
 STYLE_ENDSIZE, mxConstants
 STYLE_ENTRY_PERIMETER, mxConstants
 STYLE_ENTRY_X, mxConstants
 STYLE_ENTRY_Y, mxConstants
 STYLE_EXIT_PERIMETER, mxConstants
 STYLE_EXIT_X, mxConstants
 STYLE_EXIT_Y, mxConstants
 STYLE_FILLCOLOR, mxConstants
 STYLE_FLIPH, mxConstants
 STYLE_FLIPV, mxConstants
 STYLE_FOLDABLE, mxConstants
 STYLE_FONTCOLOR, mxConstants
 STYLE_FONTFAMILY, mxConstants
 STYLE_FONTSIZE, mxConstants
 STYLE_FONTSTYLE, mxConstants
 STYLE_GLASS, mxConstants
 STYLE_GRADIENT_DIRECTION, mxConstants
 STYLE_GRADIENTCOLOR, mxConstants
 STYLE_HORIZONTAL, mxConstants
 STYLE_IMAGE, mxConstants
 STYLE_IMAGE_ALIGN, mxConstants
 STYLE_IMAGE_ASPECT, mxConstants
 STYLE_IMAGE_BACKGROUND, mxConstants
 STYLE_IMAGE_BORDER, mxConstants
 STYLE_IMAGE_HEIGHT, mxConstants
 STYLE_IMAGE_VERTICAL_ALIGN, mxConstants
 STYLE_IMAGE_WIDTH, mxConstants
 STYLE_INDICATOR_COLOR, mxConstants
 STYLE_INDICATOR_DIRECTION, mxConstants
 STYLE_INDICATOR_GRADIENTCOLOR, mxConstants
 STYLE_INDICATOR_HEIGHT, mxConstants
 STYLE_INDICATOR_IMAGE, mxConstants
 STYLE_INDICATOR_SHAPE, mxConstants
 STYLE_INDICATOR_SPACING, mxConstants
 STYLE_INDICATOR_STROKECOLOR, mxConstants
 STYLE_INDICATOR_WIDTH, mxConstants
 STYLE_LABEL_BACKGROUNDCOLOR, mxConstants
 STYLE_LABEL_BORDERCOLOR, mxConstants
 STYLE_LABEL_PADDING, mxConstants
 STYLE_LABEL_POSITION, mxConstants
 STYLE_LOOP, mxConstants
 STYLE_MARGIN, mxConstants
 STYLE_MOVABLE, mxConstants
 STYLE_NOEDGESTYLE, mxConstants
 STYLE_NOLABEL, mxConstants
 STYLE_OPACITY, mxConstants
 STYLE_ORTHOGONAL, mxConstants
 STYLE_OVERFLOW, mxConstants
 STYLE_PERIMETER, mxConstants
 STYLE_PERIMETER_SPACING, mxConstants
 STYLE_PORT_CONSTRAINT, mxConstants
 STYLE_PORT_CONSTRAINT_ROTATION, mxConstants
 STYLE_RESIZABLE, mxConstants
 STYLE_ROTATABLE, mxConstants
 STYLE_ROTATION, mxConstants
 STYLE_ROUNDED, mxConstants
 STYLE_ROUTING_CENTER_X, mxConstants
 STYLE_ROUTING_CENTER_Y, mxConstants
 STYLE_SEGMENT, mxConstants
 STYLE_SEPARATORCOLOR, mxConstants
 STYLE_SHADOW, mxConstants
 STYLE_SHAPE, mxConstants
 STYLE_SMOOTH, mxConstants
 STYLE_SOURCE_PERIMETER_SPACING, mxConstants
 STYLE_SOURCE_PORT, mxConstants
 STYLE_SPACING, mxConstants
 STYLE_SPACING_BOTTOM, mxConstants
 STYLE_SPACING_LEFT, mxConstants
 STYLE_SPACING_RIGHT, mxConstants
 STYLE_SPACING_TOP, mxConstants
 STYLE_STARTARROW, mxConstants
 STYLE_STARTFILL, mxConstants
 STYLE_STARTSIZE, mxConstants
 STYLE_STROKECOLOR, mxConstants
 STYLE_STROKEWIDTH, mxConstants
 STYLE_SWIMLANE_LINE, mxConstants
 STYLE_TARGET_PERIMETER_SPACING, mxConstants
 STYLE_TARGET_PORT, mxConstants
 STYLE_TEXT_OPACITY, mxConstants
 STYLE_VERTICAL_ALIGN, mxConstants
 STYLE_VERTICAL_LABEL_POSITION, mxConstants
 STYLE_WHITE_SPACE, mxConstants
 styleEnabled, mxSvgCanvas2D
 styleForCellChanged, mxGraphModel
 styles, mxStylesheet
 stylesheet, mxGraph
 submenuImage, mxPopupMenu
 submit, mxUtils
 suspend, mxSession
 SUSPEND
 suspended, mxOutline
 svgStrokeTolerance
 swap, mxGeometry
 swapBounds, mxGraph
 swapStyles, mxEditor
 swimlaneAdded, mxSwimlaneManager
 swimlaneIndicatorColorAttribute, mxGraph
 swimlaneNesting, mxGraph
 swimlaneRequired, mxEditor
 swimlanes, mxSwimlaneLayout
 swimlaneSelectionEnabled, mxGraph
 swimlaneSpacing, mxEditor
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 save
 SAVE
 saveAs, mxUtils
 scale
 SCALE
 SCALE_AND_TRANSLATE
 scaleAndTranslate, mxGraphView
 scaleCell, mxGraph
 scaleGraph, mxPanningHandler
 scaleGrid, mxGraphHandler
 scrollCellToVisible, mxGraph
 scrollOnMove, mxGraphHandler
 scrollPointToVisible, mxGraph
 scrollRectToVisible, mxGraph
 SegmentConnector, mxEdgeStyle
 segments, mxCellState
 select, mxConnectionHandler
 SELECT
 selectAll, mxGraph
 selectCell, mxGraph
 selectCellForEvent, mxGraph
 selectCells
 selectCellsForEvent, mxGraph
 selectChildCell, mxGraph
 selectDelayed, mxGraphHandler
 selectEnabled, mxGraphHandler
 Selection, mxGraph
 Selection state, mxGraph
 SELECTION_DASHED, mxConstants
 selectionModel, mxGraph
 selectMode, mxToolbar
 selectNextCell, mxGraph
 selectOnPopup, mxPanningHandler
 selectParentCell, mxGraph
 selectPreviousCell, mxGraph
 selectRegion, mxGraph
 selectText, mxCellEditor
 selectVertices, mxGraph
 send
 sent, mxSession
 session, mxEditor
 SESSION
 setAbsoluteTerminalPoint, mxCellState
 setAddEnabled, mxSwimlaneManager
 setAllowDanglingEdges, mxGraph
 setAllowEval, mxGraphView
 setAllowLoops, mxGraph
 setAlpha
 setAttribute
 setAutoSizeCells, mxGraph
 setBackgroundImage, mxGraph
 setBaseDomain, mxUrlConverter
 setBaseUrl, mxUrlConverter
 setBinary, mxXmlRequest
 setBorder, mxGraph
 setBubbling, mxLayoutManager
 setCell, mxGraphSelectionModel
 setCellHeights, mxCompactTreeLayout
 setCellLocations, mxCoordinateAssignment
 setCells
 setCellsBendable, mxGraph
 setCellsCloneable, mxGraph
 setCellsDeletable, mxGraph
 setCellsDisconnectable, mxGraph
 setCellsEditable, mxGraph
 setCellsMovable, mxGraph
 setCellsResizable, mxGraph
 setCellsSelectable, mxGraph
 setCellStyle, mxGraph
 setCellStyleFlags
 setCellStyles
 setCellWarning, mxGraph
 setCloneEnabled, mxGraphHandler
 setCloneInvalidEdges, mxGraph
 setClosable, mxWindow
 setCollapsed
 setConnectable
 setConnectableEdges, mxGraph
 setConnectionConstraint, mxGraph
 setConstrainChildren, mxGraph
 setConstrainChildrenOnResize, mxGraph
 setCreateIds, mxGraphModel
 setCreateTarget, mxConnectionHandler
 setCurrentRoot, mxGraphView
 setCursor
 setDashed
 setDashPattern
 setDefaultParent, mxGraph
 setDisconnectOnMove, mxGraph
 setDropEnabled, mxGraph
 setEdge, mxCell
 setEdgePoints, mxGraphLayout
 setEdgePosition, mxCoordinateAssignment
 setEdgeStyleEnabled, mxGraphLayout
 setEnabled
 setEnterStopsCellEditing, mxGraph
 setEscapeEnabled, mxGraph
 setEventsEnabled, mxEventSource
 setEventSource, mxEventSource
 setExtendParents, mxGraph
 setExtendParentsOnAdd, mxGraph
 setFillColor
 setFontBackgroundColor, mxXmlCanvas2D
 setFontBorderColor, mxXmlCanvas2D
 setFontColor
 setFontFamily
 setFontSize
 setFontStyle
 setGeneralPurposeVariable
 setGeometry
 setGradient
 setGraph
 setGraphBounds, mxGraphView
 setGraphContainer, mxEditor
 setGridEnabled
 setGridSize, mxGraph
 setGuidesEnabled, mxDragSource
 setHideOnHover, mxTooltipHandler
 setHighlightColor
 setHorizontal, mxSwimlaneManager
 setHotspot, mxCellMarker
 setHotspotEnabled, mxCellMarker
 setHtmlLabels, mxGraph
 setId, mxCell
 setImage, mxWindow
 setInvokesStopCellEditing, mxGraph
 setLineCap
 setLineJoin
 setLocation, mxWindow
 setLocked, mxGraph
 setMaximizable, mxWindow
 setMinimizable, mxWindow
 setMiterLimit
 setMode, mxEditor
 setModified
 setMoveEnabled, mxGraphHandler
 setMultigraph, mxGraph
 setOpacity, mxUtils
 setOrthogonalEdge, mxGraphLayout
 setPanning, mxGraph
 setPanningEnabled, mxPanningHandler
 setParent, mxCell
 setPortsEnabled, mxGraph
 setPrefixedStyle, mxUtils
 setPreviewColor, mxEdgeHandler
 setRect, mxRectangle
 setRecursiveResize, mxGraph
 setRemoveCellsFromParent, mxGraphHandler
 setRendering, mxGraphView
 setRequestHeaders, mxXmlRequest
 setResizable, mxWindow
 setResizeContainer, mxGraph
 setResizeEnabled, mxSwimlaneManager
 setRoot, mxGraphModel
 setScale, mxGraphView
 setScrollable, mxWindow
 setSelectEnabled, mxGraphHandler
 setSelectionCell, mxGraph
 setSelectionCells, mxGraph
 setSelectionModel, mxGraph
 setShadow
 setShadowAlpha
 setShadowColor
 setShadowOffset
 setShiftDownwards, mxSpaceManager
 setShiftRightwards, mxSpaceManager
 setSingleSelection, mxGraphSelectionModel
 setSize, mxWindow
 setSplitEnabled, mxGraph
 setStates
 setStatus, mxEditor
 setStatusContainer, mxEditor
 setStrokeColor
 setStrokeWidth
 setStyle
 setStyleFlag, mxUtils
 setStylesheet, mxGraph
 setSwimlaneNesting, mxGraph
 setSwimlaneSelectionEnabled, mxGraph
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTextContent, mxUtils
 setTitle, mxWindow
 setTitleContainer, mxEditor
 setTolerance, mxGraph
 setToolbarContainer, mxEditor
 setTooltips, mxGraph
 setTranslate, mxGraphView
 setTransparentBackgroundImage, mxShape
 setValue
 setVertex, mxCell
 setVertexLabelsMovable, mxGraph
 setVertexLocation
 setVisible
 setVisibleTerminalState, mxCellState
 setX, mxGraphAbstractHierarchyCell
 setY, mxGraphAbstractHierarchyCell
 setZoomEnabled, mxOutline
 SHADOW_OFFSET_X, mxConstants
 SHADOW_OFFSET_Y, mxConstants
 SHADOW_OPACITY, mxConstants
 SHADOWCOLOR, mxConstants
 shape
 SHAPE_ACTOR, mxConstants
 SHAPE_ARROW, mxConstants
 SHAPE_CLOUD, mxConstants
 SHAPE_CONNECTOR, mxConstants
 SHAPE_CYLINDER, mxConstants
 SHAPE_DOUBLE_ELLIPSE, mxConstants
 SHAPE_ELLIPSE, mxConstants
 SHAPE_HEXAGON, mxConstants
 SHAPE_IMAGE, mxConstants
 SHAPE_LABEL, mxConstants
 SHAPE_LINE, mxConstants
 SHAPE_RECTANGLE, mxConstants
 SHAPE_RHOMBUS, mxConstants
 SHAPE_SWIMLANE, mxConstants
 SHAPE_TRIANGLE, mxConstants
 sharedDiv, mxRubberband
 shiftCell, mxSpaceManager
 shiftDownwards, mxSpaceManager
 shiftKeys, mxKeyHandler
 shiftRightwards, mxSpaceManager
 shouldRemoveCellsFromParent, mxGraphHandler
 show
 SHOW
 showHelp, mxEditor
 showMenu, mxPopupMenu
 showOutline, mxEditor
 showProperties, mxEditor
 showSubmenu, mxPopupMenu
 showTasks, mxEditor
 showViewport, mxOutline
 SideToSide, mxEdgeStyle
 significant, mxUndoableEdit
 significantRemoteChanges, mxSession
 simulate, mxXmlRequest
 singleSelection, mxGraphSelectionModel
 singleSizer, mxVertexHandler
 size, mxUndoManager
 SIZE
 sizeDidChange, mxGraph
 sizerImage, mxOutline
 smartSeparators, mxPopupMenu
 snap
 snapToTerminals, mxEdgeHandler
 sortCells, mxUtils
 sortEdges, mxCompactTreeLayout
 sortOutgoingEdges, mxCompactTreeLayout
 source
 sourcePoint, mxGeometry
 SOURCESCANSTARTRANK
 spacing
 SPLIT_EDGE
 splitEdge, mxGraph
 splitEnabled, mxGraph
 src, mxImage
 start
 START
 START_EDIT
 START_EDITING
 startAnimation, mxAnimation
 startDrag, mxDragSource
 startEditing
 startEditingAtCell, mxGraph
 state
 states
 stateValidated, mxGraphView
 status, mxEditor
 stencil, mxShape
 stencilPointerEvents, mxShape
 step, mxMorphing
 steps, mxMorphing
 STEPSIZE, mxClipboard
 stop, mxSession
 stopAnimation, mxAnimation
 stopDrag, mxDragSource
 stopEditing
 stopRecursion, mxMorphing
 stroke
 strokeTolerance, mxSvgCanvas2D
 strokewidth, mxStencil
 style
 STYLE_ALIGN, mxConstants
 STYLE_ARCSIZE, mxConstants
 STYLE_ASPECT, mxConstants
 STYLE_AUTOSIZE, mxConstants
 STYLE_BENDABLE, mxConstants
 STYLE_CLONEABLE, mxConstants
 STYLE_CURVED, mxConstants
 STYLE_DASHED, mxConstants
 STYLE_DELETABLE, mxConstants
 STYLE_DIRECTION, mxConstants
 STYLE_EDGE, mxConstants
 STYLE_EDITABLE, mxConstants
 STYLE_ELBOW, mxConstants
 STYLE_ENDARROW, mxConstants
 STYLE_ENDFILL, mxConstants
 STYLE_ENDSIZE, mxConstants
 STYLE_ENTRY_PERIMETER, mxConstants
 STYLE_ENTRY_X, mxConstants
 STYLE_ENTRY_Y, mxConstants
 STYLE_EXIT_PERIMETER, mxConstants
 STYLE_EXIT_X, mxConstants
 STYLE_EXIT_Y, mxConstants
 STYLE_FILLCOLOR, mxConstants
 STYLE_FLIPH, mxConstants
 STYLE_FLIPV, mxConstants
 STYLE_FOLDABLE, mxConstants
 STYLE_FONTCOLOR, mxConstants
 STYLE_FONTFAMILY, mxConstants
 STYLE_FONTSIZE, mxConstants
 STYLE_FONTSTYLE, mxConstants
 STYLE_GLASS, mxConstants
 STYLE_GRADIENT_DIRECTION, mxConstants
 STYLE_GRADIENTCOLOR, mxConstants
 STYLE_HORIZONTAL, mxConstants
 STYLE_IMAGE, mxConstants
 STYLE_IMAGE_ALIGN, mxConstants
 STYLE_IMAGE_ASPECT, mxConstants
 STYLE_IMAGE_BACKGROUND, mxConstants
 STYLE_IMAGE_BORDER, mxConstants
 STYLE_IMAGE_HEIGHT, mxConstants
 STYLE_IMAGE_VERTICAL_ALIGN, mxConstants
 STYLE_IMAGE_WIDTH, mxConstants
 STYLE_INDICATOR_COLOR, mxConstants
 STYLE_INDICATOR_DIRECTION, mxConstants
 STYLE_INDICATOR_GRADIENTCOLOR, mxConstants
 STYLE_INDICATOR_HEIGHT, mxConstants
 STYLE_INDICATOR_IMAGE, mxConstants
 STYLE_INDICATOR_SHAPE, mxConstants
 STYLE_INDICATOR_SPACING, mxConstants
 STYLE_INDICATOR_STROKECOLOR, mxConstants
 STYLE_INDICATOR_WIDTH, mxConstants
 STYLE_LABEL_BACKGROUNDCOLOR, mxConstants
 STYLE_LABEL_BORDERCOLOR, mxConstants
 STYLE_LABEL_PADDING, mxConstants
 STYLE_LABEL_POSITION, mxConstants
 STYLE_LOOP, mxConstants
 STYLE_MARGIN, mxConstants
 STYLE_MOVABLE, mxConstants
 STYLE_NOEDGESTYLE, mxConstants
 STYLE_NOLABEL, mxConstants
 STYLE_OPACITY, mxConstants
 STYLE_ORTHOGONAL, mxConstants
 STYLE_OVERFLOW, mxConstants
 STYLE_PERIMETER, mxConstants
 STYLE_PERIMETER_SPACING, mxConstants
 STYLE_PORT_CONSTRAINT, mxConstants
 STYLE_PORT_CONSTRAINT_ROTATION, mxConstants
 STYLE_RESIZABLE, mxConstants
 STYLE_ROTATABLE, mxConstants
 STYLE_ROTATION, mxConstants
 STYLE_ROUNDED, mxConstants
 STYLE_ROUTING_CENTER_X, mxConstants
 STYLE_ROUTING_CENTER_Y, mxConstants
 STYLE_SEGMENT, mxConstants
 STYLE_SEPARATORCOLOR, mxConstants
 STYLE_SHADOW, mxConstants
 STYLE_SHAPE, mxConstants
 STYLE_SMOOTH, mxConstants
 STYLE_SOURCE_PERIMETER_SPACING, mxConstants
 STYLE_SOURCE_PORT, mxConstants
 STYLE_SPACING, mxConstants
 STYLE_SPACING_BOTTOM, mxConstants
 STYLE_SPACING_LEFT, mxConstants
 STYLE_SPACING_RIGHT, mxConstants
 STYLE_SPACING_TOP, mxConstants
 STYLE_STARTARROW, mxConstants
 STYLE_STARTFILL, mxConstants
 STYLE_STARTSIZE, mxConstants
 STYLE_STROKECOLOR, mxConstants
 STYLE_STROKEWIDTH, mxConstants
 STYLE_SWIMLANE_LINE, mxConstants
 STYLE_TARGET_PERIMETER_SPACING, mxConstants
 STYLE_TARGET_PORT, mxConstants
 STYLE_TEXT_OPACITY, mxConstants
 STYLE_VERTICAL_ALIGN, mxConstants
 STYLE_VERTICAL_LABEL_POSITION, mxConstants
 STYLE_WHITE_SPACE, mxConstants
 styleEnabled, mxSvgCanvas2D
 styleForCellChanged, mxGraphModel
 styles, mxStylesheet
 stylesheet, mxGraph
 submenuImage, mxPopupMenu
 submit, mxUtils
 suspend, mxSession
 SUSPEND
 suspended, mxOutline
 svgStrokeTolerance
 swap, mxGeometry
 swapBounds, mxGraph
 swapStyles, mxEditor
 swimlaneAdded, mxSwimlaneManager
 swimlaneIndicatorColorAttribute, mxGraph
 swimlaneNesting, mxGraph
 swimlaneRequired, mxEditor
 swimlanes, mxSwimlaneLayout
 swimlaneSelectionEnabled, mxGraph
 swimlaneSpacing, mxEditor
-
mxAbstractCanvas2D.prototype.save = function()
Saves the current state.
mxAutoSaveManager.prototype.save = function()
Empty hook that is called if the graph should be saved.
mxEditor.prototype.save = function (url,
linefeed)
Posts the string returned by writeGraphModel to the given URL or the URL returned by getUrlPost.
save: function(filename,
content)
Saves the specified content in the given file on the local file system.
mxXmlCanvas2D.prototype.save = function()
Saves the drawing state.
Fires after the current file was saved in save.
Specifies the event name for open.
saveAs: function(content)
Saves the specified content by displaying a dialog to save the content as a file on the local filesystem.
mxAbstractCanvas2D.prototype.scale = function(value)
Scales the current state.
mxGraphView.prototype.scale
Specifies the scale.
mxPrintPreview.prototype.scale
Holds the scale of the print preview.
mxShape.prototype.scale
Holds the scale in which the shape is being painted.
mxXmlCanvas2D.prototype.scale = function(value)
Scales the output.
Specifies the event name for scale.
Fires after the scale was changed in setScale.
Specifies the event name for scaleAndTranslate.
Fires after the scale and translate have been changed in scaleAndTranslate.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxGraph.prototype.scaleCell = function(cell,
dx,
dy,
recurse)
Scales the points, position and size of the given cell according to the given vertical and horizontal scaling factors.
mxPanningHandler.prototype.scaleGraph = function(scale,
preview)
Handles pinch events on touch devices.
mxGraphHandler.prototype.scaleGrid
Specifies if the grid should be scaled.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraphHandler.prototype.scrollOnMove
Specifies if the view should be scrolled so that a moved cell is visible.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
SegmentConnector: function(state,
source,
target,
hints,
result)
Implements an orthogonal edge style.
mxCellState.prototype.segments
Array of numbers that represent the cached length of each segment of the edge.
mxConnectionHandler.prototype.select
Specifies if new edges should be selected.
Specifies the event name for select.
Fires when an item was selected in the toolbar.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxConnectionHandler.prototype.selectCells = function(edge,
target)
Selects the given edge after adding a new connection.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraphHandler.prototype.selectDelayed = function(me)
Implements the delayed selection for the given mouse event.
mxGraphHandler.prototype.selectEnabled
Specifies if selecting is enabled.
Defines the dashed state to be used for the vertex selection border.
mxGraph.prototype.selectionModel
Holds the mxGraphSelectionModel that models the current selection.
mxToolbar.prototype.selectMode = function(domNode,
funct)
Resets the state of the previously selected mode and displays the given DOM node as selected.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxPopupMenuHandler.prototype.selectOnPopup
Specifies if cells should be selected if a popupmenu is displayed for them.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxCellEditor.prototype.selectText
Specifies if the text should be selected when editing starts.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxXmlRequest.prototype.send = function(onload,
onerror)
Send the request to the target URL using the specified functions to process the response asychronously.
mxSession.prototype.sent
Total number of sent bytes.
mxEditor.prototype.session
Holds a mxSession instance associated with this editor.
Fires when anything in the session has changed.
Specifies the event name for session.
mxCellState.prototype.setAbsoluteTerminalPoint = function (point,
isSource)
Sets the first or last point in absolutePoints depending on isSource.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
mxAbstractCanvas2D.prototype.setAlpha = function(value)
Sets the current alpha.
mxXmlCanvas2D.prototype.setAlpha = function(value)
Sets the current alpha.
mxCell.prototype.setAttribute = function(name,
value)
Sets the specified attribute on the user object if it is an XML node.
mxCodec.prototype.setAttribute = function(node,
attribute,
value)
Sets the attribute on the specified node to value.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
setBaseDomain: function(value)
Sets baseDomain.
setBaseUrl: function(value)
Sets baseUrl.
mxXmlRequest.prototype.setBinary = function(value)
Sets binary.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxLayoutManager.prototype.setBubbling = function(value)
Sets bubbling.
mxGraphSelectionModel.prototype.setCell = function(cell)
Selects the specified mxCell using setCells.
mxCompactTreeLayout.prototype.setCellHeights = function(node,
rank)
Set the cells heights (relative to the layout direction) when the tops of each rank are to be aligned
mxCoordinateAssignment.prototype.setCellLocations = function(graph,
model)
Sets the cell locations in the facade to those stored after this layout processing step has completed.
setCells: function(cells)
Sets the cells in the clipboard.
mxGraphSelectionModel.prototype.setCells = function(cells)
Selects the given array of mxCells and fires a change event.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlags: function(model,
cells,
key,
flag,
value)
Sets or toggles the flag bit for the given key in the cell’s styles.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
setCellStyles: function(model,
cells,
key,
value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraphHandler.prototype.setCloneEnabled = function(value)
Sets cloneEnabled.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxWindow.prototype.setClosable = function(closable)
Sets the image associated with the window.
mxCell.prototype.setCollapsed = function(collapsed)
Sets the collapsed state.
mxGraphModel.prototype.setCollapsed = function(cell,
collapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
mxCell.prototype.setConnectable = function(connectable)
Sets the connectable state.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraph.prototype.setConstrainChildrenOnResize = function(value)
Sets constrainChildrenOnResize.
mxGraphModel.prototype.setCreateIds = function(value)
Sets createIds.
mxConnectionHandler.prototype.setCreateTarget = function(value)
Sets createTarget.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxCellState.prototype.setCursor = function (cursor)
Sets the given cursor on the shape and text shape.
mxShape.prototype.setCursor = function(cursor)
Sets the cursor on the given shape.
mxAbstractCanvas2D.prototype.setDashed = function(value)
Enables or disables dashed lines.
mxXmlCanvas2D.prototype.setDashed = function(value)
Enables or disables dashed lines.
mxAbstractCanvas2D.prototype.setDashPattern = function(value)
Sets the current dash pattern.
mxXmlCanvas2D.prototype.setDashPattern = function(value)
Sets the current dash pattern.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxCell.prototype.setEdge = function(edge)
Specifies if the cell is an edge.
mxGraphLayout.prototype.setEdgePoints = function(edge,
points)
Replaces the array of mxPoints in the geometry of the given edge with the given array of mxPoints.
mxCoordinateAssignment.prototype.setEdgePosition = function(cell)
Fixes the control points
mxGraphLayout.prototype.setEdgeStyleEnabled = function(edge,
value)
Disables or enables the edge style of the given edge.
mxAutoSaveManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxCellMarker.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConnectionHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConstraintHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxDragSource.prototype.setEnabled = function(value)
Sets enabled.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraphHandler.prototype.setEnabled = function(value)
Sets enabled.
mxKeyHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling by updating enabled.
mxLayoutManager.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxOutline.prototype.setEnabled = function(value)
Enables or disables event handling.
mxPopupMenu.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxRubberband.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxSelectionCellsHandler.prototype.setEnabled = function(value)
Sets enabled.
mxSpaceManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxTooltipHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
setEnabled: function(value)
Sets enabled.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxEventSource.prototype.setEventsEnabled = function(value)
Sets eventsEnabled.
mxEventSource.prototype.setEventSource = function(value)
Sets eventSource.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
mxAbstractCanvas2D.prototype.setFillColor = function(value)
Sets the current fill color.
mxXmlCanvas2D.prototype.setFillColor = function(value)
Sets the current fill color.
mxXmlCanvas2D.prototype.setFontBackgroundColor = function(value)
Sets the current font background color.
mxXmlCanvas2D.prototype.setFontBorderColor = function(value)
Sets the current font border color.
mxAbstractCanvas2D.prototype.setFontColor = function(value)
Sets the current font color.
mxXmlCanvas2D.prototype.setFontColor = function(value)
Sets the current font color.
mxAbstractCanvas2D.prototype.setFontFamily = function(value)
Sets the current font family.
mxXmlCanvas2D.prototype.setFontFamily = function(value)
Sets the current font family.
mxAbstractCanvas2D.prototype.setFontSize = function(value)
Sets the current font size.
mxXmlCanvas2D.prototype.setFontSize = function(value)
Sets the current font size.
mxAbstractCanvas2D.prototype.setFontStyle = function(value)
Sets the current font style.
mxXmlCanvas2D.prototype.setFontStyle = function(value)
Sets the current font style.
mxGraphAbstractHierarchyCell.prototype.setGeneralPurposeVariable = function(
   layer,
   value
)
Set the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxGraphHierarchyNode.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxCell.prototype.setGeometry = function(geometry)
Sets the mxGeometry to be used as the geometry.
mxGraphModel.prototype.setGeometry = function(cell,
geometry)
Sets the mxGeometry of the given mxCell.
mxAbstractCanvas2D.prototype.setGradient = function(color1,
color2,
x,
y,
w,
h,
direction,
alpha1,
alpha2)
Sets the current gradient.
mxXmlCanvas2D.prototype.setGradient = function(color1,
color2,
x,
y,
w,
h,
direction,
alpha1,
alpha2)
Sets the gradient.
mxAutoSaveManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxLayoutManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSpaceManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxEditor.prototype.setGraphContainer = function (container)
Sets the graph’s container using mxGraph.init.
mxDragSource.prototype.setGridEnabled = function(value)
Sets gridEnabled.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxDragSource.prototype.setGuidesEnabled = function(value)
Sets guidesEnabled.
mxTooltipHandler.prototype.setHideOnHover = function(value)
Sets hideOnHover.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxGraphHandler.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxCellMarker.prototype.setHotspot = function(hotspot)
Sets the hotspot.
mxCellMarker.prototype.setHotspotEnabled = function(enabled)
Specifies whether the hotspot should be used in intersects.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxCell.prototype.setId = function(id)
Sets the Id of the cell to the given string.
mxWindow.prototype.setImage = function(image)
Sets the image associated with the window.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
mxAbstractCanvas2D.prototype.setLineCap = function(value)
Sets the current line cap.
mxXmlCanvas2D.prototype.setLineCap = function(value)
Sets the line cap.
mxAbstractCanvas2D.prototype.setLineJoin = function(value)
Sets the current line join.
mxXmlCanvas2D.prototype.setLineJoin = function(value)
Sets the line join.
mxWindow.prototype.setLocation = function(x,
y)
Sets the upper, left corner of the window.
Sets if any cell may be moved, sized, bended, disconnected, edited or selected.
mxWindow.prototype.setMaximizable = function(maximizable)
Sets if the window is maximizable.
mxWindow.prototype.setMinimizable = function(minimizable)
Sets if the window is minimizable.
mxAbstractCanvas2D.prototype.setMiterLimit = function(value)
Sets the current miter limit.
mxXmlCanvas2D.prototype.setMiterLimit = function(value)
Sets the miter limit.
mxEditor.prototype.setMode = function(modename)
Puts the graph into the specified mode.
mxCellEditor.prototype.setModified = function(value)
Sets modified to the specified boolean value.
mxEditor.prototype.setModified = function (value)
Sets modified to the specified boolean value.
mxGraphHandler.prototype.setMoveEnabled = function(value)
Sets moveEnabled.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
setOpacity: function(node,
value)
Sets the opacity of the specified DOM node to the given value in %.
mxGraphLayout.prototype.setOrthogonalEdge = function(edge,
value)
Disables or enables orthogonal end segments of the given edge.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxCell.prototype.setParent = function(parent)
Sets the parent cell.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
setPrefixedStyle: function()
Adds the given style with the standard name and an optional vendor prefix for the current browser.
mxEdgeHandler.prototype.setPreviewColor = function(color)
Sets the color of the preview to the given value.
mxRectangle.prototype.setRect = function(x,
y,
w,
h)
Sets this rectangle to the specified values
mxGraph.prototype.setRecursiveResize = function(value)
Sets recursiveResize.
mxGraphHandler.prototype.setRemoveCellsFromParent = function(value)
Sets removeCellsFromParent.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxXmlRequest.prototype.setRequestHeaders = function(request,
params)
Sets the headers for the given request and parameters.
mxWindow.prototype.setResizable = function(resizable)
Sets if the window should be resizable.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxGraphModel.prototype.setRoot = function(root)
Sets the root of the model using mxRootChange and adds the change to the current transaction.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxWindow.prototype.setScrollable = function(scrollable)
Sets if the window contents should be scrollable.
mxGraphHandler.prototype.setSelectEnabled = function(value)
Sets selectEnabled.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxAbstractCanvas2D.prototype.setShadow = function(enabled)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadow = function(value)
Enables or disables shadows.
mxAbstractCanvas2D.prototype.setShadowAlpha = function(value)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadowAlpha = function(value)
Sets the current shadows alpha.
mxAbstractCanvas2D.prototype.setShadowColor = function(value)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadowColor = function(value)
Sets the current shadow color.
mxAbstractCanvas2D.prototype.setShadowOffset = function(dx,
dy)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadowOffset = function(dx,
dy)
Sets the current shadow offset.
mxSpaceManager.prototype.setShiftDownwards = function(value)
Enables or disables event handling.
mxSpaceManager.prototype.setShiftRightwards = function(value)
Enables or disables event handling.
mxGraphSelectionModel.prototype.setSingleSelection = function(singleSelection)
Sets the singleSelection flag.
mxWindow.prototype.setSize = function(width,
height)
Sets the size of the window.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGuide.prototype.setStates = function(states)
Sets the mxCellStates that should be used for alignment.
mxEditor.prototype.setStatus = function (message)
Display the specified message in the status bar.
mxEditor.prototype.setStatusContainer = function (container)
Creates the status using the specified container.
mxAbstractCanvas2D.prototype.setStrokeColor = function(value)
Sets the current stroke color.
mxXmlCanvas2D.prototype.setStrokeColor = function(value)
Sets the current stroke color.
mxAbstractCanvas2D.prototype.setStrokeWidth = function(value)
Sets the current stroke width.
mxXmlCanvas2D.prototype.setStrokeWidth = function(value)
Sets the current stroke width.
mxCell.prototype.setStyle = function(style)
Sets the string to be used as the style.
mxGraphModel.prototype.setStyle = function(cell,
style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
setStyle: function(style,
key,
value)
Adds or removes the given key, value pair to the style and returns the new style.
setStyleFlag: function(style,
key,
flag,
value)
Sets or removes the given key from the specified style and returns the new style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxCell.prototype.setTerminal = function(terminal,
isSource)
Sets the source or target terminal and returns the new terminal.
mxGraphModel.prototype.setTerminal = function(edge,
terminal,
isSource)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
mxGeometry.prototype.setTerminalPoint = function(point,
isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
mxGraphModel.prototype.setTerminals = function(edge,
source,
target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
setTextContent: function(node,
text)
Sets the text content of the specified node.
mxWindow.prototype.setTitle = function(title)
Sets the window title to the given string.
mxEditor.prototype.setTitleContainer = function (container)
Creates a listener to update the inner HTML of the specified DOM node with the value of getTitle.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxEditor.prototype.setToolbarContainer = function (container)
Initializes the toolbar for the given container.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxShape.prototype.setTransparentBackgroundImage = function(node)
Sets a transparent background CSS style to catch all events.
mxCell.prototype.setValue = function(value)
Sets the user object of the cell.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxCell.prototype.setVertex = function(vertex)
Specifies if the cell is a vertex.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxCoordinateAssignment.prototype.setVertexLocation = function(cell)
Fixes the position of the specified vertex.
mxGraphLayout.prototype.setVertexLocation = function(cell,
x,
y)
Sets the new position of the given cell taking into account the size of the bounding box if useBoundingBox is true.
mxCell.prototype.setVisible = function(visible)
Specifies if the cell is visible.
mxGraphModel.prototype.setVisible = function(cell,
visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
setVisible: function(visible)
Shows or hides the console.
mxWindow.prototype.setVisible = function(visible)
Shows or hides the window depending on the given flag.
mxCellState.prototype.setVisibleTerminalState = function (terminalState,
source)
Sets the visible source or target terminal state.
mxGraphAbstractHierarchyCell.prototype.setX = function(layer,
value)
Set the value of x for the specified layer
mxGraphAbstractHierarchyCell.prototype.setY = function(layer,
value)
Set the value of y for the specified layer
mxOutline.prototype.setZoomEnabled = function(value)
Enables or disables the zoom handling by showing or hiding the respective handle.
Specifies the x-offset of the shadow.
Specifies the y-offset of the shadow.
Defines the opacity for shadows.
Defines the color to be used to draw shadows in shapes and windows.
mxCellState.prototype.shape
Holds the mxShape that represents the cell graphically.
mxEdgeHandler.prototype.shape
Holds the mxShape that represents the preview edge.
mxGraphHandler.prototype.shape
Reference to the mxShape that represents the preview.
Name under which mxActor is registered in mxCellRenderer.
Name under which mxArrow is registered in mxCellRenderer.
Name under which mxCloud is registered in mxCellRenderer.
Name under which mxConnector is registered in mxCellRenderer.
Name under which mxCylinder is registered in mxCellRenderer.
Name under which mxDoubleEllipse is registered in mxCellRenderer.
Name under which mxEllipse is registered in mxCellRenderer.
Name under which mxHexagon is registered in mxCellRenderer.
Name under which mxImageShape is registered in mxCellRenderer.
Name under which mxLabel is registered in mxCellRenderer.
Name under which mxLine is registered in mxCellRenderer.
Name under which mxRectangleShape is registered in mxCellRenderer.
Name under which mxRhombus is registered in mxCellRenderer.
Name under which mxSwimlane is registered in mxCellRenderer.
Name under which mxTriangle is registered in mxCellRenderer.
mxRubberband.prototype.sharedDiv
Holds the DIV element which is used to display the rubberband.
mxSpaceManager.prototype.shiftCell = function(cell,
dx,
dy,
Ox0,
y0,
right,
bottom,
fx,
fy,
extendParent)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSpaceManager.prototype.shiftDownwards
Specifies if event handling is enabled.
mxKeyHandler.prototype.shiftKeys
Maps from keycodes to functions for pressed shift keys.
mxSpaceManager.prototype.shiftRightwards
Specifies if event handling is enabled.
mxGraphHandler.prototype.shouldRemoveCellsFromParent = function(parent,
cells,
evt)
Returns true if the given cells should be removed from the parent for the specified mousereleased event.
mxCellStatePreview.prototype.show = function(visitor)
show: function()
Shows the console.
mxMorphing.prototype.show = function(move)
Shows the changes in the given mxCellStatePreview.
mxTooltipHandler.prototype.show = function(tip,
x,
y)
Shows the tooltip for the specified cell and optional index at the specified location (with a vertical offset of 10 pixels).
show: function(graph,
doc,
x0,
y0,
w,
h)
Copies the styles and the markup from the graph’s container into the given document and removes all cursor styles.
mxWindow.prototype.show = function()
Shows the window.
Specifies the event name for show.
Fires after the menu has been shown in popup.
Fires after the window is shown.
mxEditor.prototype.showHelp = function (tasks)
Shows the help window.
mxPopupMenu.prototype.showMenu = function()
Shows the menu.
mxEditor.prototype.showOutline = function ()
Shows the outline window.
mxEditor.prototype.showProperties = function (cell)
Creates and shows the properties dialog for the given cell.
mxPopupMenu.prototype.showSubmenu = function(parent,
row)
Shows the submenu inside the given parent row.
mxEditor.prototype.showTasks = function ()
Shows the tasks window.
mxOutline.prototype.showViewport
Specifies a viewport rectangle should be shown.
SideToSide: function (state,
source,
target,
points,
result)
Implements a vertical elbow edge.
mxUndoableEdit.prototype.significant
Specifies if the undoable change is significant.
mxSession.prototype.significantRemoteChanges
Whether remote changes should be significant in the local command history.
mxXmlRequest.prototype.simulate = function(doc,
target)
Creates and posts a request to the given target URL using a dynamically created form inside the given document.
mxGraphSelectionModel.prototype.singleSelection
Specifies if only one selected item at a time is allowed.
mxVertexHandler.prototype.singleSizer
Specifies if only one sizer handle at the bottom, right corner should be used.
mxUndoManager.prototype.size
Maximum command history size.
Specifies the event name for size.
Fires after sizeDidChange was executed.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxOutline.prototype.sizerImage
Optional mxImage to be used for the sizer.
mxPopupMenu.prototype.smartSeparators
Specifies if separators should only be added if a menu item follows them.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraphHandler.prototype.snap = function(vector)
Snaps the given vector to the grid and returns the given mxPoint instance.
mxEdgeHandler.prototype.snapToTerminals
Specifies if waypoints should snap to the routing centers of terminals.
sortCells: function(cells,
ascending)
Sorts the given cells according to the order in the cell hierarchy.
mxCompactTreeLayout.prototype.sortEdges
Specifies if edges should be sorted according to the order of their opposite terminal cell in the model.
mxCompactTreeLayout.prototype.sortOutgoingEdges = function(source,
edges)
Called if sortEdges is true to sort the array of outgoing edges in place.
mxCell.prototype.source
Reference to the source terminal.
mxGraphHierarchyEdge.prototype.source
The node this edge is sourced at
mxMultiplicity.prototype.source
Boolean that specifies if the rule is applied to the source or target terminal of an edge.
Reference to the source mxGraph.
mxUndoableEdit.prototype.source
Specifies the source of the edit.
mxGeometry.prototype.sourcePoint
Defines the source mxPoint of the edge.
mxGraphHierarchyModel.prototype.SOURCESCANSTARTRANK
High value to start source layering scan rank value from.
mxSwimlaneModel.prototype.SOURCESCANSTARTRANK
High value to start source layering scan rank value from.
mxCellHighlight.prototype.spacing
Specifies the spacing between the highlight for vertices and the vertex.
mxDefaultToolbar.prototype.spacing
Defines the spacing between existing and new vertices in gridSize units when a new vertex is dropped on an existing cell.
mxLabel.prototype.spacing
Default value for image spacing.
mxParallelEdgeLayout.prototype.spacing
Defines the spacing between the parallels.
mxPartitionLayout.prototype.spacing
Integer that specifies the absolute spacing in pixels between the children.
mxStackLayout.prototype.spacing
Specifies the spacing between the cells.
Specifies the event name for splitEdge.
Fires between begin- and endUpdate in splitEdge.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxGraph.prototype.splitEnabled
Specifies if dropping onto edges should be enabled.
mxImage.prototype.src
String that specifies the URL of the image.
mxConnectionHandler.prototype.start = function(state,
x,
y,
edgeState)
Starts a new connection for the given state and coordinates.
mxEdgeHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxGraphHandler.prototype.start = function(cell,
x,
y)
Starts the handling of the mouse gesture.
mxPanningHandler.prototype.start = function(me)
Starts panning at the given event.
mxRubberband.prototype.start = function(x,
y)
Sets the start point for the rubberband selection.
mxSession.prototype.start = function()
mxVertexHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
Fires when a new connection is being created by the user.
Specifies the event name for start.
Specifies the event name for startEdit.
Fires after the updateLevel was changed from 0 to 1.
Fires before a set of changes will be executed in undo or redo.
Specifies the event name for startEditing.
Fires before the in-place editor starts in startEditingAtCell.
mxAnimation.prototype.startAnimation = function()
Starts the animation by repeatedly invoking updateAnimation.
mxDragSource.prototype.startDrag = function(evt)
Creates the dragElement using createDragElement.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxAbstractCanvas2D.prototype.state
Holds the current state.
mxCellHighlight.prototype.state
Reference to the mxCellState.
mxEdgeHandler.prototype.state
Reference to the mxCellState being modified.
mxMouseEvent.prototype.state
Holds the optional mxCellState associated with this event.
mxShape.prototype.state
Optional reference to the corresponding mxCellState.
mxVertexHandler.prototype.state
Reference to the mxCellState being modified.
mxAbstractCanvas2D.prototype.states
Stack of states.
mxGuide.prototype.states
Contains the mxCellStates that are used for alignment.
mxGraphView.prototype.stateValidated = function(state)
Invoked when a state has been processed in validatePoints.
mxEditor.prototype.status
DOM container that holds the statusbar.
mxShape.prototype.stencil
Holds the mxStencil that defines the shape.
mxShape.prototype.stencilPointerEvents
Specifies if pointer events outside of stencils should be handled.
mxMorphing.prototype.step
Contains the current step.
mxMorphing.prototype.steps
Specifies the maximum number of steps for the morphing.
Defines the step size to offset the cells after each paste operation.
mxSession.prototype.stop = function(reason)
Stops the session and fires a disconnect event.
mxAnimation.prototype.stopAnimation = function()
Stops the animation by deleting the timer and fires an mxEvent.DONE.
mxDragSource.prototype.stopDrag = function(evt)
Removes and destroys the dragElement.
mxCellEditor.prototype.stopEditing = function(cancel)
Stops the editor and applies the value if cancel is false.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxMorphing.prototype.stopRecursion = function(state,
delta)
Returns true if the animation should not recursively find more deltas for children if the given parent state has been animated.
mxSvgCanvas2D.prototype.stroke = function()
Paints the outline of the current path.
mxVmlCanvas2D.prototype.stroke = function()
Paints the outline of the current path.
mxXmlCanvas2D.prototype.stroke = function()
Paints the outline of the current drawing buffer.
mxSvgCanvas2D.prototype.strokeTolerance
Adds transparent paths for strokes.
mxStencil.prototype.strokewidth
Holds the strokewidth direction from the description.
mxCell.prototype.style
Holds the style as a string of the form [(stylename|key=value);].
mxCellState.prototype.style
Contains an array of key, value pairs that represent the style of the cell.
mxShape.prototype.style
Optional reference to the style of the corresponding mxCellState.
Defines the key for the align style.
Defines the rounding factor for a rounded rectangle in percent (without the percent sign).
Defines the key for the aspect style.
Defines the key for the autosize style.
Defines the key for the bendable style.
Defines the key for the cloneable style.
Defines the key for the curved style.
Defines the key for the dashed style.
Defines the key for the deletable style.
Defines the key for the direction style.
Defines the key for the edge style.
Defines the key for the editable style.
Defines the key for the elbow style.
Defines the key for the end arrow marker.
Defines the key for the endFill style.
Defines the key for the endSize style.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the target.
Defines the key for the horizontal relative coordinate connection point of an edge with its target terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its target terminal.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the source.
Defines the key for the horizontal relative coordinate connection point of an edge with its source terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its source terminal.
Defines the key for the fill color.
Defines the key for the horizontal image flip.
Defines the key for the vertical flip.
Defines the key for the foldable style.
Defines the key for the fontColor style.
Defines the key for the fontFamily style.
Defines the key for the fontSize style (in points).
Defines the key for the fontStyle style.
Defines the key for the glass style.
Defines the key for the gradient direction.
Defines the key for the gradient color.
Defines the key for the horizontal style.
Defines the key for the image style.
Defines the key for the align style.
Defines the key for the image aspect style.
Defines the key for the image background color.
Defines the key for the image border color.
Defines the key for the imageHeight style.
Defines the key for the verticalAlign style.
Defines the key for the imageWidth style.
Defines the key for the indicatorColor style.
Defines the key for the indicatorDirection style.
Defines the key for the indicatorGradientColor style.
Defines the key for the indicator height.
Defines the key for the indicator image used within an mxLabel.
Defines the key for the indicator shape used within an mxLabel.
The defines the key for the spacing between the label and the indicator in mxLabel.
Defines the key for the indicator stroke color in mxLabel.
Defines the key for the indicator width.
Defines the key for the label background color.
Defines the key for the label border color.
Defines the key for the label padding, ie.
Defines the key for the horizontal label position of vertices.
Defines the key for the loop style.
Defines the key for the margin between the ellipses in the double ellipse shape.
Defines the key for the movable style.
Defines the key for the noEdgeStyle style.
Defines the key for the noLabel style.
Defines the key for the opacity style.
Defines if the connection points on either end of the edge should be computed so that the edge is vertical or horizontal if possible and if the point is not at a fixed location.
Defines the key for the overflow style.
Defines the key for the perimeter style.
Defines the key for the perimeter spacing.
Defines the direction(s) that edges are allowed to connect to cells in.
Define whether port constraint directions are rotated with vertex rotation.
Defines the key for the resizable style.
Defines the key for the rotatable style.
Defines the key for the rotation style.
Defines the key for the rounded style.
Defines the key for the horizontal routing center.
Defines the key for the vertical routing center.
Defines the key for the segment style.
Defines the key for the separatorColor style.
Defines the key for the shadow style.
Defines the key for the shape.
An experimental style for edges.
Defines the key for the source perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the source for an edge.
Defines the key for the spacing.
Defines the key for the spacingBottom style The value represents the spacing, in pixels, added to the bottom side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingLeft style.
Defines the key for the spacingRight style The value represents the spacing, in pixels, added to the right side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingTop style.
Defines the key for the start arrow marker.
Defines the key for the startFill style.
Defines the key for the startSize style.
Defines the key for the strokeColor style.
Defines the key for the strokeWidth style.
Defines the key for the swimlaneLine style.
Defines the key for the target perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the target for an edge.
Defines the key for the text opacity style.
Defines the key for the verticalAlign style.
Defines the key for the vertical label position of vertices.
Defines the key for the white-space style.
this.styleEnabled
Stores the value of styleEnabled passed to the constructor.
mxGraphModel.prototype.styleForCellChanged = function(cell,
style)
Inner callback to update the style of the given mxCell using mxCell.setStyle and return the previous style.
Maps from names to cell styles.
mxGraph.prototype.stylesheet
Holds the mxStylesheet that defines the appearance of the cells.
mxPopupMenu.prototype.submenuImage
URL of the image to be used for the submenu icon.
submit: function(url,
params,
doc,
target)
Submits the given parameters to the specified URL using mxXmlRequest.simulate and returns the mxXmlRequest.
mxSession.prototype.suspend = function()
Suspends the polling.
Specifies the event name for suspend.
Fires after suspend was called an the session was not already in suspended state.
mxOutline.prototype.suspended
Optional boolean flag to suspend updates.
mxCylinder.prototype.svgStrokeTolerance
Sets stroke tolerance to 0 for SVG.
mxShape.prototype.svgStrokeTolerance
Event-tolerance for SVG strokes (in px).
mxGeometry.prototype.swap = function()
Swaps the x, y, width and height with the values stored in alternateBounds and puts the previous values into alternateBounds as a rectangle.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxEditor.prototype.swapStyles = function (first,
second)
Swaps the styles for the given names in the graph’s stylesheet and refreshes the graph.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
mxGraph.prototype.swimlaneIndicatorColorAttribute
The attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.
mxGraph.prototype.swimlaneNesting
Specifies if nesting of swimlanes is allowed.
mxEditor.prototype.swimlaneRequired
Specifies if new cells must be inserted into an existing swimlane.
mxSwimlaneLayout.prototype.swimlanes
Holds the array of mxCell of the ordered swimlanes to lay out
mxGraph.prototype.swimlaneSelectionEnabled
Specifies if swimlanes should be selectable via the content if the mouse is released.
mxEditor.prototype.swimlaneSpacing
Specifies the spacing between swimlanes if automatic layout is turned on in layoutDiagram.
+
mxAbstractCanvas2D.prototype.save = function()
Saves the current state.
mxAutoSaveManager.prototype.save = function()
Empty hook that is called if the graph should be saved.
mxEditor.prototype.save = function (url,
linefeed)
Posts the string returned by writeGraphModel to the given URL or the URL returned by getUrlPost.
save: function(filename,
content)
Saves the specified content in the given file on the local file system.
mxXmlCanvas2D.prototype.save = function()
Saves the drawing state.
Fires after the current file was saved in save.
Specifies the event name for open.
saveAs: function(content)
Saves the specified content by displaying a dialog to save the content as a file on the local filesystem.
mxAbstractCanvas2D.prototype.scale = function(value)
Scales the current state.
mxGraphView.prototype.scale
Specifies the scale.
mxPrintPreview.prototype.scale
Holds the scale of the print preview.
mxShape.prototype.scale
Holds the scale in which the shape is being painted.
mxXmlCanvas2D.prototype.scale = function(value)
Scales the output.
Specifies the event name for scale.
Fires after the scale was changed in setScale.
Specifies the event name for scaleAndTranslate.
Fires after the scale and translate have been changed in scaleAndTranslate.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxGraph.prototype.scaleCell = function(cell,
dx,
dy,
recurse)
Scales the points, position and size of the given cell according to the given vertical and horizontal scaling factors.
mxPanningHandler.prototype.scaleGraph = function(scale,
preview)
Handles pinch events on touch devices.
mxGraphHandler.prototype.scaleGrid
Specifies if the grid should be scaled.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraphHandler.prototype.scrollOnMove
Specifies if the view should be scrolled so that a moved cell is visible.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
SegmentConnector: function(state,
source,
target,
hints,
result)
Implements an orthogonal edge style.
mxCellState.prototype.segments
Array of numbers that represent the cached length of each segment of the edge.
mxConnectionHandler.prototype.select
Specifies if new edges should be selected.
Specifies the event name for select.
Fires when an item was selected in the toolbar.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxConnectionHandler.prototype.selectCells = function(edge,
target)
Selects the given edge after adding a new connection.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraphHandler.prototype.selectDelayed = function(me)
Implements the delayed selection for the given mouse event.
mxGraphHandler.prototype.selectEnabled
Specifies if selecting is enabled.
Defines the dashed state to be used for the vertex selection border.
mxGraph.prototype.selectionModel
Holds the mxGraphSelectionModel that models the current selection.
mxToolbar.prototype.selectMode = function(domNode,
funct)
Resets the state of the previously selected mode and displays the given DOM node as selected.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxPopupMenuHandler.prototype.selectOnPopup
Specifies if cells should be selected if a popupmenu is displayed for them.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxCellEditor.prototype.selectText
Specifies if the text should be selected when editing starts.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxXmlRequest.prototype.send = function(onload,
onerror)
Send the request to the target URL using the specified functions to process the response asychronously.
mxSession.prototype.sent
Total number of sent bytes.
mxEditor.prototype.session
Holds a mxSession instance associated with this editor.
Fires when anything in the session has changed.
Specifies the event name for session.
mxCellState.prototype.setAbsoluteTerminalPoint = function (point,
isSource)
Sets the first or last point in absolutePoints depending on isSource.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
mxAbstractCanvas2D.prototype.setAlpha = function(value)
Sets the current alpha.
mxXmlCanvas2D.prototype.setAlpha = function(value)
Sets the current alpha.
mxCell.prototype.setAttribute = function(name,
value)
Sets the specified attribute on the user object if it is an XML node.
mxCodec.prototype.setAttribute = function(node,
attribute,
value)
Sets the attribute on the specified node to value.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
setBaseDomain: function(value)
Sets baseDomain.
setBaseUrl: function(value)
Sets baseUrl.
mxXmlRequest.prototype.setBinary = function(value)
Sets binary.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxLayoutManager.prototype.setBubbling = function(value)
Sets bubbling.
mxGraphSelectionModel.prototype.setCell = function(cell)
Selects the specified mxCell using setCells.
mxCompactTreeLayout.prototype.setCellHeights = function(node,
rank)
Set the cells heights (relative to the layout direction) when the tops of each rank are to be aligned
mxCoordinateAssignment.prototype.setCellLocations = function(graph,
model)
Sets the cell locations in the facade to those stored after this layout processing step has completed.
setCells: function(cells)
Sets the cells in the clipboard.
mxGraphSelectionModel.prototype.setCells = function(cells)
Selects the given array of mxCells and fires a change event.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlags: function(model,
cells,
key,
flag,
value)
Sets or toggles the flag bit for the given key in the cell’s styles.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
setCellStyles: function(model,
cells,
key,
value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraphHandler.prototype.setCloneEnabled = function(value)
Sets cloneEnabled.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxWindow.prototype.setClosable = function(closable)
Sets the image associated with the window.
mxCell.prototype.setCollapsed = function(collapsed)
Sets the collapsed state.
mxGraphModel.prototype.setCollapsed = function(cell,
collapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
mxCell.prototype.setConnectable = function(connectable)
Sets the connectable state.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraph.prototype.setConstrainChildrenOnResize = function(value)
Sets constrainChildrenOnResize.
mxGraphModel.prototype.setCreateIds = function(value)
Sets createIds.
mxConnectionHandler.prototype.setCreateTarget = function(value)
Sets createTarget.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxCellState.prototype.setCursor = function (cursor)
Sets the given cursor on the shape and text shape.
mxShape.prototype.setCursor = function(cursor)
Sets the cursor on the given shape.
mxAbstractCanvas2D.prototype.setDashed = function(value)
Enables or disables dashed lines.
mxXmlCanvas2D.prototype.setDashed = function(value)
Enables or disables dashed lines.
mxAbstractCanvas2D.prototype.setDashPattern = function(value)
Sets the current dash pattern.
mxXmlCanvas2D.prototype.setDashPattern = function(value)
Sets the current dash pattern.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxCell.prototype.setEdge = function(edge)
Specifies if the cell is an edge.
mxGraphLayout.prototype.setEdgePoints = function(edge,
points)
Replaces the array of mxPoints in the geometry of the given edge with the given array of mxPoints.
mxCoordinateAssignment.prototype.setEdgePosition = function(cell)
Fixes the control points
mxGraphLayout.prototype.setEdgeStyleEnabled = function(edge,
value)
Disables or enables the edge style of the given edge.
mxAutoSaveManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxCellMarker.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConnectionHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConstraintHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxDragSource.prototype.setEnabled = function(value)
Sets enabled.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraphHandler.prototype.setEnabled = function(value)
Sets enabled.
mxKeyHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling by updating enabled.
mxLayoutManager.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxOutline.prototype.setEnabled = function(value)
Enables or disables event handling.
mxPopupMenu.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxRubberband.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxSelectionCellsHandler.prototype.setEnabled = function(value)
Sets enabled.
mxSpaceManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxTooltipHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
setEnabled: function(value)
Sets enabled.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxEventSource.prototype.setEventsEnabled = function(value)
Sets eventsEnabled.
mxEventSource.prototype.setEventSource = function(value)
Sets eventSource.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
mxAbstractCanvas2D.prototype.setFillColor = function(value)
Sets the current fill color.
mxXmlCanvas2D.prototype.setFillColor = function(value)
Sets the current fill color.
mxXmlCanvas2D.prototype.setFontBackgroundColor = function(value)
Sets the current font background color.
mxXmlCanvas2D.prototype.setFontBorderColor = function(value)
Sets the current font border color.
mxAbstractCanvas2D.prototype.setFontColor = function(value)
Sets the current font color.
mxXmlCanvas2D.prototype.setFontColor = function(value)
Sets the current font color.
mxAbstractCanvas2D.prototype.setFontFamily = function(value)
Sets the current font family.
mxXmlCanvas2D.prototype.setFontFamily = function(value)
Sets the current font family.
mxAbstractCanvas2D.prototype.setFontSize = function(value)
Sets the current font size.
mxXmlCanvas2D.prototype.setFontSize = function(value)
Sets the current font size.
mxAbstractCanvas2D.prototype.setFontStyle = function(value)
Sets the current font style.
mxXmlCanvas2D.prototype.setFontStyle = function(value)
Sets the current font style.
mxGraphAbstractHierarchyCell.prototype.setGeneralPurposeVariable = function(
   layer,
   value
)
Set the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxGraphHierarchyNode.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxCell.prototype.setGeometry = function(geometry)
Sets the mxGeometry to be used as the geometry.
mxGraphModel.prototype.setGeometry = function(cell,
geometry)
Sets the mxGeometry of the given mxCell.
mxAbstractCanvas2D.prototype.setGradient = function(color1,
color2,
x,
y,
w,
h,
direction,
alpha1,
alpha2)
Sets the current gradient.
mxXmlCanvas2D.prototype.setGradient = function(color1,
color2,
x,
y,
w,
h,
direction,
alpha1,
alpha2)
Sets the gradient.
mxAutoSaveManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxLayoutManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSpaceManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxEditor.prototype.setGraphContainer = function (container)
Sets the graph’s container using mxGraph.init.
mxDragSource.prototype.setGridEnabled = function(value)
Sets gridEnabled.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxDragSource.prototype.setGuidesEnabled = function(value)
Sets guidesEnabled.
mxTooltipHandler.prototype.setHideOnHover = function(value)
Sets hideOnHover.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxGraphHandler.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxCellMarker.prototype.setHotspot = function(hotspot)
Sets the hotspot.
mxCellMarker.prototype.setHotspotEnabled = function(enabled)
Specifies whether the hotspot should be used in intersects.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxCell.prototype.setId = function(id)
Sets the Id of the cell to the given string.
mxWindow.prototype.setImage = function(image)
Sets the image associated with the window.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
mxAbstractCanvas2D.prototype.setLineCap = function(value)
Sets the current line cap.
mxXmlCanvas2D.prototype.setLineCap = function(value)
Sets the line cap.
mxAbstractCanvas2D.prototype.setLineJoin = function(value)
Sets the current line join.
mxXmlCanvas2D.prototype.setLineJoin = function(value)
Sets the line join.
mxWindow.prototype.setLocation = function(x,
y)
Sets the upper, left corner of the window.
Sets if any cell may be moved, sized, bended, disconnected, edited or selected.
mxWindow.prototype.setMaximizable = function(maximizable)
Sets if the window is maximizable.
mxWindow.prototype.setMinimizable = function(minimizable)
Sets if the window is minimizable.
mxAbstractCanvas2D.prototype.setMiterLimit = function(value)
Sets the current miter limit.
mxXmlCanvas2D.prototype.setMiterLimit = function(value)
Sets the miter limit.
mxEditor.prototype.setMode = function(modename)
Puts the graph into the specified mode.
mxCellEditor.prototype.setModified = function(value)
Sets modified to the specified boolean value.
mxEditor.prototype.setModified = function (value)
Sets modified to the specified boolean value.
mxGraphHandler.prototype.setMoveEnabled = function(value)
Sets moveEnabled.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
setOpacity: function(node,
value)
Sets the opacity of the specified DOM node to the given value in %.
mxGraphLayout.prototype.setOrthogonalEdge = function(edge,
value)
Disables or enables orthogonal end segments of the given edge.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxCell.prototype.setParent = function(parent)
Sets the parent cell.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
setPrefixedStyle: function()
Adds the given style with the standard name and an optional vendor prefix for the current browser.
mxEdgeHandler.prototype.setPreviewColor = function(color)
Sets the color of the preview to the given value.
mxRectangle.prototype.setRect = function(x,
y,
w,
h)
Sets this rectangle to the specified values
mxGraph.prototype.setRecursiveResize = function(value)
Sets recursiveResize.
mxGraphHandler.prototype.setRemoveCellsFromParent = function(value)
Sets removeCellsFromParent.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxXmlRequest.prototype.setRequestHeaders = function(request,
params)
Sets the headers for the given request and parameters.
mxWindow.prototype.setResizable = function(resizable)
Sets if the window should be resizable.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxGraphModel.prototype.setRoot = function(root)
Sets the root of the model using mxRootChange and adds the change to the current transaction.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxWindow.prototype.setScrollable = function(scrollable)
Sets if the window contents should be scrollable.
mxGraphHandler.prototype.setSelectEnabled = function(value)
Sets selectEnabled.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxAbstractCanvas2D.prototype.setShadow = function(enabled)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadow = function(value)
Enables or disables shadows.
mxAbstractCanvas2D.prototype.setShadowAlpha = function(value)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadowAlpha = function(value)
Sets the current shadows alpha.
mxAbstractCanvas2D.prototype.setShadowColor = function(value)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadowColor = function(value)
Sets the current shadow color.
mxAbstractCanvas2D.prototype.setShadowOffset = function(dx,
dy)
Enables or disables and configures the current shadow.
mxXmlCanvas2D.prototype.setShadowOffset = function(dx,
dy)
Sets the current shadow offset.
mxSpaceManager.prototype.setShiftDownwards = function(value)
Enables or disables event handling.
mxSpaceManager.prototype.setShiftRightwards = function(value)
Enables or disables event handling.
mxGraphSelectionModel.prototype.setSingleSelection = function(singleSelection)
Sets the singleSelection flag.
mxWindow.prototype.setSize = function(width,
height)
Sets the size of the window.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGuide.prototype.setStates = function(states)
Sets the mxCellStates that should be used for alignment.
mxEditor.prototype.setStatus = function (message)
Display the specified message in the status bar.
mxEditor.prototype.setStatusContainer = function (container)
Creates the status using the specified container.
mxAbstractCanvas2D.prototype.setStrokeColor = function(value)
Sets the current stroke color.
mxXmlCanvas2D.prototype.setStrokeColor = function(value)
Sets the current stroke color.
mxAbstractCanvas2D.prototype.setStrokeWidth = function(value)
Sets the current stroke width.
mxXmlCanvas2D.prototype.setStrokeWidth = function(value)
Sets the current stroke width.
mxCell.prototype.setStyle = function(style)
Sets the string to be used as the style.
mxGraphModel.prototype.setStyle = function(cell,
style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
setStyle: function(style,
key,
value)
Adds or removes the given key, value pair to the style and returns the new style.
setStyleFlag: function(style,
key,
flag,
value)
Sets or removes the given key from the specified style and returns the new style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxCell.prototype.setTerminal = function(terminal,
isSource)
Sets the source or target terminal and returns the new terminal.
mxGraphModel.prototype.setTerminal = function(edge,
terminal,
isSource)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
mxGeometry.prototype.setTerminalPoint = function(point,
isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
mxGraphModel.prototype.setTerminals = function(edge,
source,
target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
setTextContent: function(node,
text)
Sets the text content of the specified node.
mxWindow.prototype.setTitle = function(title)
Sets the window title to the given string.
mxEditor.prototype.setTitleContainer = function (container)
Creates a listener to update the inner HTML of the specified DOM node with the value of getTitle.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxEditor.prototype.setToolbarContainer = function (container)
Initializes the toolbar for the given container.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxShape.prototype.setTransparentBackgroundImage = function(node)
Sets a transparent background CSS style to catch all events.
mxCell.prototype.setValue = function(value)
Sets the user object of the cell.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxCell.prototype.setVertex = function(vertex)
Specifies if the cell is a vertex.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxCoordinateAssignment.prototype.setVertexLocation = function(cell)
Fixes the position of the specified vertex.
mxGraphLayout.prototype.setVertexLocation = function(cell,
x,
y)
Sets the new position of the given cell taking into account the size of the bounding box if useBoundingBox is true.
mxCell.prototype.setVisible = function(visible)
Specifies if the cell is visible.
mxGraphModel.prototype.setVisible = function(cell,
visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
setVisible: function(visible)
Shows or hides the console.
mxWindow.prototype.setVisible = function(visible)
Shows or hides the window depending on the given flag.
mxCellState.prototype.setVisibleTerminalState = function (terminalState,
source)
Sets the visible source or target terminal state.
mxGraphAbstractHierarchyCell.prototype.setX = function(layer,
value)
Set the value of x for the specified layer
mxGraphAbstractHierarchyCell.prototype.setY = function(layer,
value)
Set the value of y for the specified layer
mxOutline.prototype.setZoomEnabled = function(value)
Enables or disables the zoom handling by showing or hiding the respective handle.
Specifies the x-offset of the shadow.
Specifies the y-offset of the shadow.
Defines the opacity for shadows.
Defines the color to be used to draw shadows in shapes and windows.
mxCellState.prototype.shape
Holds the mxShape that represents the cell graphically.
mxEdgeHandler.prototype.shape
Holds the mxShape that represents the preview edge.
mxGraphHandler.prototype.shape
Reference to the mxShape that represents the preview.
Name under which mxActor is registered in mxCellRenderer.
Name under which mxArrow is registered in mxCellRenderer.
Name under which mxCloud is registered in mxCellRenderer.
Name under which mxConnector is registered in mxCellRenderer.
Name under which mxCylinder is registered in mxCellRenderer.
Name under which mxDoubleEllipse is registered in mxCellRenderer.
Name under which mxEllipse is registered in mxCellRenderer.
Name under which mxHexagon is registered in mxCellRenderer.
Name under which mxImageShape is registered in mxCellRenderer.
Name under which mxLabel is registered in mxCellRenderer.
Name under which mxLine is registered in mxCellRenderer.
Name under which mxRectangleShape is registered in mxCellRenderer.
Name under which mxRhombus is registered in mxCellRenderer.
Name under which mxSwimlane is registered in mxCellRenderer.
Name under which mxTriangle is registered in mxCellRenderer.
mxRubberband.prototype.sharedDiv
Holds the DIV element which is used to display the rubberband.
mxSpaceManager.prototype.shiftCell = function(cell,
dx,
dy,
Ox0,
y0,
right,
bottom,
fx,
fy,
extendParent)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSpaceManager.prototype.shiftDownwards
Specifies if event handling is enabled.
mxKeyHandler.prototype.shiftKeys
Maps from keycodes to functions for pressed shift keys.
mxSpaceManager.prototype.shiftRightwards
Specifies if event handling is enabled.
mxGraphHandler.prototype.shouldRemoveCellsFromParent = function(parent,
cells,
evt)
Returns true if the given cells should be removed from the parent for the specified mousereleased event.
mxCellStatePreview.prototype.show = function(visitor)
show: function()
Shows the console.
mxMorphing.prototype.show = function(move)
Shows the changes in the given mxCellStatePreview.
mxTooltipHandler.prototype.show = function(tip,
x,
y)
Shows the tooltip for the specified cell and optional index at the specified location (with a vertical offset of 10 pixels).
show: function(graph,
doc,
x0,
y0,
w,
h)
Copies the styles and the markup from the graph’s container into the given document and removes all cursor styles.
mxWindow.prototype.show = function()
Shows the window.
Specifies the event name for show.
Fires after the menu has been shown in popup.
Fires after the window is shown.
mxEditor.prototype.showHelp = function (tasks)
Shows the help window.
mxPopupMenu.prototype.showMenu = function()
Shows the menu.
mxEditor.prototype.showOutline = function ()
Shows the outline window.
mxEditor.prototype.showProperties = function (cell)
Creates and shows the properties dialog for the given cell.
mxPopupMenu.prototype.showSubmenu = function(parent,
row)
Shows the submenu inside the given parent row.
mxEditor.prototype.showTasks = function ()
Shows the tasks window.
mxOutline.prototype.showViewport
Specifies a viewport rectangle should be shown.
SideToSide: function (state,
source,
target,
points,
result)
Implements a vertical elbow edge.
mxUndoableEdit.prototype.significant
Specifies if the undoable change is significant.
mxSession.prototype.significantRemoteChanges
Whether remote changes should be significant in the local command history.
mxXmlRequest.prototype.simulate = function(doc,
target)
Creates and posts a request to the given target URL using a dynamically created form inside the given document.
mxGraphSelectionModel.prototype.singleSelection
Specifies if only one selected item at a time is allowed.
mxVertexHandler.prototype.singleSizer
Specifies if only one sizer handle at the bottom, right corner should be used.
mxUndoManager.prototype.size
Maximum command history size.
Specifies the event name for size.
Fires after sizeDidChange was executed.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxOutline.prototype.sizerImage
Optional mxImage to be used for the sizer.
mxPopupMenu.prototype.smartSeparators
Specifies if separators should only be added if a menu item follows them.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraphHandler.prototype.snap = function(vector)
Snaps the given vector to the grid and returns the given mxPoint instance.
mxEdgeHandler.prototype.snapToTerminals
Specifies if waypoints should snap to the routing centers of terminals.
sortCells: function(cells,
ascending)
Sorts the given cells according to the order in the cell hierarchy.
mxCompactTreeLayout.prototype.sortEdges
Specifies if edges should be sorted according to the order of their opposite terminal cell in the model.
mxCompactTreeLayout.prototype.sortOutgoingEdges = function(source,
edges)
Called if sortEdges is true to sort the array of outgoing edges in place.
mxCell.prototype.source
Reference to the source terminal.
mxGraphHierarchyEdge.prototype.source
The node this edge is sourced at
mxMultiplicity.prototype.source
Boolean that specifies if the rule is applied to the source or target terminal of an edge.
Reference to the source mxGraph.
mxUndoableEdit.prototype.source
Specifies the source of the edit.
mxGeometry.prototype.sourcePoint
Defines the source mxPoint of the edge.
mxGraphHierarchyModel.prototype.SOURCESCANSTARTRANK
High value to start source layering scan rank value from.
mxSwimlaneModel.prototype.SOURCESCANSTARTRANK
High value to start source layering scan rank value from.
mxCellHighlight.prototype.spacing
Specifies the spacing between the highlight for vertices and the vertex.
mxDefaultToolbar.prototype.spacing
Defines the spacing between existing and new vertices in gridSize units when a new vertex is dropped on an existing cell.
mxLabel.prototype.spacing
Default value for image spacing.
mxParallelEdgeLayout.prototype.spacing
Defines the spacing between the parallels.
mxPartitionLayout.prototype.spacing
Integer that specifies the absolute spacing in pixels between the children.
mxStackLayout.prototype.spacing
Specifies the spacing between the cells.
Specifies the event name for splitEdge.
Fires between begin- and endUpdate in splitEdge.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxGraph.prototype.splitEnabled
Specifies if dropping onto edges should be enabled.
mxImage.prototype.src
String that specifies the URL of the image.
mxConnectionHandler.prototype.start = function(state,
x,
y,
edgeState)
Starts a new connection for the given state and coordinates.
mxEdgeHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxGraphHandler.prototype.start = function(cell,
x,
y)
Starts the handling of the mouse gesture.
mxPanningHandler.prototype.start = function(me)
Starts panning at the given event.
mxRubberband.prototype.start = function(x,
y)
Sets the start point for the rubberband selection.
mxSession.prototype.start = function()
mxVertexHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
Fires when a new connection is being created by the user.
Specifies the event name for start.
Specifies the event name for startEdit.
Fires after the updateLevel was changed from 0 to 1.
Fires before a set of changes will be executed in undo or redo.
Specifies the event name for startEditing.
Fires before the in-place editor starts in startEditingAtCell.
mxAnimation.prototype.startAnimation = function()
Starts the animation by repeatedly invoking updateAnimation.
mxDragSource.prototype.startDrag = function(evt)
Creates the dragElement using createDragElement.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxAbstractCanvas2D.prototype.state
Holds the current state.
mxCellHighlight.prototype.state
Reference to the mxCellState.
mxEdgeHandler.prototype.state
Reference to the mxCellState being modified.
mxMouseEvent.prototype.state
Holds the optional mxCellState associated with this event.
mxShape.prototype.state
Optional reference to the corresponding mxCellState.
mxVertexHandler.prototype.state
Reference to the mxCellState being modified.
mxAbstractCanvas2D.prototype.states
Stack of states.
mxGuide.prototype.states
Contains the mxCellStates that are used for alignment.
mxGraphView.prototype.stateValidated = function(state)
Invoked when a state has been processed in validatePoints.
mxEditor.prototype.status
DOM container that holds the statusbar.
mxShape.prototype.stencil
Holds the mxStencil that defines the shape.
mxShape.prototype.stencilPointerEvents
Specifies if pointer events outside of stencils should be handled.
mxMorphing.prototype.step
Contains the current step.
mxMorphing.prototype.steps
Specifies the maximum number of steps for the morphing.
Defines the step size to offset the cells after each paste operation.
mxSession.prototype.stop = function(reason)
Stops the session and fires a disconnect event.
mxAnimation.prototype.stopAnimation = function()
Stops the animation by deleting the timer and fires an mxEvent.DONE.
mxDragSource.prototype.stopDrag = function(evt)
Removes and destroys the dragElement.
mxCellEditor.prototype.stopEditing = function(cancel)
Stops the editor and applies the value if cancel is false.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxMorphing.prototype.stopRecursion = function(state,
delta)
Returns true if the animation should not recursively find more deltas for children if the given parent state has been animated.
mxSvgCanvas2D.prototype.stroke = function()
Paints the outline of the current path.
mxVmlCanvas2D.prototype.stroke = function()
Paints the outline of the current path.
mxXmlCanvas2D.prototype.stroke = function()
Paints the outline of the current drawing buffer.
mxSvgCanvas2D.prototype.strokeTolerance
Adds transparent paths for strokes.
mxStencil.prototype.strokewidth
Holds the strokewidth direction from the description.
mxCell.prototype.style
Holds the style as a string of the form [(stylename|key=value);].
mxCellState.prototype.style
Contains an array of key, value pairs that represent the style of the cell.
mxShape.prototype.style
Optional reference to the style of the corresponding mxCellState.
Defines the key for the align style.
Defines the rounding factor for a rounded rectangle in percent (without the percent sign).
Defines the key for the aspect style.
Defines the key for the autosize style.
Defines the key for the bendable style.
Defines the key for the cloneable style.
Defines the key for the curved style.
Defines the key for the dashed style.
Defines the key for the deletable style.
Defines the key for the direction style.
Defines the key for the edge style.
Defines the key for the editable style.
Defines the key for the elbow style.
Defines the key for the end arrow marker.
Defines the key for the endFill style.
Defines the key for the endSize style.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the target.
Defines the key for the horizontal relative coordinate connection point of an edge with its target terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its target terminal.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the source.
Defines the key for the horizontal relative coordinate connection point of an edge with its source terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its source terminal.
Defines the key for the fill color.
Defines the key for the horizontal image flip.
Defines the key for the vertical flip.
Defines the key for the foldable style.
Defines the key for the fontColor style.
Defines the key for the fontFamily style.
Defines the key for the fontSize style (in points).
Defines the key for the fontStyle style.
Defines the key for the glass style.
Defines the key for the gradient direction.
Defines the key for the gradient color.
Defines the key for the horizontal style.
Defines the key for the image style.
Defines the key for the align style.
Defines the key for the image aspect style.
Defines the key for the image background color.
Defines the key for the image border color.
Defines the key for the imageHeight style.
Defines the key for the verticalAlign style.
Defines the key for the imageWidth style.
Defines the key for the indicatorColor style.
Defines the key for the indicatorDirection style.
Defines the key for the indicatorGradientColor style.
Defines the key for the indicator height.
Defines the key for the indicator image used within an mxLabel.
Defines the key for the indicator shape used within an mxLabel.
The defines the key for the spacing between the label and the indicator in mxLabel.
Defines the key for the indicator stroke color in mxLabel.
Defines the key for the indicator width.
Defines the key for the label background color.
Defines the key for the label border color.
Defines the key for the label padding, ie.
Defines the key for the horizontal label position of vertices.
Defines the key for the loop style.
Defines the key for the margin between the ellipses in the double ellipse shape.
Defines the key for the movable style.
Defines the key for the noEdgeStyle style.
Defines the key for the noLabel style.
Defines the key for the opacity style.
Defines if the connection points on either end of the edge should be computed so that the edge is vertical or horizontal if possible and if the point is not at a fixed location.
Defines the key for the overflow style.
Defines the key for the perimeter style.
Defines the key for the perimeter spacing.
Defines the direction(s) that edges are allowed to connect to cells in.
Define whether port constraint directions are rotated with vertex rotation.
Defines the key for the resizable style.
Defines the key for the rotatable style.
Defines the key for the rotation style.
Defines the key for the rounded style.
Defines the key for the horizontal routing center.
Defines the key for the vertical routing center.
Defines the key for the segment style.
Defines the key for the separatorColor style.
Defines the key for the shadow style.
Defines the key for the shape.
An experimental style for edges.
Defines the key for the source perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the source for an edge.
Defines the key for the spacing.
Defines the key for the spacingBottom style The value represents the spacing, in pixels, added to the bottom side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingLeft style.
Defines the key for the spacingRight style The value represents the spacing, in pixels, added to the right side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingTop style.
Defines the key for the start arrow marker.
Defines the key for the startFill style.
Defines the key for the startSize style.
Defines the key for the strokeColor style.
Defines the key for the strokeWidth style.
Defines the key for the swimlaneLine style.
Defines the key for the target perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the target for an edge.
Defines the key for the text opacity style.
Defines the key for the verticalAlign style.
Defines the key for the vertical label position of vertices.
Defines the key for the white-space style.
this.styleEnabled
Stores the value of styleEnabled passed to the constructor.
mxGraphModel.prototype.styleForCellChanged = function(cell,
style)
Inner callback to update the style of the given mxCell using mxCell.setStyle and return the previous style.
Maps from names to cell styles.
mxGraph.prototype.stylesheet
Holds the mxStylesheet that defines the appearance of the cells.
mxPopupMenu.prototype.submenuImage
URL of the image to be used for the submenu icon.
submit: function(url,
params,
doc,
target)
Submits the given parameters to the specified URL using mxXmlRequest.simulate and returns the mxXmlRequest.
mxSession.prototype.suspend = function()
Suspends the polling.
Specifies the event name for suspend.
Fires after suspend was called an the session was not already in suspended state.
mxOutline.prototype.suspended
Optional boolean flag to suspend updates.
mxCylinder.prototype.svgStrokeTolerance
Sets stroke tolerance to 0 for SVG.
mxShape.prototype.svgStrokeTolerance
Event-tolerance for SVG strokes (in px).
mxGeometry.prototype.swap = function()
Swaps the x, y, width and height with the values stored in alternateBounds and puts the previous values into alternateBounds as a rectangle.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxEditor.prototype.swapStyles = function (first,
second)
Swaps the styles for the given names in the graph’s stylesheet and refreshes the graph.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
mxGraph.prototype.swimlaneIndicatorColorAttribute
The attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.
mxGraph.prototype.swimlaneNesting
Specifies if nesting of swimlanes is allowed.
mxEditor.prototype.swimlaneRequired
Specifies if new cells must be inserted into an existing swimlane.
mxSwimlaneLayout.prototype.swimlanes
Holds the array of mxCell of the ordered swimlanes to lay out
mxGraph.prototype.swimlaneSelectionEnabled
Specifies if swimlanes should be selectable via the content if the mouse is released.
mxEditor.prototype.swimlaneSpacing
Specifies the spacing between swimlanes if automatic layout is turned on in layoutDiagram.
diff --git a/docs/js-api/index/General17.html b/docs/js-api/index/General17.html index 91c035a89..f032c3d81 100644 --- a/docs/js-api/index/General17.html +++ b/docs/js-api/index/General17.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 table, mxForm
 TAP_AND_HOLD
 tapAndHold, mxGraph
 tapAndHoldDelay, mxGraph
 tapAndHoldEnabled, mxGraph
 tapAndHoldInProgress, mxGraph
 tapAndHoldValid, mxGraph
 target
 TARGET_HIGHLIGHT_COLOR, mxConstants
 targetConnectImage, mxConnectionHandler
 targetPoint, mxGeometry
 tasks, mxEditor
 tasksResource, mxEditor
 tasksTop, mxEditor
 tasksWindowImage, mxEditor
 temp, mxGraphAbstractHierarchyCell
 temperature, mxFastOrganicLayout
 template, mxObjectCodec
 templates, mxEditor
 Templates, mxEditor
 terminalDistance, mxCellState
 terminalForCellChanged, mxGraphModel
 text
 textarea, mxCellEditor
 textEnabled
 textNode, mxCellEditor
 thread, mxAnimation
 tightenToSource
 timerAutoScroll, mxGraph
 title
 TOGGLE_CELLS
 toggleCells, mxGraph
 toggleCellStyle, mxGraph
 toggleCellStyleFlags, mxGraph
 toggleCellStyles, mxGraph
 tolerance
 toolbar
 tooltip, mxCellOverlay
 TOOLTIP_VERTICAL_OFFSET, mxConstants
 TopToBottom, mxEdgeStyle
 toRadians, mxUtils
 toString
 TRACE, mxLog
 transformControlPoint, mxGraphView
 translate
 TRANSLATE
 TRANSLATE_CONTROL_POINTS, mxGeometry
 translateCell, mxGraph
 translateState, mxCellStatePreview
 transpose, mxMedianHybridCrossingReduction
 traverse
 traverseAncestors
 treeLayout, mxEditor
 TrianglePerimeter, mxPerimeter
 trigger, mxCellEditor
 triggerX, mxPanningHandler
 triggerY, mxPanningHandler
 trim
 type, mxMultiplicity
 typeError, mxMultiplicity
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 table, mxForm
 TAP_AND_HOLD
 tapAndHold, mxGraph
 tapAndHoldDelay, mxGraph
 tapAndHoldEnabled, mxGraph
 tapAndHoldInProgress, mxGraph
 tapAndHoldValid, mxGraph
 target
 TARGET_HIGHLIGHT_COLOR, mxConstants
 targetConnectImage, mxConnectionHandler
 targetPoint, mxGeometry
 tasks, mxEditor
 tasksResource, mxEditor
 tasksTop, mxEditor
 tasksWindowImage, mxEditor
 temp, mxGraphAbstractHierarchyCell
 temperature, mxFastOrganicLayout
 template, mxObjectCodec
 templates, mxEditor
 Templates, mxEditor
 terminalDistance, mxCellState
 terminalForCellChanged, mxGraphModel
 text
 textarea, mxCellEditor
 textEnabled
 textNode, mxCellEditor
 thread, mxAnimation
 tightenToSource
 timerAutoScroll, mxGraph
 title
 TOGGLE_CELLS
 toggleCells, mxGraph
 toggleCellStyle, mxGraph
 toggleCellStyleFlags, mxGraph
 toggleCellStyles, mxGraph
 tolerance
 toolbar
 tooltip, mxCellOverlay
 TOOLTIP_VERTICAL_OFFSET, mxConstants
 TopToBottom, mxEdgeStyle
 toRadians, mxUtils
 toString
 TRACE, mxLog
 transformControlPoint, mxGraphView
 translate
 TRANSLATE
 TRANSLATE_CONTROL_POINTS, mxGeometry
 translateCell, mxGraph
 translateState, mxCellStatePreview
 transpose, mxMedianHybridCrossingReduction
 traverse
 traverseAncestors
 treeLayout, mxEditor
 TrianglePerimeter, mxPerimeter
 trigger, mxCellEditor
 triggerX, mxPanningHandler
 triggerY, mxPanningHandler
 trim
 type, mxMultiplicity
 typeError, mxMultiplicity
-
mxForm.prototype.table
Holds the DOM node that represents the table.
Specifies the event name for tapAndHold.
Fires in tapAndHold if a tap and hold event was detected.
mxGraph.prototype.tapAndHold = function(me)
Handles the mxMouseEvent by highlighting the mxCellState.
mxGraph.prototype.tapAndHoldDelay
Specifies the time for a tap and hold.
mxGraph.prototype.tapAndHoldEnabled
Specifies if tap and hold should be used for starting connections on touch-based devices.
mxGraph.prototype.tapAndHoldInProgress
True if the timer for tap and hold events is running.
mxGraph.prototype.tapAndHoldValid
True as long as the timer is running and the touch events stay within the given tapAndHoldTolerance.
mxCell.prototype.target
Reference to the target terminal.
mxGraphHierarchyEdge.prototype.target
The node this edge targets
mxKeyHandler.prototype.target
Reference to the target DOM, that is, the DOM node where the key event listeners are installed.
Defines the color to be used for highlighting a target cell for a new or changed connection.
mxConnectionHandler.prototype.targetConnectImage
Specifies if the connect icon should be centered on the target state while connections are being previewed.
mxGeometry.prototype.targetPoint
Defines the target mxPoint of the edge.
mxEditor.prototype.tasks
Holds the mxWindow created in showTasks.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.tasksTop
Specifies the top coordinate of the tasks window in pixels.
mxEditor.prototype.tasksWindowImage
Icon for the tasks window.
mxGraphAbstractHierarchyCell.prototype.temp
Temporary variable for general use.
mxFastOrganicLayout.prototype.temperature
Temperature to limit displacement at later stages of layout.
mxObjectCodec.prototype.template
Holds the template object associated with this codec.
mxEditor.prototype.templates
Maps from names to protoype cells to be used in the toolbar for inserting new cells into the diagram.
mxCellState.prototype.terminalDistance
Caches the distance between the end points for an edge.
mxGraphModel.prototype.terminalForCellChanged = function(edge,
terminal,
isSource)
Inner helper function to update the terminal of the edge using mxCell.insertEdge and return the previous terminal.
mxCellState.prototype.text
Holds the mxText that represents the label of the cell.
mxSvgCanvas2D.prototype.text = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the given text.
mxVmlCanvas2D.prototype.text = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the given text.
mxXmlCanvas2D.prototype.text = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the given text.
mxCellEditor.prototype.textarea
Holds the input textarea.
mxSvgCanvas2D.prototype.textEnabled
Specifies if text output should be enabled.
mxVmlCanvas2D.prototype.textEnabled
Specifies if text output should be enabledetB.
mxXmlCanvas2D.prototype.textEnabled
Specifies if text output should be enabled.
mxCellEditor.prototype.textNode
Reference to the label DOM node that has been hidden.
mxAnimation.prototype.thread
Reference to the thread while the animation is running.
mxGraphHierarchyModel.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxHierarchicalLayout.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxSwimlaneLayout.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxGraph.prototype.timerAutoScroll
Specifies if timer-based autoscrolling should be used via mxPanningManager.
mxPrintPreview.prototype.title
Holds the title of the preview window.
mxWindow.prototype.title
Reference to the DOM node (TD) that contains the title.
Specifies the event name for toggleCells.
Fires between begin- and endUpdate in toggleCells.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
mxEdgeHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxGraph.prototype.tolerance
Tolerance for a move to be handled as a single click.
mxVertexHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxDefaultToolbar.prototype.toolbar
Holds the internal mxToolbar.
mxEditor.prototype.toolbar
Holds a mxDefaultToolbar for displaying the toolbar.
mxCellOverlay.prototype.tooltip
Holds the optional string to be used as the tooltip.
Defines the vertical offset for the tooltip.
TopToBottom: function(state,
source,
target,
points,
result)
Implements a horizontal elbow edge.
toRadians: function(deg)
Converts the given degree to radians.
mxCellOverlay.prototype.toString = function()
Returns the textual representation of the overlay to be used as the tooltip.
toString: function(obj)
Returns a textual representation of the specified object.
Specified if the output for enter and leave should be visible in the console.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxAbstractCanvas2D.prototype.translate = function(dx,
dy)
Translates the current state.
mxGeometry.prototype.translate = function(dx,
dy)
Translates the geometry by the specified amount.
mxGraphView.prototype.translate
mxPoint that specifies the current translation.
mxXmlCanvas2D.prototype.translate = function(dx,
dy)
Translates the output.
Specifies the event name for translate.
Fires after the translate was changed in setTranslate.
mxGeometry.prototype.TRANSLATE_CONTROL_POINTS
Global switch to translate the points in translate.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxCellStatePreview.prototype.translateState = function(parentState,
state,
dx,
dy)
mxMedianHybridCrossingReduction.prototype.transpose = function(
   mainLoopIteration,
   model
)
Takes each possible adjacent cell pair on each rank and checks if swapping them around reduces the number of crossing
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraphLayout.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxHierarchicalLayout.prototype.traverseAncestors
Whether or not to drill into child cells and layout in reverse group order.
mxSwimlaneLayout.prototype.traverseAncestors
Whether or not to drill into child cells and layout in reverse group order.
mxEditor.prototype.treeLayout = function (cell,
horizontal)
Executes a vertical or horizontal compact tree layout using the specified cell as an argument.
TrianglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a triangle perimeter.
mxCellEditor.prototype.trigger
Reference to the event that was used to start editing.
mxPopupMenuHandler.prototype.triggerX
X-coordinate of the mouse down event.
mxPopupMenuHandler.prototype.triggerY
X-coordinate of the mouse down event.
mxUndoManager.prototype.trim = function()
Removes all pending steps after indexOfNextAdd from the history, invoking die on each edit.
trim: function(str,
chars)
Strips all whitespaces from both end of the string.
mxMultiplicity.prototype.type
Defines the type of the source or target terminal.
mxMultiplicity.prototype.typeError
Holds the localized error message to be displayed if the type of the neighbor for a connection does not match the rule.
+
mxForm.prototype.table
Holds the DOM node that represents the table.
Specifies the event name for tapAndHold.
Fires in tapAndHold if a tap and hold event was detected.
mxGraph.prototype.tapAndHold = function(me)
Handles the mxMouseEvent by highlighting the mxCellState.
mxGraph.prototype.tapAndHoldDelay
Specifies the time for a tap and hold.
mxGraph.prototype.tapAndHoldEnabled
Specifies if tap and hold should be used for starting connections on touch-based devices.
mxGraph.prototype.tapAndHoldInProgress
True if the timer for tap and hold events is running.
mxGraph.prototype.tapAndHoldValid
True as long as the timer is running and the touch events stay within the given tapAndHoldTolerance.
mxCell.prototype.target
Reference to the target terminal.
mxGraphHierarchyEdge.prototype.target
The node this edge targets
mxKeyHandler.prototype.target
Reference to the target DOM, that is, the DOM node where the key event listeners are installed.
Defines the color to be used for highlighting a target cell for a new or changed connection.
mxConnectionHandler.prototype.targetConnectImage
Specifies if the connect icon should be centered on the target state while connections are being previewed.
mxGeometry.prototype.targetPoint
Defines the target mxPoint of the edge.
mxEditor.prototype.tasks
Holds the mxWindow created in showTasks.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.tasksTop
Specifies the top coordinate of the tasks window in pixels.
mxEditor.prototype.tasksWindowImage
Icon for the tasks window.
mxGraphAbstractHierarchyCell.prototype.temp
Temporary variable for general use.
mxFastOrganicLayout.prototype.temperature
Temperature to limit displacement at later stages of layout.
mxObjectCodec.prototype.template
Holds the template object associated with this codec.
mxEditor.prototype.templates
Maps from names to protoype cells to be used in the toolbar for inserting new cells into the diagram.
mxCellState.prototype.terminalDistance
Caches the distance between the end points for an edge.
mxGraphModel.prototype.terminalForCellChanged = function(edge,
terminal,
isSource)
Inner helper function to update the terminal of the edge using mxCell.insertEdge and return the previous terminal.
mxCellState.prototype.text
Holds the mxText that represents the label of the cell.
mxSvgCanvas2D.prototype.text = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the given text.
mxVmlCanvas2D.prototype.text = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the given text.
mxXmlCanvas2D.prototype.text = function(x,
y,
w,
h,
str,
align,
valign,
wrap,
format,
overflow,
clip,
rotation)
Paints the given text.
mxCellEditor.prototype.textarea
Holds the input textarea.
mxSvgCanvas2D.prototype.textEnabled
Specifies if text output should be enabled.
mxVmlCanvas2D.prototype.textEnabled
Specifies if text output should be enabledetB.
mxXmlCanvas2D.prototype.textEnabled
Specifies if text output should be enabled.
mxCellEditor.prototype.textNode
Reference to the label DOM node that has been hidden.
mxAnimation.prototype.thread
Reference to the thread while the animation is running.
mxGraphHierarchyModel.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxHierarchicalLayout.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxSwimlaneLayout.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxGraph.prototype.timerAutoScroll
Specifies if timer-based autoscrolling should be used via mxPanningManager.
mxPrintPreview.prototype.title
Holds the title of the preview window.
mxWindow.prototype.title
Reference to the DOM node (TD) that contains the title.
Specifies the event name for toggleCells.
Fires between begin- and endUpdate in toggleCells.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
mxEdgeHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxGraph.prototype.tolerance
Tolerance for a move to be handled as a single click.
mxVertexHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxDefaultToolbar.prototype.toolbar
Holds the internal mxToolbar.
mxEditor.prototype.toolbar
Holds a mxDefaultToolbar for displaying the toolbar.
mxCellOverlay.prototype.tooltip
Holds the optional string to be used as the tooltip.
Defines the vertical offset for the tooltip.
TopToBottom: function(state,
source,
target,
points,
result)
Implements a horizontal elbow edge.
toRadians: function(deg)
Converts the given degree to radians.
mxCellOverlay.prototype.toString = function()
Returns the textual representation of the overlay to be used as the tooltip.
toString: function(obj)
Returns a textual representation of the specified object.
Specified if the output for enter and leave should be visible in the console.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxAbstractCanvas2D.prototype.translate = function(dx,
dy)
Translates the current state.
mxGeometry.prototype.translate = function(dx,
dy)
Translates the geometry by the specified amount.
mxGraphView.prototype.translate
mxPoint that specifies the current translation.
mxXmlCanvas2D.prototype.translate = function(dx,
dy)
Translates the output.
Specifies the event name for translate.
Fires after the translate was changed in setTranslate.
mxGeometry.prototype.TRANSLATE_CONTROL_POINTS
Global switch to translate the points in translate.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxCellStatePreview.prototype.translateState = function(parentState,
state,
dx,
dy)
mxMedianHybridCrossingReduction.prototype.transpose = function(
   mainLoopIteration,
   model
)
Takes each possible adjacent cell pair on each rank and checks if swapping them around reduces the number of crossing
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraphLayout.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxHierarchicalLayout.prototype.traverseAncestors
Whether or not to drill into child cells and layout in reverse group order.
mxSwimlaneLayout.prototype.traverseAncestors
Whether or not to drill into child cells and layout in reverse group order.
mxEditor.prototype.treeLayout = function (cell,
horizontal)
Executes a vertical or horizontal compact tree layout using the specified cell as an argument.
TrianglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a triangle perimeter.
mxCellEditor.prototype.trigger
Reference to the event that was used to start editing.
mxPopupMenuHandler.prototype.triggerX
X-coordinate of the mouse down event.
mxPopupMenuHandler.prototype.triggerY
X-coordinate of the mouse down event.
mxUndoManager.prototype.trim = function()
Removes all pending steps after indexOfNextAdd from the history, invoking die on each edit.
trim: function(str,
chars)
Strips all whitespaces from both end of the string.
mxMultiplicity.prototype.type
Defines the type of the source or target terminal.
mxMultiplicity.prototype.typeError
Holds the localized error message to be displayed if the type of the neighbor for a connection does not match the rule.
diff --git a/docs/js-api/index/General18.html b/docs/js-api/index/General18.html index e4194f924..a334afda9 100644 --- a/docs/js-api/index/General18.html +++ b/docs/js-api/index/General18.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
U
 undo
 UNDO
 undoableEditHappened, mxUndoManager
 undoManager, mxEditor
 undone, mxUndoableEdit
 UNGROUP_CELLS
 ungroupCells, mxGraph
 union, mxVertexHandler
 unmark, mxCellMarker
 UP
 update
 UPDATE_CELL_SIZE
 updateAlternateBounds, mxGraph
 updateAnimation
 updateBoundingBox
 updateBoundsFromPoints, mxShape
 updateCellSize, mxGraph
 updateContainerStyle, mxGraphView
 updateCurrentState, mxConnectionHandler
 updateCursor, mxGraphHandler
 updateDefaultMode, mxToolbar
 updateEdgeBounds, mxGraphView
 updateEdgeLabelOffset, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateFill, mxSvgCanvas2D
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateFont
 updateGroupBounds
 updateHandler, mxLayoutManager
 updateHtmlCanvasSize, mxGraphView
 updateHtmlFilter, mxText
 updateHtmlFilters, mxRectangleShape
 updateHtmlTransform, mxText
 updateIcons, mxConnectionHandler
 updateLevel, mxGraphModel
 updateMinBounds, mxVertexHandler
 updateMouseEvent, mxGraph
 updateOnPan, mxOutline
 updatePoints, mxGraphView
 updatePreviewShape, mxGraphHandler
 updatePreviewState, mxEdgeHandler
 updateSize, mxText
 updateStroke, mxSvgCanvas2D
 updateStrokeAttributes, mxSvgCanvas2D
 updateStyle, mxGraphView
 updateTransform, mxShape
 updateValue, mxText
 updateVertexLabelOffset, mxGraphView
 updateVmlContainer
 updatingDocumentResource, mxGraphView
 updatingSelectionResource, mxGraphSelectionModel
 url, mxXmlRequest
 urlHelp, mxEditor
 urlImage, mxEditor
 urlInit
 urlNotify
 urlPoll
 urlPost, mxEditor
 useBoundingBox, mxGraphLayout
 useGrid, mxPanningHandler
 useGuidesForEvent, mxGraphHandler
 useInputOrigin, mxFastOrganicLayout
 useLeftButtonForPanning, mxPanningHandler
 useLeftButtonForPopup, mxPopupMenu
 usePopupTrigger, mxPanningHandler
 username, mxXmlRequest
 useScrollbarsForPanning, mxGraph
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
U
 undo
 UNDO
 undoableEditHappened, mxUndoManager
 undoManager, mxEditor
 undone, mxUndoableEdit
 UNGROUP_CELLS
 ungroupCells, mxGraph
 union, mxVertexHandler
 unmark, mxCellMarker
 UP
 update
 UPDATE_CELL_SIZE
 updateAlternateBounds, mxGraph
 updateAnimation
 updateBoundingBox
 updateBoundsFromPoints, mxShape
 updateCellSize, mxGraph
 updateContainerStyle, mxGraphView
 updateCurrentState, mxConnectionHandler
 updateCursor, mxGraphHandler
 updateDefaultMode, mxToolbar
 updateEdgeBounds, mxGraphView
 updateEdgeLabelOffset, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateFill, mxSvgCanvas2D
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateFont
 updateGroupBounds
 updateHandler, mxLayoutManager
 updateHtmlCanvasSize, mxGraphView
 updateHtmlFilter, mxText
 updateHtmlFilters, mxRectangleShape
 updateHtmlTransform, mxText
 updateIcons, mxConnectionHandler
 updateLevel, mxGraphModel
 updateMinBounds, mxVertexHandler
 updateMouseEvent, mxGraph
 updateOnPan, mxOutline
 updatePoints, mxGraphView
 updatePreviewShape, mxGraphHandler
 updatePreviewState, mxEdgeHandler
 updateSize, mxText
 updateStroke, mxSvgCanvas2D
 updateStrokeAttributes, mxSvgCanvas2D
 updateStyle, mxGraphView
 updateTransform, mxShape
 updateValue, mxText
 updateVertexLabelOffset, mxGraphView
 updateVmlContainer
 updatingDocumentResource, mxGraphView
 updatingSelectionResource, mxGraphSelectionModel
 url, mxXmlRequest
 urlHelp, mxEditor
 urlImage, mxEditor
 urlInit
 urlNotify
 urlPoll
 urlPost, mxEditor
 useBoundingBox, mxGraphLayout
 useGrid, mxPanningHandler
 useGuidesForEvent, mxGraphHandler
 useInputOrigin, mxFastOrganicLayout
 useLeftButtonForPanning, mxPanningHandler
 useLeftButtonForPopup, mxPopupMenu
 usePopupTrigger, mxPanningHandler
 username, mxXmlRequest
 useScrollbarsForPanning, mxGraph
-
mxEditor.prototype.undo = function ()
Undo the last change in graph.
mxUndoableEdit.prototype.undo = function()
Undoes all changes in this edit.
mxUndoManager.prototype.undo = function()
Undoes the last change.
Specifies the event name for undo.
Fires after the change was dispatched in endUpdate.
Fires after the selection was changed in changeSelection.
Fires after the root was changed in setCurrentRoot.
Fires afer a significant edit was undone in undo.
mxUndoManager.prototype.undoableEditHappened = function(undoableEdit)
Method to be called to add new undoable edits to the history.
mxEditor.prototype.undoManager
Holds an mxUndoManager for the command history.
mxUndoableEdit.prototype.undone
Specifies if this edit has been undone.
Specifies the event name for ungroupCells.
Fires between begin- and endUpdate in ungroupCells.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxVertexHandler.prototype.union = function(bounds,
dx,
dy,
index,
gridEnabled,
scale,
tr,
constrained)
Returns the union of the given bounds and location for the specified handle index.
mxCellMarker.prototype.unmark = function()
Hides the marker and fires a mark event.
Specifies the event name for up.
Fire if the current root is changed by executing an mxCurrentRootChange.
mxConstraintHandler.prototype.update = function(me,
source)
Updates the state of this handler based on the given mxMouseEvent.
mxOutline.prototype.update = function(revalidate)
Updates the outline.
mxRubberband.prototype.update = function(x,
y)
Sets currentX and currentY and calls repaint.
Specifies the event name for updateCellSize.
Fires between begin- and endUpdate in updateCellSize.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxAnimation.prototype.updateAnimation = function()
Hook for subclassers to implement the animation.
mxMorphing.prototype.updateAnimation = function()
Animation step.
mxShape.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using createBoundingBox and augmentBoundingBox and stores the result in boundingBox.
mxText.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using the given node and position.
mxShape.prototype.updateBoundsFromPoints = function()
Updates the bounds based on the points.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxGraphView.prototype.updateContainerStyle = function(container)
Updates the style of the container after installing the SVG DOM elements.
mxConnectionHandler.prototype.updateCurrentState = function(me)
Updates the current state for a given mouse move event by using the marker.
mxGraphHandler.prototype.updateCursor
Specifies if a move cursor should be shown if the mouse is ove a movable cell.
mxToolbar.prototype.updateDefaultMode
Boolean indicating if the default mode should be the last selected switch mode or the first inserted switch mode.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of t he absolute points.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxGraphModel.prototype.updateEdgeParent = function(edge,
root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
mxGraphModel.prototype.updateEdgeParents = function(cell,
root)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
mxSvgCanvas2D.prototype.updateFill = function()
Transfers the stroke attributes from state to node.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxSvgCanvas2D.prototype.updateFont = function(node)
Updates the text properties for the given node.
mxText.prototype.updateFont = function(node)
Updates the HTML node(s) to reflect the latest bounds and scale.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxSwimlaneLayout.prototype.updateGroupBounds = function()
Updates the bounds of the given array of groups so that it includes all child vertices.
mxLayoutManager.prototype.updateHandler
Holds the function that handles the endUpdate event.
mxGraphView.prototype.updateHtmlCanvasSize = function(width,
height)
Updates the size of the HTML canvas.
mxText.prototype.updateHtmlFilter = function()
Rotated text rendering quality is bad for IE9 quirks/IE8 standards
mxRectangleShape.prototype.updateHtmlFilters = function(node)
Allow optimization by replacing VML with HTML.
mxText.prototype.updateHtmlTransform = function()
Returns the spacing as an mxPoint.
mxConnectionHandler.prototype.updateIcons = function(state,
icons,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxGraphModel.prototype.updateLevel
Counter for the depth of nested transactions.
mxVertexHandler.prototype.updateMinBounds = function()
Initializes the shapes required for this vertex handler.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required and returned the event.
mxOutline.prototype.updateOnPan
Specifies if update should be called for mxEvent.PAN in the source graph.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphHandler.prototype.updatePreviewShape = function()
Updates the bounds of the preview shape.
mxEdgeHandler.prototype.updatePreviewState = function(edge,
point,
terminalState)
Updates the given preview state taking into account the state of the constraint handler.
mxText.prototype.updateSize = function(node)
Updates the HTML node(s) to reflect the latest bounds and scale.
mxSvgCanvas2D.prototype.updateStroke = function()
Transfers the stroke attributes from state to node.
mxSvgCanvas2D.prototype.updateStrokeAttributes = function()
Transfers the stroke attributes from state to node.
mxGraphView.prototype.updateStyle
Specifies if the style should be updated in each validation step.
mxShape.prototype.updateTransform = function(c,
x,
y,
w,
h)
Sets the scale and rotation on the given canvas.
mxText.prototype.updateValue = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxShape.prototype.updateVmlContainer = function()
Updates the bounds of the VML container.
mxText.prototype.updateVmlContainer = function()
Sets the width and height of the container to 1px.
Specifies the resource key for the status message while the document is being updated.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxXmlRequest.prototype.url
Holds the target URL of the request.
mxEditor.prototype.urlHelp
Specifies the URL to be used for the contents of the Online Help window.
mxEditor.prototype.urlImage
Specifies the URL to be used for creating a bitmap of the graph in the image action.
mxEditor.prototype.urlInit
Specifies the URL to be used for initializing the session.
mxSession.prototype.urlInit
URL to initialize the session.
mxEditor.prototype.urlNotify
Specifies the URL to be used for notifying the backend in the session.
mxSession.prototype.urlNotify
URL to send changes to the backend.
mxEditor.prototype.urlPoll
Specifies the URL to be used for polling in the session.
mxSession.prototype.urlPoll
URL for polling the backend.
mxEditor.prototype.urlPost
Specifies the URL to be used for posting the diagram to a backend in save.
mxGraphLayout.prototype.useBoundingBox
Boolean indicating if the bounding box of the label should be used if its available.
mxPanningHandler.prototype.useGrid
Specifies if the panning steps should be aligned to the grid size.
mxGraphHandler.prototype.useGuidesForEvent = function(me)
Returns true if the guides should be used for the given mxMouseEvent.
mxFastOrganicLayout.prototype.useInputOrigin
Specifies if the top left corner of the input cells should be the origin of the layout result.
mxPanningHandler.prototype.useLeftButtonForPanning
Specifies if panning should be active for the left mouse button.
mxPopupMenu.prototype.useLeftButtonForPopup
Specifies if popupmenus should be activated by clicking the left mouse button.
mxPanningHandler.prototype.usePopupTrigger
Specifies if mxEvent.isPopupTrigger should also be used for panning.
mxXmlRequest.prototype.username
Specifies the username to be used for authentication.
mxGraph.prototype.useScrollbarsForPanning
Specifies if scrollbars should be used for panning in panGraph if any scrollbars are available.
+
mxEditor.prototype.undo = function ()
Undo the last change in graph.
mxUndoableEdit.prototype.undo = function()
Undoes all changes in this edit.
mxUndoManager.prototype.undo = function()
Undoes the last change.
Specifies the event name for undo.
Fires after the change was dispatched in endUpdate.
Fires after the selection was changed in changeSelection.
Fires after the root was changed in setCurrentRoot.
Fires afer a significant edit was undone in undo.
mxUndoManager.prototype.undoableEditHappened = function(undoableEdit)
Method to be called to add new undoable edits to the history.
mxEditor.prototype.undoManager
Holds an mxUndoManager for the command history.
mxUndoableEdit.prototype.undone
Specifies if this edit has been undone.
Specifies the event name for ungroupCells.
Fires between begin- and endUpdate in ungroupCells.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxVertexHandler.prototype.union = function(bounds,
dx,
dy,
index,
gridEnabled,
scale,
tr,
constrained)
Returns the union of the given bounds and location for the specified handle index.
mxCellMarker.prototype.unmark = function()
Hides the marker and fires a mark event.
Specifies the event name for up.
Fire if the current root is changed by executing an mxCurrentRootChange.
mxConstraintHandler.prototype.update = function(me,
source)
Updates the state of this handler based on the given mxMouseEvent.
mxOutline.prototype.update = function(revalidate)
Updates the outline.
mxRubberband.prototype.update = function(x,
y)
Sets currentX and currentY and calls repaint.
Specifies the event name for updateCellSize.
Fires between begin- and endUpdate in updateCellSize.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxAnimation.prototype.updateAnimation = function()
Hook for subclassers to implement the animation.
mxMorphing.prototype.updateAnimation = function()
Animation step.
mxShape.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using createBoundingBox and augmentBoundingBox and stores the result in boundingBox.
mxText.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using the given node and position.
mxShape.prototype.updateBoundsFromPoints = function()
Updates the bounds based on the points.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxGraphView.prototype.updateContainerStyle = function(container)
Updates the style of the container after installing the SVG DOM elements.
mxConnectionHandler.prototype.updateCurrentState = function(me)
Updates the current state for a given mouse move event by using the marker.
mxGraphHandler.prototype.updateCursor
Specifies if a move cursor should be shown if the mouse is ove a movable cell.
mxToolbar.prototype.updateDefaultMode
Boolean indicating if the default mode should be the last selected switch mode or the first inserted switch mode.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of t he absolute points.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxGraphModel.prototype.updateEdgeParent = function(edge,
root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
mxGraphModel.prototype.updateEdgeParents = function(cell,
root)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
mxSvgCanvas2D.prototype.updateFill = function()
Transfers the stroke attributes from state to node.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxSvgCanvas2D.prototype.updateFont = function(node)
Updates the text properties for the given node.
mxText.prototype.updateFont = function(node)
Updates the HTML node(s) to reflect the latest bounds and scale.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxSwimlaneLayout.prototype.updateGroupBounds = function()
Updates the bounds of the given array of groups so that it includes all child vertices.
mxLayoutManager.prototype.updateHandler
Holds the function that handles the endUpdate event.
mxGraphView.prototype.updateHtmlCanvasSize = function(width,
height)
Updates the size of the HTML canvas.
mxText.prototype.updateHtmlFilter = function()
Rotated text rendering quality is bad for IE9 quirks/IE8 standards
mxRectangleShape.prototype.updateHtmlFilters = function(node)
Allow optimization by replacing VML with HTML.
mxText.prototype.updateHtmlTransform = function()
Returns the spacing as an mxPoint.
mxConnectionHandler.prototype.updateIcons = function(state,
icons,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxGraphModel.prototype.updateLevel
Counter for the depth of nested transactions.
mxVertexHandler.prototype.updateMinBounds = function()
Initializes the shapes required for this vertex handler.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required and returned the event.
mxOutline.prototype.updateOnPan
Specifies if update should be called for mxEvent.PAN in the source graph.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphHandler.prototype.updatePreviewShape = function()
Updates the bounds of the preview shape.
mxEdgeHandler.prototype.updatePreviewState = function(edge,
point,
terminalState)
Updates the given preview state taking into account the state of the constraint handler.
mxText.prototype.updateSize = function(node)
Updates the HTML node(s) to reflect the latest bounds and scale.
mxSvgCanvas2D.prototype.updateStroke = function()
Transfers the stroke attributes from state to node.
mxSvgCanvas2D.prototype.updateStrokeAttributes = function()
Transfers the stroke attributes from state to node.
mxGraphView.prototype.updateStyle
Specifies if the style should be updated in each validation step.
mxShape.prototype.updateTransform = function(c,
x,
y,
w,
h)
Sets the scale and rotation on the given canvas.
mxText.prototype.updateValue = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxShape.prototype.updateVmlContainer = function()
Updates the bounds of the VML container.
mxText.prototype.updateVmlContainer = function()
Sets the width and height of the container to 1px.
Specifies the resource key for the status message while the document is being updated.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxXmlRequest.prototype.url
Holds the target URL of the request.
mxEditor.prototype.urlHelp
Specifies the URL to be used for the contents of the Online Help window.
mxEditor.prototype.urlImage
Specifies the URL to be used for creating a bitmap of the graph in the image action.
mxEditor.prototype.urlInit
Specifies the URL to be used for initializing the session.
mxSession.prototype.urlInit
URL to initialize the session.
mxEditor.prototype.urlNotify
Specifies the URL to be used for notifying the backend in the session.
mxSession.prototype.urlNotify
URL to send changes to the backend.
mxEditor.prototype.urlPoll
Specifies the URL to be used for polling in the session.
mxSession.prototype.urlPoll
URL for polling the backend.
mxEditor.prototype.urlPost
Specifies the URL to be used for posting the diagram to a backend in save.
mxGraphLayout.prototype.useBoundingBox
Boolean indicating if the bounding box of the label should be used if its available.
mxPanningHandler.prototype.useGrid
Specifies if the panning steps should be aligned to the grid size.
mxGraphHandler.prototype.useGuidesForEvent = function(me)
Returns true if the guides should be used for the given mxMouseEvent.
mxFastOrganicLayout.prototype.useInputOrigin
Specifies if the top left corner of the input cells should be the origin of the layout result.
mxPanningHandler.prototype.useLeftButtonForPanning
Specifies if panning should be active for the left mouse button.
mxPopupMenu.prototype.useLeftButtonForPopup
Specifies if popupmenus should be activated by clicking the left mouse button.
mxPanningHandler.prototype.usePopupTrigger
Specifies if mxEvent.isPopupTrigger should also be used for panning.
mxXmlRequest.prototype.username
Specifies the username to be used for authentication.
mxGraph.prototype.useScrollbarsForPanning
Specifies if scrollbars should be used for panning in panGraph if any scrollbars are available.
diff --git a/docs/js-api/index/General19.html b/docs/js-api/index/General19.html index 87b47c320..177e8522e 100644 --- a/docs/js-api/index/General19.html +++ b/docs/js-api/index/General19.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 VALID_COLOR, mxConstants
 validate, mxGraphView
 validateBackground, mxGraphView
 validateBackgroundImage, mxGraphView
 validateBackgroundPage, mxGraphView
 validateBounds, mxGraphView
 validateCell, mxGraph
 validateConnection
 validateEdge, mxGraph
 validateGraph, mxGraph
 validatePoints, mxGraphView
 validating, mxEditor
 Validation, mxGraph
 validationAlert, mxGraph
 validColor, mxCellMarker
 validNeighbors, mxMultiplicity
 validNeighborsAllowed, mxMultiplicity
 validState, mxCellMarker
 value
 valueChanged, mxCell
 valueForCellChanged, mxGraphModel
 values, mxStyleRegistry
 Variables
MedianCellSortermxAbstractCanvas2DmxAnimationmxAutoSaveManagermxCellmxCellEditormxCellHighlightmxCellMarkermxCellOverlaymxCellPathmxCellRenderermxCellStatemxCellStatePreviewmxCircleLayoutmxClientmxClipboardmxCodecmxCodecRegistrymxCompactTreeLayoutmxCompositeLayoutmxConnectionConstraintmxConstantsmxConstraintHandlermxCoordinateAssignmentmxCylindermxDefaultKeyHandlermxDefaultPopupMenumxDefaultToolbarmxDoubleEllipsemxDragSourcemxEdgeHandlermxElbowEdgeHandlermxEventmxEventObjectmxEventSourcemxFastOrganicLayoutmxFormmxGeometrymxGraphmxGraphAbstractHierarchyCellmxGraphHandlermxGraphHierarchyEdgemxGraphHierarchyModelmxGraphHierarchyNodemxGraphLayoutmxGraphModelmxGraphSelectionModelmxGraphViewmxGuidemxHierarchicalLayoutmxImagemxImageBundlemxImageExportmxImageShapemxKeyHandlermxLabelmxLayoutManagermxLogmxMarkermxMedianHybridCrossingReductionmxMinimumCycleRemovermxMorphingmxMouseEventmxMultiplicitymxObjectCodecmxObjectIdentitymxOutlinemxPanningHandlermxPanningManagermxParallelEdgeLayoutmxPartitionLayoutmxPointmxPopupMenumxPrintPreviewmxRectanglemxResourcesmxRubberbandmxSessionmxShapemxSpaceManagermxStackLayoutmxStencilmxStyleRegistrymxSvgCanvas2DmxSwimlanemxSwimlaneLayoutmxSwimlaneManagermxSwimlaneModelmxSwimlaneOrderingmxTemporaryCellStatesmxTextmxToolbarmxTooltipHandlermxUndoableEditmxUndoManagermxUrlConvertermxUtilsmxVertexHandlermxVmlCanvas2DmxWindowmxXmlCanvas2DmxXmlRequestWeightedCellSorter
 VERSION, mxClient
 vertex, mxCell
 VERTEX_SELECTION_COLOR, mxConstants
 VERTEX_SELECTION_STROKEWIDTH, mxConstants
 vertexArray, mxFastOrganicLayout
 vertexLabelsMovable, mxGraph
 vertexMapper
 vertical, mxGuide
 verticalAlign, mxCellOverlay
 verticalLayout, mxCompactTreeLayout
 verticalTextRotation, mxText
 view
 visible
 visibleSourceState, mxCellState
 visibleStateForCellChanged, mxGraphModel
 visibleTargetState, mxCellState
 visit
 visited, WeightedCellSorter
 VML_PREFIX, mxClient
 vmlScale
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 VALID_COLOR, mxConstants
 validate, mxGraphView
 validateBackground, mxGraphView
 validateBackgroundImage, mxGraphView
 validateBackgroundPage, mxGraphView
 validateBounds, mxGraphView
 validateCell, mxGraph
 validateConnection
 validateEdge, mxGraph
 validateGraph, mxGraph
 validatePoints, mxGraphView
 validating, mxEditor
 Validation, mxGraph
 validationAlert, mxGraph
 validColor, mxCellMarker
 validNeighbors, mxMultiplicity
 validNeighborsAllowed, mxMultiplicity
 validState, mxCellMarker
 value
 valueChanged, mxCell
 valueForCellChanged, mxGraphModel
 values, mxStyleRegistry
 Variables
MedianCellSortermxAbstractCanvas2DmxAnimationmxAutoSaveManagermxCellmxCellEditormxCellHighlightmxCellMarkermxCellOverlaymxCellPathmxCellRenderermxCellStatemxCellStatePreviewmxCircleLayoutmxClientmxClipboardmxCodecmxCodecRegistrymxCompactTreeLayoutmxCompositeLayoutmxConnectionConstraintmxConstantsmxConstraintHandlermxCoordinateAssignmentmxCylindermxDefaultKeyHandlermxDefaultPopupMenumxDefaultToolbarmxDoubleEllipsemxDragSourcemxEdgeHandlermxElbowEdgeHandlermxEventmxEventObjectmxEventSourcemxFastOrganicLayoutmxFormmxGeometrymxGraphmxGraphAbstractHierarchyCellmxGraphHandlermxGraphHierarchyEdgemxGraphHierarchyModelmxGraphHierarchyNodemxGraphLayoutmxGraphModelmxGraphSelectionModelmxGraphViewmxGuidemxHierarchicalLayoutmxImagemxImageBundlemxImageExportmxImageShapemxKeyHandlermxLabelmxLayoutManagermxLogmxMarkermxMedianHybridCrossingReductionmxMinimumCycleRemovermxMorphingmxMouseEventmxMultiplicitymxObjectCodecmxObjectIdentitymxOutlinemxPanningHandlermxPanningManagermxParallelEdgeLayoutmxPartitionLayoutmxPointmxPopupMenumxPrintPreviewmxRectanglemxResourcesmxRubberbandmxSessionmxShapemxSpaceManagermxStackLayoutmxStencilmxStyleRegistrymxSvgCanvas2DmxSwimlanemxSwimlaneLayoutmxSwimlaneManagermxSwimlaneModelmxSwimlaneOrderingmxTemporaryCellStatesmxTextmxToolbarmxTooltipHandlermxUndoableEditmxUndoManagermxUrlConvertermxUtilsmxVertexHandlermxVmlCanvas2DmxWindowmxXmlCanvas2DmxXmlRequestWeightedCellSorter
 VERSION, mxClient
 vertex, mxCell
 VERTEX_SELECTION_COLOR, mxConstants
 VERTEX_SELECTION_STROKEWIDTH, mxConstants
 vertexArray, mxFastOrganicLayout
 vertexLabelsMovable, mxGraph
 vertexMapper
 vertical, mxGuide
 verticalAlign, mxCellOverlay
 verticalLayout, mxCompactTreeLayout
 verticalTextRotation, mxText
 view
 visible
 visibleSourceState, mxCellState
 visibleStateForCellChanged, mxGraphModel
 visibleTargetState, mxCellState
 visit
 visited, WeightedCellSorter
 VML_PREFIX, mxClient
 vmlScale
-
Defines the color to be used for the coloring valid connection previews.
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.validateBackground = function()
Calls validateBackgroundImage and validateBackgroundPage.
mxGraphView.prototype.validateBackgroundImage = function()
Validates the background image.
mxGraphView.prototype.validateBackgroundPage = function()
Validates the background page.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxEditor.prototype.validating
Specifies if mxGraph.validateGraph should automatically be invoked after each change.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCellMarker.prototype.validColor
Holds the valid marker color.
mxMultiplicity.prototype.validNeighbors
Holds an array of strings that specify the type of neighbor for which this rule applies.
mxMultiplicity.prototype.validNeighborsAllowed
Boolean indicating if the list of validNeighbors are those that are allowed for this rule or those that are not allowed for this rule.
mxCellMarker.prototype.validState
Holds the marked mxCellState if it is valid.
mxCell.prototype.value
Holds the user object.
mxMultiplicity.prototype.value
Optional string that specifies the value of the attribute to be passed to mxUtils.isNode to check if the rule applies to a cell.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
Maps from strings to objects.
Contains the current version of the mxGraph library.
mxCell.prototype.vertex
Specifies whether the cell is a vertex.
Defines the color to be used for the selection border of vertices.
Defines the strokewidth to be used for vertex selections.
mxFastOrganicLayout.prototype.vertexArray
An array of all vertices to be laid out.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraphHierarchyModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxSwimlaneModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxGuide.prototype.vertical
Specifies if vertical guides are enabled.
mxCellOverlay.prototype.verticalAlign
Holds the vertical alignment for the overlay.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxText.prototype.verticalTextRotation
Rotation for vertical text.
mxCellState.prototype.view
Reference to the enclosing mxGraphView.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
mxTemporaryCellStates.prototype.view
Holds the width of the rectangle.
mxCell.prototype.visible
Specifies whether the cell is visible.
mxWindow.prototype.visible
Boolean flag that represents the visible state of the window.
mxCellState.prototype.visibleSourceState
Caches the visible source terminal state.
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxCellState.prototype.visibleTargetState
Caches the visible target terminal state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
mxSwimlaneModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
WeightedCellSorter.prototype.visited
Whether or not this cell has been visited in the current assignment.
Prefix for VML namespace in node names.
mxDoubleEllipse.prototype.vmlScale
Scale for improving the precision of VML rendering.
mxShape.prototype.vmlScale
Scale for improving the precision of VML rendering.
mxVmlCanvas2D.prototype.vmlScale
Specifies the scale used to draw VML shapes.
+
Defines the color to be used for the coloring valid connection previews.
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.validateBackground = function()
Calls validateBackgroundImage and validateBackgroundPage.
mxGraphView.prototype.validateBackgroundImage = function()
Validates the background image.
mxGraphView.prototype.validateBackgroundPage = function()
Validates the background page.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxEditor.prototype.validating
Specifies if mxGraph.validateGraph should automatically be invoked after each change.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCellMarker.prototype.validColor
Holds the valid marker color.
mxMultiplicity.prototype.validNeighbors
Holds an array of strings that specify the type of neighbor for which this rule applies.
mxMultiplicity.prototype.validNeighborsAllowed
Boolean indicating if the list of validNeighbors are those that are allowed for this rule or those that are not allowed for this rule.
mxCellMarker.prototype.validState
Holds the marked mxCellState if it is valid.
mxCell.prototype.value
Holds the user object.
mxMultiplicity.prototype.value
Optional string that specifies the value of the attribute to be passed to mxUtils.isNode to check if the rule applies to a cell.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
Maps from strings to objects.
Contains the current version of the mxGraph library.
mxCell.prototype.vertex
Specifies whether the cell is a vertex.
Defines the color to be used for the selection border of vertices.
Defines the strokewidth to be used for vertex selections.
mxFastOrganicLayout.prototype.vertexArray
An array of all vertices to be laid out.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraphHierarchyModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxSwimlaneModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxGuide.prototype.vertical
Specifies if vertical guides are enabled.
mxCellOverlay.prototype.verticalAlign
Holds the vertical alignment for the overlay.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxText.prototype.verticalTextRotation
Rotation for vertical text.
mxCellState.prototype.view
Reference to the enclosing mxGraphView.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
mxTemporaryCellStates.prototype.view
Holds the width of the rectangle.
mxCell.prototype.visible
Specifies whether the cell is visible.
mxWindow.prototype.visible
Boolean flag that represents the visible state of the window.
mxCellState.prototype.visibleSourceState
Caches the visible source terminal state.
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxCellState.prototype.visibleTargetState
Caches the visible target terminal state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
mxSwimlaneModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
WeightedCellSorter.prototype.visited
Whether or not this cell has been visited in the current assignment.
Prefix for VML namespace in node names.
mxDoubleEllipse.prototype.vmlScale
Scale for improving the precision of VML rendering.
mxShape.prototype.vmlScale
Scale for improving the precision of VML rendering.
mxVmlCanvas2D.prototype.vmlScale
Specifies the scale used to draw VML shapes.
diff --git a/docs/js-api/index/General20.html b/docs/js-api/index/General20.html index 551b5594a..c67b1b958 100644 --- a/docs/js-api/index/General20.html +++ b/docs/js-api/index/General20.html @@ -11,21 +11,21 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
W
 w0, mxStencil
 warn, mxLog
 WARN, mxLog
 warningImage, mxGraph
 waypointsEnabled, mxConnectionHandler
 WeightedCellSorter
 weightedMedian, mxMedianHybridCrossingReduction
 weightedValue, WeightedCellSorter
 widestRank, mxCoordinateAssignment
 widestRankValue, mxCoordinateAssignment
 width
 Windows, mxEditor
 wnd, mxPrintPreview
 wrap, mxStackLayout
 write
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeDefaults, mxXmlCanvas2D
 writeGraphModel, mxEditor
 writeHead, mxPrintPreview
 writeln
 writePrimitiveAttribute, mxObjectCodec
X
 x
 x0
Y
 y
 y0
Z
 zIndex
 zoom, mxGraph
 zoomActual, mxGraph
 zoomFactor, mxGraph
 zoomIn, mxGraph
 zoomOut, mxGraph
 zoomTo, mxGraph
 zoomToRect, mxGraph
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
W
 w0, mxStencil
 warn, mxLog
 WARN, mxLog
 warningImage, mxGraph
 waypointsEnabled, mxConnectionHandler
 WeightedCellSorter
 weightedMedian, mxMedianHybridCrossingReduction
 weightedValue, WeightedCellSorter
 widestRank, mxCoordinateAssignment
 widestRankValue, mxCoordinateAssignment
 width
 Windows, mxEditor
 wnd, mxPrintPreview
 wrap, mxStackLayout
 write
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeDefaults, mxXmlCanvas2D
 writeGraphModel, mxEditor
 writeHead, mxPrintPreview
 writeln
 writePrimitiveAttribute, mxObjectCodec
X
 x
 x0
Y
 y
 y0
Z
 zIndex
 zoom, mxGraph
 zoomActual, mxGraph
 zoomFactor, mxGraph
 zoomIn, mxGraph
 zoomOut, mxGraph
 zoomTo, mxGraph
 zoomToRect, mxGraph
-
mxStencil.prototype.w0
Holds the width of the shape.
warn: function()
Adds all arguments to the console if WARN is enabled.
Specifies if the output for warn should be visible in the console.
mxGraph.prototype.warningImage
Specifies the mxImage for the image to be used to display a warning overlay.
mxConnectionHandler.prototype.waypointsEnabled
Specifies if single clicks should add waypoints on the new edge.
A utility class used to track cells whilst sorting occurs on the weighted sum of their connected edges.
function WeightedCellSorter(cell,
weightedValue)
Constructs a new weighted cell sorted for the given cell and weight.
mxMedianHybridCrossingReduction.prototype.weightedMedian = function(iteration,
model)
Sweeps up or down the layout attempting to minimise the median placement of connected cells on adjacent ranks
WeightedCellSorter.prototype.weightedValue
The weighted value of the cell stored.
mxCoordinateAssignment.prototype.widestRank
The rank that has the widest x position
mxCoordinateAssignment.prototype.widestRankValue
The X-coordinate of the edge of the widest rank
mxGraphAbstractHierarchyCell.prototype.width
The width of this cell
mxImage.prototype.width
Integer that specifies the width of the image.
mxRectangle.prototype.width
Holds the width of the rectangle.
mxPrintPreview.prototype.wnd
Reference to the preview window.
mxStackLayout.prototype.wrap
Value at which a new column or row should be created.
write: function()
Adds the specified strings to the console.
write: function(parent,
text)
Creates a text node for the given string and appends it to the given parent.
mxObjectCodec.prototype.writeAttribute = function(enc,
obj,
name,
value,
node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
mxObjectCodec.prototype.writeComplexAttribute = function(enc,
obj,
name,
value,
node)
Writes the given value as a child node of the given node.
mxXmlCanvas2D.prototype.writeDefaults = function()
mxEditor.prototype.writeGraphModel = function (linefeed)
Hook to create the string representation of the diagram.
mxPrintPreview.prototype.writeHead = function(doc,
css)
Writes the HEAD section into the given document, without the opening and closing HEAD tags.
writeln: function()
Adds the specified strings to the console, appending a linefeed at the end of each string.
writeln: function(parent,
text)
Creates a text node for the given string and appends it to the given parent with an additional linefeed.
mxObjectCodec.prototype.writePrimitiveAttribute = function(enc,
obj,
name,
value,
node)
Writes the given value as an attribute of the given node.
+
mxStencil.prototype.w0
Holds the width of the shape.
warn: function()
Adds all arguments to the console if WARN is enabled.
Specifies if the output for warn should be visible in the console.
mxGraph.prototype.warningImage
Specifies the mxImage for the image to be used to display a warning overlay.
mxConnectionHandler.prototype.waypointsEnabled
Specifies if single clicks should add waypoints on the new edge.
A utility class used to track cells whilst sorting occurs on the weighted sum of their connected edges.
function WeightedCellSorter(cell,
weightedValue)
Constructs a new weighted cell sorted for the given cell and weight.
mxMedianHybridCrossingReduction.prototype.weightedMedian = function(iteration,
model)
Sweeps up or down the layout attempting to minimise the median placement of connected cells on adjacent ranks
WeightedCellSorter.prototype.weightedValue
The weighted value of the cell stored.
mxCoordinateAssignment.prototype.widestRank
The rank that has the widest x position
mxCoordinateAssignment.prototype.widestRankValue
The X-coordinate of the edge of the widest rank
mxGraphAbstractHierarchyCell.prototype.width
The width of this cell
mxImage.prototype.width
Integer that specifies the width of the image.
mxRectangle.prototype.width
Holds the width of the rectangle.
mxPrintPreview.prototype.wnd
Reference to the preview window.
mxStackLayout.prototype.wrap
Value at which a new column or row should be created.
write: function()
Adds the specified strings to the console.
write: function(parent,
text)
Creates a text node for the given string and appends it to the given parent.
mxObjectCodec.prototype.writeAttribute = function(enc,
obj,
name,
value,
node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
mxObjectCodec.prototype.writeComplexAttribute = function(enc,
obj,
name,
value,
node)
Writes the given value as a child node of the given node.
mxXmlCanvas2D.prototype.writeDefaults = function()
mxEditor.prototype.writeGraphModel = function (linefeed)
Hook to create the string representation of the diagram.
mxPrintPreview.prototype.writeHead = function(doc,
css)
Writes the HEAD section into the given document, without the opening and closing HEAD tags.
writeln: function()
Adds the specified strings to the console, appending a linefeed at the end of each string.
writeln: function(parent,
text)
Creates a text node for the given string and appends it to the given parent with an additional linefeed.
mxObjectCodec.prototype.writePrimitiveAttribute = function(enc,
obj,
name,
value,
node)
Writes the given value as an attribute of the given node.
-
mxGraphAbstractHierarchyCell.prototype.x
The x position of this cell for each layer it occupies
mxPoint.prototype.x
Holds the x-coordinate of the point.
mxCircleLayout.prototype.x0
Integer specifying the left coordinate of the circle.
mxStackLayout.prototype.x0
Specifies the horizontal origin of the layout.
+
mxGraphAbstractHierarchyCell.prototype.x
The x position of this cell for each layer it occupies
mxPoint.prototype.x
Holds the x-coordinate of the point.
mxCircleLayout.prototype.x0
Integer specifying the left coordinate of the circle.
mxStackLayout.prototype.x0
Specifies the horizontal origin of the layout.
-
mxGraphAbstractHierarchyCell.prototype.y
The y position of this cell for each layer it occupies
mxPoint.prototype.y
Holds the y-coordinate of the point.
mxCircleLayout.prototype.y0
Integer specifying the top coordinate of the circle.
mxPrintPreview.prototype.y0
Holds the vertical offset of the output.
mxStackLayout.prototype.y0
Specifies the vertical origin of the layout.
+
mxGraphAbstractHierarchyCell.prototype.y
The y position of this cell for each layer it occupies
mxPoint.prototype.y
Holds the y-coordinate of the point.
mxCircleLayout.prototype.y0
Integer specifying the top coordinate of the circle.
mxPrintPreview.prototype.y0
Holds the vertical offset of the output.
mxStackLayout.prototype.y0
Specifies the vertical origin of the layout.
-
mxPopupMenu.prototype.zIndex
Specifies the zIndex for the popupmenu and its shadow.
mxTooltipHandler.prototype.zIndex
Specifies the zIndex for the tooltip and its shadow.
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomFactor
Specifies the factor used for zoomIn and zoomOut.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
mxGraph.prototype.zoomToRect = function(rect)
Zooms the graph to the specified rectangle.
+
mxPopupMenu.prototype.zIndex
Specifies the zIndex for the popupmenu and its shadow.
mxTooltipHandler.prototype.zIndex
Specifies the zIndex for the tooltip and its shadow.
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomFactor
Specifies the factor used for zoomIn and zoomOut.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
mxGraph.prototype.zoomToRect = function(rect)
Zooms the graph to the specified rectangle.
diff --git a/docs/js-api/index/General7.html b/docs/js-api/index/General7.html index 882a96178..0235850d4 100644 --- a/docs/js-api/index/General7.html +++ b/docs/js-api/index/General7.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
G
 geometry, mxCell
 geometryForCellChanged, mxGraphModel
 GESTURE
 get
 GET
 getAlignmentAsPoint, mxUtils
 getAlignmentTolerance, mxConnectionHandler
 getAllConnectionConstraints, mxGraph
 getAllEdges, mxGraph
 getAlternateContent, mxSvgCanvas2D
 getAppendices, mxPrintPreview
 getArcSize
 getAttribute, mxCell
 getAttributeName, mxObjectCodec
 getBackgroundImage, mxGraph
 getBackgroundPageBounds, mxGraphView
 getBackgroundPane, mxGraphView
 getBaseDomain, mxUrlConverter
 getBaseUrl, mxUrlConverter
 getBorder, mxGraph
 getBorderSizes, mxGraph
 getBoundingBox
 getBoundingBoxFromGeometry, mxGraph
 getBounds
 getBoundsForGroup, mxGraph
 getCanvas, mxGraphView
 getCell
 getCellAt, mxGraph
 getCellBounds, mxGraph
 getCellContainmentArea, mxGraph
 getCellForPopupEvent, mxPanningHandler
 getCellGeometry, mxGraph
 getCellOverlays, mxGraph
 getCells
 getCellsBeyond, mxGraph
 getCellsForChange, mxLayoutManager
 getCellsForEdit, mxLayoutManager
 getCellsForGroup, mxGraph
 getCellStates, mxGraphView
 getCellsToShift, mxSpaceManager
 getCellStyle
 getCellValidationError, mxGraph
 getCenterX, mxRectangle
 getCenterY, mxRectangle
 getChildAt
 getChildCells
 getChildCount
 getChildEdges
 getChildNodes, mxUtils
 getChildOffsetForCell, mxGraph
 getChildren, mxGraphModel
 getChildVertices
 getClientX, mxEvent
 getClientY, mxEvent
 getCloneableCells, mxGraph
 getCodec, mxCodecRegistry
 getColor, mxUtils
 getConnectImage, mxConnectionHandler
 getConnectionConstraint, mxGraph
 getConnectionPoint, mxGraph
 getConnections
 getConstraint, mxGraphLayout
 getControlBounds, mxCellRenderer
 getCoreCell
 getCoverPages, mxPrintPreview
 getCurrentRoot, mxGraph
 getCurrentStyle, mxUtils
 getCurrentValue, mxCellEditor
 getCursor, mxShape
 getCursorForBend, mxElbowEdgeHandler
 getCursorForCell, mxGraph
 getCursorForMouseEvent, mxGraph
 getDefaultBundle, mxResources
 getDefaultEdgeStyle, mxStylesheet
 getDefaultParent, mxGraph
 getDefaultVertexStyle, mxStylesheet
 getDeletableCells, mxGraph
 getDelta
 getDescendants, mxGraphModel
 getDirectedEdgeCount, mxGraphModel
 getDocType, mxPrintPreview
 getDocumentElement, mxXmlRequest
 getDocumentHeight, mxDivResizer
 getDocumentScrollOrigin, mxUtils
 getDocumentWidth, mxDivResizer
 getDrawPane, mxGraphView
 getDropTarget
 getEdgeAt
 getEdgeColor, mxConnectionHandler
 getEdgeCount
 getEdgeId, mxParallelEdgeLayout
 getEdgeIndex, mxCell
 getEdges
 getEdgesBetween
 getEdgeStyle
 getEdgeValidationError, mxGraph
 getEdgeWidth, mxConnectionHandler
 getEditingCell, mxCellEditor
 getEditingValue, mxGraph
 getEditorBounds, mxCellEditor
 getElement, mxWindow
 getElementById, mxCodec
 getEmptyLabelText, mxCellEditor
 getEvent, mxMouseEvent
 getEventSource, mxEventSource
 getExportableCells, mxGraph
 getFieldName, mxObjectCodec
 getFieldTemplate, mxObjectCodec
 getFirstSelectableCell, mxGraphSelectionModel
 getFoldableCells, mxGraph
 getFoldingImage, mxGraph
 getFunction, mxKeyHandler
 getFunctionName, mxUtils
 getGeneralPurposeVariable
 getGeometry
 getGradientBounds
 getGraph
 getGraphBounds
 getGraphForEvent, mxDragSource
 getGraphX, mxMouseEvent
 getGraphY, mxMouseEvent
 getGridSize, mxGraph
 getGuideStates, mxGraphHandler
 getGuideTolerance, mxGuide
 getHandleFillColor, mxEdgeHandler
 getHandleForEvent
 getHandler, mxSelectionCellsHandler
 getHotspot, mxCellMarker
 getId
 getImage
 getImageBounds
 getImageForConstraint, mxConstraintHandler
 getImageFromBundles, mxGraph
 getImportableCells, mxGraph
 getIncomingEdges
 getIndex, mxCell
 getIndicatorBounds, mxLabel
 getIndicatorColor, mxGraph
 getIndicatorGradientColor, mxGraph
 getIndicatorImage, mxGraph
 getIndicatorShape, mxGraph
 getInitialCellForEvent, mxGraphHandler
 getInitialValue, mxCellEditor
 getInnerHtml, mxUtils
 getKeys, mxDictionary
 getLabel, mxGraph
 getLabelBounds
 getLabelValue, mxCellRenderer
 getLayout, mxLayoutManager
 getMainEvent, mxEvent
 getMargin, mxText
 getMarkedState, mxCellMarker
 getMarkerColor, mxCellMarker
 getMaximumGraphBounds, mxGraph
 getMinimumSize
 getModel
 getMovableCells, mxGraph
 getName
 getNearestCommonAncestor, mxGraphModel
 getNextLayerConnectedCells
 getNextPoint, mxGraphView
 getNumber, mxUtils
 getObject, mxCodec
 getOffset, mxUtils
 getOpposites
 getOrigin, mxGraphModel
 getOriginForCell, mxMorphing
 getOuterHtml, mxUtils
 getOutgoingEdges
 getOutlineOffset, mxOutline
 getOverlap, mxGraph
 getOverlayPane, mxGraphView
 getParent
 getParentOffset, mxGraphLayout
 getParentPath, mxCellPath
 getParents, mxGraphModel
 getParentSize, mxStackLayout
 getPerimeterBounds
 getPerimeterFunction, mxGraphView
 getPerimeterPoint, mxGraphView
 getPoint
 getPointForEvent
 getPreferredPageSize, mxGraph
 getPreferredSizeForCell, mxGraph
 getPrettyXML, mxUtils
 getPreviewBounds, mxGraphHandler
 getPreviewPoints
 getPreviewTerminalState, mxEdgeHandler
 getPreviousLayerConnectedCells
 getProperties, mxEventObject
 getProperty, mxEventObject
 getRadius, mxCircleLayout
 getRankValue, mxGraphHierarchyNode
 getRelativePoint, mxGraphView
 getRemovedCellsForChanges, mxGraph
 getRoot
 getRootTitle, mxEditor
 getRotatedPoint, mxUtils
 getRotation
 getRoutingCenterX, mxGraphView
 getRoutingCenterY, mxGraphView
 getScale, mxGraphView
 getScaleForPageCount, mxUtils
 getScrollOrigin, mxUtils
 getSelectionBounds, mxVertexHandler
 getSelectionCell, mxGraph
 getSelectionCells, mxGraph
 getSelectionCellsForChanges, mxGraph
 getSelectionColor
 getSelectionCount, mxGraph
 getSelectionModel, mxGraph
 getSelectionPoints, mxEdgeHandler
 getSelectionStrokeWidth
 getShape, mxCellRenderer
 getShapeConstructor, mxCellRenderer
 getShapeRotation
 getShapesForState, mxCellRenderer
 getSizeForString, mxUtils
 getSnapToTerminalTolerance, mxEdgeHandler
 getSource
 getSourceContainerSize, mxOutline
 getSourcePerimeterPoint, mxConnectionHandler
 getSpacing, mxText
 getSpecialBundle, mxResources
 getStartSize, mxGraph
 getState
 getStateForEvent, mxGraph
 getStates, mxGraphView
 getStateToMark, mxCellMarker
 getStatus, mxXmlRequest
 getStencil, mxStencilRegistry
 getStringValue, mxStylesheetCodec
 getStyle
 getStylename, mxUtils
 getStylenames, mxUtils
 getStylesheet, mxGraph
 getSvgGradient, mxSvgCanvas2D
 getSvgScreenOffset
 getSwimlane, mxGraph
 getSwimlaneAt, mxGraph
 getTable, mxForm
 getTargetPerimeterPoint, mxConnectionHandler
 getTemplate, mxEditor
 getTerminal
 getTerminalForPort, mxGraph
 getTerminalPoint, mxGeometry
 getTerminalPort, mxGraphView
 getText, mxXmlRequest
 getTextContent, mxUtils
 getTextRotation
 getTextScale, mxCellRenderer
 getTitle, mxEditor
 getTolerance
 getTooltip, mxGraph
 getTooltipForCell, mxGraph
 getTooltipForNode, mxElbowEdgeHandler
 getTopmostCells, mxGraphModel
 getTranslate, mxGraphView
 getTranslateForEvent, mxOutline
 getTranslateForRoot, mxGraph
 getUrlImage, mxEditor
 getUrlPost, mxEditor
 getValidState, mxCellMarker
 getValue
 getValues, mxDictionary
 getVertexBounds, mxGraphLayout
 getVerticalAlign, mxGraph
 getView, mxGraph
 getViewXml, mxUtils
 getVisibleTerminal
 getVisibleTerminalState, mxCellState
 getVmlDashPattern, mxVmlCanvas2D
 getWindow, mxPrintPreview
 getX
 getXml
 getY
 gradients, mxSvgCanvas2D
 graph
 Graph appearance, mxGraph
 Graph behaviour, mxGraph
 Graph display, mxGraph
 Graph events, mxGraph
 graphBounds, mxGraphView
 graphContainsEvent, mxDragSource
 graphModelChanged
 graphRenderHint
 graphX, mxMouseEvent
 graphY, mxMouseEvent
 gridEnabled
 gridSize, mxGraph
 GROUP_CELLS
 groupCells
 Grouping, mxGraph
 groupPadding
 grow, mxRectangle
 guide, mxGraphHandler
 GUIDE_COLOR, mxConstants
 GUIDE_STROKEWIDTH, mxConstants
 guidesEnabled
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
G
 geometry, mxCell
 geometryForCellChanged, mxGraphModel
 GESTURE
 get
 GET
 getAlignmentAsPoint, mxUtils
 getAlignmentTolerance, mxConnectionHandler
 getAllConnectionConstraints, mxGraph
 getAllEdges, mxGraph
 getAlternateContent, mxSvgCanvas2D
 getAppendices, mxPrintPreview
 getArcSize
 getAttribute, mxCell
 getAttributeName, mxObjectCodec
 getBackgroundImage, mxGraph
 getBackgroundPageBounds, mxGraphView
 getBackgroundPane, mxGraphView
 getBaseDomain, mxUrlConverter
 getBaseUrl, mxUrlConverter
 getBorder, mxGraph
 getBorderSizes, mxGraph
 getBoundingBox
 getBoundingBoxFromGeometry, mxGraph
 getBounds
 getBoundsForGroup, mxGraph
 getCanvas, mxGraphView
 getCell
 getCellAt, mxGraph
 getCellBounds, mxGraph
 getCellContainmentArea, mxGraph
 getCellForPopupEvent, mxPanningHandler
 getCellGeometry, mxGraph
 getCellOverlays, mxGraph
 getCells
 getCellsBeyond, mxGraph
 getCellsForChange, mxLayoutManager
 getCellsForEdit, mxLayoutManager
 getCellsForGroup, mxGraph
 getCellStates, mxGraphView
 getCellsToShift, mxSpaceManager
 getCellStyle
 getCellValidationError, mxGraph
 getCenterX, mxRectangle
 getCenterY, mxRectangle
 getChildAt
 getChildCells
 getChildCount
 getChildEdges
 getChildNodes, mxUtils
 getChildOffsetForCell, mxGraph
 getChildren, mxGraphModel
 getChildVertices
 getClientX, mxEvent
 getClientY, mxEvent
 getCloneableCells, mxGraph
 getCodec, mxCodecRegistry
 getColor, mxUtils
 getConnectImage, mxConnectionHandler
 getConnectionConstraint, mxGraph
 getConnectionPoint, mxGraph
 getConnections
 getConstraint, mxGraphLayout
 getControlBounds, mxCellRenderer
 getCoreCell
 getCoverPages, mxPrintPreview
 getCurrentRoot, mxGraph
 getCurrentStyle, mxUtils
 getCurrentValue, mxCellEditor
 getCursor, mxShape
 getCursorForBend, mxElbowEdgeHandler
 getCursorForCell, mxGraph
 getCursorForMouseEvent, mxGraph
 getDefaultBundle, mxResources
 getDefaultEdgeStyle, mxStylesheet
 getDefaultParent, mxGraph
 getDefaultVertexStyle, mxStylesheet
 getDeletableCells, mxGraph
 getDelta
 getDescendants, mxGraphModel
 getDirectedEdgeCount, mxGraphModel
 getDocType, mxPrintPreview
 getDocumentElement, mxXmlRequest
 getDocumentHeight, mxDivResizer
 getDocumentScrollOrigin, mxUtils
 getDocumentWidth, mxDivResizer
 getDrawPane, mxGraphView
 getDropTarget
 getEdgeAt
 getEdgeColor, mxConnectionHandler
 getEdgeCount
 getEdgeId, mxParallelEdgeLayout
 getEdgeIndex, mxCell
 getEdges
 getEdgesBetween
 getEdgeStyle
 getEdgeValidationError, mxGraph
 getEdgeWidth, mxConnectionHandler
 getEditingCell, mxCellEditor
 getEditingValue, mxGraph
 getEditorBounds, mxCellEditor
 getElement, mxWindow
 getElementById, mxCodec
 getEmptyLabelText, mxCellEditor
 getEvent, mxMouseEvent
 getEventSource, mxEventSource
 getExportableCells, mxGraph
 getFieldName, mxObjectCodec
 getFieldTemplate, mxObjectCodec
 getFirstSelectableCell, mxGraphSelectionModel
 getFoldableCells, mxGraph
 getFoldingImage, mxGraph
 getFunction, mxKeyHandler
 getFunctionName, mxUtils
 getGeneralPurposeVariable
 getGeometry
 getGradientBounds
 getGraph
 getGraphBounds
 getGraphForEvent, mxDragSource
 getGraphX, mxMouseEvent
 getGraphY, mxMouseEvent
 getGridSize, mxGraph
 getGuideStates, mxGraphHandler
 getGuideTolerance, mxGuide
 getHandleFillColor, mxEdgeHandler
 getHandleForEvent
 getHandler, mxSelectionCellsHandler
 getHotspot, mxCellMarker
 getId
 getImage
 getImageBounds
 getImageForConstraint, mxConstraintHandler
 getImageFromBundles, mxGraph
 getImportableCells, mxGraph
 getIncomingEdges
 getIndex, mxCell
 getIndicatorBounds, mxLabel
 getIndicatorColor, mxGraph
 getIndicatorGradientColor, mxGraph
 getIndicatorImage, mxGraph
 getIndicatorShape, mxGraph
 getInitialCellForEvent, mxGraphHandler
 getInitialValue, mxCellEditor
 getInnerHtml, mxUtils
 getKeys, mxDictionary
 getLabel, mxGraph
 getLabelBounds
 getLabelValue, mxCellRenderer
 getLayout, mxLayoutManager
 getMainEvent, mxEvent
 getMargin, mxText
 getMarkedState, mxCellMarker
 getMarkerColor, mxCellMarker
 getMaximumGraphBounds, mxGraph
 getMinimumSize
 getModel
 getMovableCells, mxGraph
 getName
 getNearestCommonAncestor, mxGraphModel
 getNextLayerConnectedCells
 getNextPoint, mxGraphView
 getNumber, mxUtils
 getObject, mxCodec
 getOffset, mxUtils
 getOpposites
 getOrigin, mxGraphModel
 getOriginForCell, mxMorphing
 getOuterHtml, mxUtils
 getOutgoingEdges
 getOutlineOffset, mxOutline
 getOverlap, mxGraph
 getOverlayPane, mxGraphView
 getParent
 getParentOffset, mxGraphLayout
 getParentPath, mxCellPath
 getParents, mxGraphModel
 getParentSize, mxStackLayout
 getPerimeterBounds
 getPerimeterFunction, mxGraphView
 getPerimeterPoint, mxGraphView
 getPoint
 getPointForEvent
 getPreferredPageSize, mxGraph
 getPreferredSizeForCell, mxGraph
 getPrettyXML, mxUtils
 getPreviewBounds, mxGraphHandler
 getPreviewPoints
 getPreviewTerminalState, mxEdgeHandler
 getPreviousLayerConnectedCells
 getProperties, mxEventObject
 getProperty, mxEventObject
 getRadius, mxCircleLayout
 getRankValue, mxGraphHierarchyNode
 getRelativePoint, mxGraphView
 getRemovedCellsForChanges, mxGraph
 getRoot
 getRootTitle, mxEditor
 getRotatedPoint, mxUtils
 getRotation
 getRoutingCenterX, mxGraphView
 getRoutingCenterY, mxGraphView
 getScale, mxGraphView
 getScaleForPageCount, mxUtils
 getScrollOrigin, mxUtils
 getSelectionBounds, mxVertexHandler
 getSelectionCell, mxGraph
 getSelectionCells, mxGraph
 getSelectionCellsForChanges, mxGraph
 getSelectionColor
 getSelectionCount, mxGraph
 getSelectionModel, mxGraph
 getSelectionPoints, mxEdgeHandler
 getSelectionStrokeWidth
 getShape, mxCellRenderer
 getShapeConstructor, mxCellRenderer
 getShapeRotation
 getShapesForState, mxCellRenderer
 getSizeForString, mxUtils
 getSnapToTerminalTolerance, mxEdgeHandler
 getSource
 getSourceContainerSize, mxOutline
 getSourcePerimeterPoint, mxConnectionHandler
 getSpacing, mxText
 getSpecialBundle, mxResources
 getStartSize, mxGraph
 getState
 getStateForEvent, mxGraph
 getStates, mxGraphView
 getStateToMark, mxCellMarker
 getStatus, mxXmlRequest
 getStencil, mxStencilRegistry
 getStringValue, mxStylesheetCodec
 getStyle
 getStylename, mxUtils
 getStylenames, mxUtils
 getStylesheet, mxGraph
 getSvgGradient, mxSvgCanvas2D
 getSvgScreenOffset
 getSwimlane, mxGraph
 getSwimlaneAt, mxGraph
 getTable, mxForm
 getTargetPerimeterPoint, mxConnectionHandler
 getTemplate, mxEditor
 getTerminal
 getTerminalForPort, mxGraph
 getTerminalPoint, mxGeometry
 getTerminalPort, mxGraphView
 getText, mxXmlRequest
 getTextContent, mxUtils
 getTextRotation
 getTextScale, mxCellRenderer
 getTitle, mxEditor
 getTolerance
 getTooltip, mxGraph
 getTooltipForCell, mxGraph
 getTooltipForNode, mxElbowEdgeHandler
 getTopmostCells, mxGraphModel
 getTranslate, mxGraphView
 getTranslateForEvent, mxOutline
 getTranslateForRoot, mxGraph
 getUrlImage, mxEditor
 getUrlPost, mxEditor
 getValidState, mxCellMarker
 getValue
 getValues, mxDictionary
 getVertexBounds, mxGraphLayout
 getVerticalAlign, mxGraph
 getView, mxGraph
 getViewXml, mxUtils
 getVisibleTerminal
 getVisibleTerminalState, mxCellState
 getVmlDashPattern, mxVmlCanvas2D
 getWindow, mxPrintPreview
 getX
 getXml
 getY
 gradients, mxSvgCanvas2D
 graph
 Graph appearance, mxGraph
 Graph behaviour, mxGraph
 Graph display, mxGraph
 Graph events, mxGraph
 graphBounds, mxGraphView
 graphContainsEvent, mxDragSource
 graphModelChanged
 graphRenderHint
 graphX, mxMouseEvent
 graphY, mxMouseEvent
 gridEnabled
 gridSize, mxGraph
 GROUP_CELLS
 groupCells
 Grouping, mxGraph
 groupPadding
 grow, mxRectangle
 guide, mxGraphHandler
 GUIDE_COLOR, mxConstants
 GUIDE_STROKEWIDTH, mxConstants
 guidesEnabled
-
mxCell.prototype.geometry
Holds the mxGeometry.
mxGraphModel.prototype.geometryForCellChanged = function(cell,
geometry)
Inner callback to update the mxGeometry of the given mxCell using mxCell.setGeometry and return the previous mxGeometry.
Specifies the event name for gesture.
Fires in fireGestureEvent after a touch gesture.
mxDictionary.prototype.get = function(key)
Returns the value for the given key.
get: function(obj)
Returns the object id for the given object.
get: function(key,
params,
defaultValue)
Returns the value for the specified resource key.
mxSession.prototype.get = function(url,
onLoad,
onError)
Sends an asynchronous get request to the given URL, fires a get event and invokes the given onLoad function when a response is received.
get: function(url,
onload,
onerror)
Loads the specified URL asynchronously and invokes the given functions depending on the request status.
Specifies the event name for get.
Fires after a response was received in get.
getAlignmentAsPoint: function(align,
valign)
Returns an mxPoint that represents the horizontal and vertical alignment for numeric computations.
mxConnectionHandler.prototype.getAlignmentTolerance = function()
Returns the tolerance for aligning new targets to sources.
mxGraph.prototype.getAllConnectionConstraints = function(terminal,
source)
Returns an array of all mxConnectionConstraints for the given terminal.
mxGraph.prototype.getAllEdges = function(cells)
Returns all edges connected to the given cells or its descendants.
Returns the alternate content for the given foreignObject.
mxPrintPreview.prototype.getAppendices = function()
Returns the pages to be added after the print output.
mxShape.prototype.getArcSize = function(w,
h)
Returns the arc size for the given dimension.
mxSwimlane.prototype.getArcSize = function(w,
h,
start)
Returns the arcsize for the swimlane.
mxCell.prototype.getAttribute = function(name,
defaultValue)
Returns the specified attribute from the user object if it is an XML node.
mxObjectCodec.prototype.getAttributeName = function(fieldname)
Returns the attributename for the given fieldname.
mxGraph.prototype.getBackgroundImage = function()
Returns the backgroundImage as an mxImage.
mxGraphView.prototype.getBackgroundPageBounds = function()
Returns the bounds for the background page.
mxGraphView.prototype.getBackgroundPane = function()
Returns the DOM node that represents the background layer.
getBaseDomain: function()
Returns baseDomain.
getBaseUrl: function()
Returns baseUrl.
mxGraph.prototype.getBorder = function()
Returns the value of border.
mxGraph.prototype.getBorderSizes = function()
Returns the size of the border and padding on all four sides of the container.
mxGraphHandler.prototype.getBoundingBox = function(cells)
Returns the mxRectangle that represents the bounding box for the given cells.
getBoundingBox: function(rect,
rotation)
Returns the bounding box for the rotated rectangle.
mxGraph.prototype.getBoundingBoxFromGeometry = function(cells,
includeEdges)
Returns the bounding box for the geometries of the vertices in the given array of cells.
mxCellOverlay.prototype.getBounds = function(state)
Returns the bounds of the overlay for the given mxCellState as an mxRectangle.
mxGraphView.prototype.getBounds = function(cells)
Returns the bounds (on the screen) for the given array of mxCells.
mxGraph.prototype.getBoundsForGroup = function(group,
children,
border)
Returns the bounds to be used for the given group and children.
mxGraphView.prototype.getCanvas = function()
Returns the DOM node that contains the background-, draw- and overlaypane.
mxCellMarker.prototype.getCell = function(me)
Returns the mxCell for the given event and cell.
mxGraphModel.prototype.getCell = function(id)
Returns the mxCell for the specified Id or null if no cell can be found for the given Id.
mxMouseEvent.prototype.getCell = function()
Returns the mxCell in state is not null.
mxGraph.prototype.getCellAt = function(x,
y,
parent,
vertices,
edges)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.
mxGraph.prototype.getCellBounds = function(cell,
includeEdges,
includeDescendants)
Returns the scaled, translated bounds for the given cell.
mxGraph.prototype.getCellContainmentArea = function(cell)
Returns the mxRectangle inside which a cell is to be kept.
mxPopupMenuHandler.prototype.getCellForPopupEvent = function(me)
Hook to return the cell for the mouse up popup trigger handling.
mxGraph.prototype.getCellGeometry = function(cell)
Returns the mxGeometry for the given cell.
mxGraph.prototype.getCellOverlays = function(cell)
Returns the array of mxCellOverlays for the given cell or null, if no overlays are defined.
getCells: function()
Returns the cells in the clipboard.
mxGraph.prototype.getCells = function(x,
y,
width,
height,
parent,
result)
Returns the children of the given parent that are contained in the given rectangle (x, y, width, height).
mxGraphHandler.prototype.getCells = function(initialCell)
Returns the cells to be modified by this handler.
mxGraph.prototype.getCellsBeyond = function(x0,
y0,
parent,
rightHalfpane,
bottomHalfpane)
Returns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.
mxLayoutManager.prototype.getCellsForChange = function(change)
Executes all layouts which have been scheduled during the changes.
Returns the cells to be layouted for the given sequence of changes.
mxGraph.prototype.getCellsForGroup = function(cells)
Returns the cells with the same parent as the first cell in the given array.
mxGraphView.prototype.getCellStates = function(cells)
Returns the mxCellStates for the given array of mxCells.
mxSpaceManager.prototype.getCellsToShift = function(state)
Returns the cells to shift after a resize of the specified mxCellState.
mxGraph.prototype.getCellStyle = function(cell)
Returns an array of key, value pairs representing the cell style for the given cell.
mxStylesheet.prototype.getCellStyle = function(name,
defaultStyle)
Returns the cell style for the specified stylename or the given defaultStyle if no style can be found for the given stylename.
mxGraph.prototype.getCellValidationError = function(cell)
Checks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.
mxRectangle.prototype.getCenterX = function ()
Returns the x-coordinate of the center point.
mxRectangle.prototype.getCenterY = function ()
Returns the y-coordinate of the center point.
mxCell.prototype.getChildAt = function(index)
Returns the child at the specified index.
mxGraphModel.prototype.getChildAt = function(cell,
index)
Returns the child of the given mxCell at the given index.
mxGraph.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the visible child vertices or edges in the given parent.
mxGraphModel.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the children of the given cell that are vertices and/or edges depending on the arguments.
mxCell.prototype.getChildCount = function()
Returns the number of child cells.
mxGraphModel.prototype.getChildCount = function(cell)
Returns the number of children in the given cell.
mxGraph.prototype.getChildEdges = function(parent)
Returns the visible child edges of the given parent.
mxGraphModel.prototype.getChildEdges = function(parent)
Returns the child edges of the given parent.
getChildNodes: function(node,
nodeType)
Returns an array of child nodes that are of the given node type.
mxGraph.prototype.getChildOffsetForCell = function(cell)
Returns the offset to be used for the cells inside the given cell.
mxGraphModel.prototype.getChildren = function(cell)
Returns all children of the given mxCell as an array of mxCells.
mxGraph.prototype.getChildVertices = function(parent)
Returns the visible child vertices of the given parent.
mxGraphModel.prototype.getChildVertices = function(parent)
Returns the child vertices of the given parent.
getClientX: function(e)
Returns true if the meta key is pressed for the given event.
getClientY: function(e)
Returns true if the meta key is pressed for the given event.
mxGraph.prototype.getCloneableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
getCodec: function(ctor)
Returns a codec that handles objects that are constructed using the given constructor.
getColor: function(array,
key,
defaultValue)
Returns the color value for the given key in the given associative array or the given default value if the value is null.
mxConnectionHandler.prototype.getConnectImage = function(state)
Hook to return the mxImage used for the connection icon of the given mxCellState.
mxGraph.prototype.getConnectionConstraint = function(edge,
terminal,
source)
Returns an mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.getConnectionPoint = function(vertex,
constraint)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
mxGraph.prototype.getConnections = function(cell,
parent)
Returns all visible edges connected to the given cell without loops.
mxGraphModel.prototype.getConnections = function(cell)
Returns all edges of the given cell without loops.
mxGraphLayout.prototype.getConstraint = function(key,
cell,
edge,
source)
Returns the constraint for the given key and cell.
mxCellRenderer.prototype.getControlBounds = function(state,
w,
h)
Returns the bounds to be used to draw the control (folding icon) of the given state.
mxGraphHierarchyEdge.prototype.getCoreCell = function()
Gets the first core edge associated with this wrapper
mxGraphHierarchyNode.prototype.getCoreCell = function()
Gets the core vertex associated with this wrapper
mxPrintPreview.prototype.getCoverPages = function()
Returns the pages to be added before the print output.
mxGraph.prototype.getCurrentRoot = function()
Returns the current root of the displayed cell hierarchy.
getCurrentStyle: function()
Returns the current style of the specified element.
mxCellEditor.prototype.getCurrentValue = function()
Returns the current editing value.
mxShape.prototype.getCursor = function()
Returns the current cursor.
mxElbowEdgeHandler.prototype.getCursorForBend = function()
Returns the cursor to be used for the bend.
mxGraph.prototype.getCursorForCell = function(cell)
Returns the cursor value to be used for the CSS of the shape for the given cell.
mxGraph.prototype.getCursorForMouseEvent = function(me)
Returns the cursor value to be used for the CSS of the shape for the given event.
getDefaultBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxStylesheet.prototype.getDefaultEdgeStyle = function()
Sets the default style for edges.
mxGraph.prototype.getDefaultParent = function()
Returns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.
mxStylesheet.prototype.getDefaultVertexStyle = function()
Returns the default style for vertices.
mxGraph.prototype.getDeletableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxGraphHandler.prototype.getDelta = function(me)
Returns an mxPoint that represents the vector for moving the cells for the given mxMouseEvent.
mxMorphing.prototype.getDelta = function(state)
Returns the vector between the current rendered state and the future location of the state after the display will be updated.
mxGraphModel.prototype.getDescendants = function(parent)
Returns all descendants of the given cell and the cell itself in an array.
mxGraphModel.prototype.getDirectedEdgeCount = function(cell,
outgoing,
ignoredEdge)
Returns the number of incoming or outgoing edges, ignoring the given edge.
Returns the string that should go before the HTML tag in the print preview page.
mxXmlRequest.prototype.getDocumentElement = function()
Returns the document element of the response XML document.
mxDivResizer.prototype.getDocumentHeight = function()
Hook for subclassers to return the height of the document (without scrollbars).
getDocumentScrollOrigin: function(doc)
Returns the scroll origin of the given document or the current document if no document is given.
mxDivResizer.prototype.getDocumentWidth = function()
Hook for subclassers to return the width of the document (without scrollbars).
mxGraphView.prototype.getDrawPane = function()
Returns the DOM node that represents the main drawing layer.
mxDragSource.prototype.getDropTarget = function(graph,
x,
y)
Returns the drop target for the given graph and coordinates.
mxGraph.prototype.getDropTarget = function(cells,
evt,
cell)
Returns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.
mxCell.prototype.getEdgeAt = function(index)
Returns the edge at the specified index in edges.
mxGraphModel.prototype.getEdgeAt = function(cell,
index)
Returns the edge of cell at the given index.
mxConnectionHandler.prototype.getEdgeColor = function(valid)
Returns the color used to draw the preview edge.
mxCell.prototype.getEdgeCount = function()
Returns the number of edges in the edge array.
mxGraphModel.prototype.getEdgeCount = function(cell)
Returns the number of distinct edges connected to the given cell.
mxParallelEdgeLayout.prototype.getEdgeId = function(edge)
Returns a unique ID for the given edge.
mxCell.prototype.getEdgeIndex = function(edge)
Returns the index of the specified edge in edges.
mxGraph.prototype.getEdges = function(cell,
parent,
incoming,
outgoing,
includeLoops,
recurse)
Returns the incoming and/or outgoing edges for the given cell.
mxGraphModel.prototype.getEdges = function(cell,
incoming,
outgoing,
includeLoops)
Returns all distinct edges connected to this cell as a new array of mxCells.
mxHierarchicalLayout.prototype.getEdges = function(cell)
Returns the connected edges for the given cell.
mxSwimlaneLayout.prototype.getEdges = function(cell)
Returns the connected edges for the given cell.
mxGraph.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxGraphModel.prototype.getEdgesBetween = function(source,
target,
directed)
Returns all edges between the given source and target pair.
mxHierarchicalLayout.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxSwimlaneLayout.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxEditor.prototype.getEdgeStyle = function ()
Returns a string identifying the style of new edges.
mxGraphView.prototype.getEdgeStyle = function(edge,
points,
source,
target)
Returns the edge style function to be used to render the given edge state.
mxGraph.prototype.getEdgeValidationError = function(edge,
source,
target)
Returns the validation error message to be displayed when inserting or changing an edges’ connectivity.
mxConnectionHandler.prototype.getEdgeWidth = function(valid)
Returns the width used to draw the preview edge.
mxCellEditor.prototype.getEditingCell = function ()
Returns the cell that is currently being edited or null if no cell is being edited.
mxGraph.prototype.getEditingValue = function(cell,
evt)
Returns the initial value for in-place editing.
mxCellEditor.prototype.getEditorBounds = function(state)
Returns the mxRectangle that defines the bounds of the editor.
mxWindow.prototype.getElement = function()
Returuns the outermost DOM node that makes up the window.
mxCodec.prototype.getElementById = function(id,
attr)
Returns the element with the given ID from document.
mxCellEditor.prototype.getEmptyLabelText = function (cell)
Returns the initial label value to be used of the label of the given cell is empty.
mxMouseEvent.prototype.getEvent = function()
Returns evt.
mxEventSource.prototype.getEventSource = function()
Returns eventSource.
mxGraph.prototype.getExportableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxObjectCodec.prototype.getFieldName = function(attributename)
Returns the fieldname for the given attributename.
mxObjectCodec.prototype.getFieldTemplate = function(obj,
fieldname,
child)
Returns the template instance for the given field.
mxGraphSelectionModel.prototype.getFirstSelectableCell = function(cells)
Returns the first selectable cell in the given array of cells.
mxGraph.prototype.getFoldableCells = function(cells,
collapse)
Returns the cells which are movable in the given array of cells.
mxGraph.prototype.getFoldingImage = function(state)
Returns the mxImage used to display the collapsed state of the specified cell state.
mxKeyHandler.prototype.getFunction = function(evt)
Returns the function associated with the given key event or null if no function is associated with the given event.
getFunctionName: function(f)
Returns the name for the given function.
mxGraphAbstractHierarchyCell.prototype.getGeneralPurposeVariable = function(
   layer
)
Gets the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxGraphHierarchyNode.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxCell.prototype.getGeometry = function()
Returns the mxGeometry that describes the geometry.
mxGraphModel.prototype.getGeometry = function(cell)
Returns the mxGeometry of the given mxCell.
mxShape.prototype.getGradientBounds = function(c,
x,
y,
w,
h)
Returns the bounding box for the gradient box for this shape.
mxSwimlane.prototype.getGradientBounds = function(c,
x,
y,
w,
h)
Returns the bounding box for the gradient box for this shape.
mxGraphLayout.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxLayoutManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSpaceManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSwimlaneManager.prototype.getGraph = function()
Returns the graph that this manager operates on.
mxGraph.prototype.getGraphBounds = function()
Returns the bounds of the visible graph.
mxGraphView.prototype.getGraphBounds = function()
Returns graphBounds.
mxDragSource.prototype.getGraphForEvent = function(evt)
Returns the graph for the given mouse event.
mxMouseEvent.prototype.getGraphX = function()
Returns graphX.
mxMouseEvent.prototype.getGraphY = function()
Returns graphY.
mxGraph.prototype.getGridSize = function()
Returns gridSize.
mxGraphHandler.prototype.getGuideStates = function()
Creates an array of cell states which should be used as guides.
mxGuide.prototype.getGuideTolerance = function()
Returns the tolerance for the guides.
mxEdgeHandler.prototype.getHandleFillColor = function(index)
Returns the fillcolor for the handle at the given index.
mxEdgeHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxVertexHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxSelectionCellsHandler.prototype.getHandler = function(cell)
Returns the handler for the given cell.
mxCellMarker.prototype.getHotspot = function()
Returns the hotspot.
mxCell.prototype.getId = function()
Returns the Id of the cell as a string.
mxCodec.prototype.getId = function(obj)
Returns the ID of the specified object.
mxGraph.prototype.getImage = function(state)
Returns the image URL for the given cell state.
mxImageBundle.prototype.getImage = function(key)
Returns the value for the given key.
mxLabel.prototype.getImageBounds = function(x,
y,
w,
h)
Generic background painting implementation.
mxSwimlane.prototype.getImageBounds = function(x,
y,
w,
h)
Paints the swimlane vertex shape.
mxConstraintHandler.prototype.getImageForConstraint = function(state,
constraint,
point)
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getImageFromBundles = function(key)
Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
mxGraph.prototype.getImportableCells = function(cells)
Returns the cells which may be imported in the given array of cells.
mxGraph.prototype.getIncomingEdges = function(cell,
parent)
Returns the visible incoming edges for the given cell.
mxGraphModel.prototype.getIncomingEdges = function(cell)
Returns the incoming edges of the given cell without loops.
mxCell.prototype.getIndex = function(child)
Returns the index of the specified child in the child array.
mxLabel.prototype.getIndicatorBounds = function(x,
y,
w,
h)
Generic background painting implementation.
mxGraph.prototype.getIndicatorColor = function(state)
Returns the indicator color for the given cell state.
mxGraph.prototype.getIndicatorGradientColor = function(state)
Returns the indicator gradient color for the given cell state.
mxGraph.prototype.getIndicatorImage = function(state)
Returns the indicator image for the given cell state.
mxGraph.prototype.getIndicatorShape = function(state)
Returns the indicator shape for the given cell state.
mxGraphHandler.prototype.getInitialCellForEvent = function(me)
Hook to return initial cell for the given event.
mxCellEditor.prototype.getInitialValue = function(state,
trigger)
Gets the initial editing value for the given cell.
getInnerHtml: function()
Returns the inner HTML for the given node as a string or an empty string if no node was specified.
mxDictionary.prototype.getKeys = function()
Returns all keys as an array.
mxGraph.prototype.getLabel = function(cell)
Returns a string or DOM node that represents the label for the given cell.
mxCellRenderer.prototype.getLabelBounds = function(state)
Returns the bounds to be used to draw the label of the given state.
mxShape.prototype.getLabelBounds = function(rect)
Returns the mxRectangle for the label bounds of this shape, based on the given scaled and translated bounds of the shape.
mxCellRenderer.prototype.getLabelValue = function(state)
Returns the value to be used for the label.
mxLayoutManager.prototype.getLayout = function(parent)
Returns the layout to be executed for the given graph and parent.
getMainEvent: function(e)
Returns the touch or mouse event that contains the mouse coordinates.
Returns the spacing as an mxPoint.
mxCellMarker.prototype.getMarkedState = function()
Returns the markedState.
mxCellMarker.prototype.getMarkerColor = function(evt,
state,
isValid)
Returns the valid- or invalidColor depending on the value of isValid.
mxGraph.prototype.getMaximumGraphBounds = function()
Returns the bounds inside which the diagram should be kept as an mxRectangle.
mxCellEditor.prototype.getMinimumSize = function(state)
Returns the minimum width and height for editing the given state.
mxWindow.prototype.getMinimumSize = function()
Returns an mxRectangle that specifies the size for the minimized window.
mxGraph.prototype.getModel = function()
Returns the mxGraphModel that contains the cells.
mxHierarchicalLayout.prototype.getModel = function()
Returns the internal mxGraphHierarchyModel for this layout algorithm.
mxSwimlaneLayout.prototype.getModel = function()
Returns the internal mxSwimlaneModel for this layout algorithm.
mxGraph.prototype.getMovableCells = function(cells)
Returns the cells which are movable in the given array of cells.
mxEventObject.prototype.getName = function()
Returns name.
mxObjectCodec.prototype.getName = function()
Returns the name used for the nodenames and lookup of the codec when classes are encoded and nodes are decoded.
getName: function(value)
Returns the name for the given value.
mxGraphModel.prototype.getNearestCommonAncestor = function(cell1,
cell2)
Returns the nearest common ancestor for the specified cells.
mxGraphAbstractHierarchyCell.prototype.getNextLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyEdge.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyNode.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphView.prototype.getNextPoint = function(edge,
opposite,
source)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
getNumber: function(array,
key,
defaultValue)
Returns the numeric value for the given key in the given associative array or the given default value (or 0) if the value is null.
mxCodec.prototype.getObject = function(id)
Returns the decoded object for the element with the specified ID in document.
getOffset: function(container,
scrollOffset)
Returns the offset for the specified container as an mxPoint.
mxGraph.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all distinct visible opposite cells for the specified terminal on the given edges.
mxGraphModel.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all opposite vertices wrt terminal for the given edges, only returning sources and/or targets as specified.
mxGraphModel.prototype.getOrigin = function(cell)
Returns the absolute, accumulated origin for the children inside the given parent as an mxPoint.
mxMorphing.prototype.getOriginForCell = function(cell)
Returns the top, left corner of the given cell.
getOuterHtml: function()
Returns the outer HTML for the given node as a string or an empty string if no node was specified.
mxGraph.prototype.getOutgoingEdges = function(cell,
parent)
Returns the visible outgoing edges for the given cell.
mxGraphModel.prototype.getOutgoingEdges = function(cell)
Returns the outgoing edges of the given cell without loops.
mxOutline.prototype.getOutlineOffset = function(scale)
Returns the offset for drawing the outline graph.
mxGraph.prototype.getOverlap = function(cell)
Returns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.
mxGraphView.prototype.getOverlayPane = function()
Returns the DOM node that represents the topmost drawing layer.
mxCell.prototype.getParent = function()
Returns the cell’s parent.
mxGraphModel.prototype.getParent = function(cell)
Returns the parent of the given cell.
mxGraphLayout.prototype.getParentOffset = function(parent)
Determines the offset of the given parent to the parent of the layout
getParentPath: function(path)
Returns the path for the parent of the cell represented by the given path.
mxGraphModel.prototype.getParents = function(cells)
Returns an array that represents the set (no duplicates) of all parents for the given array of cells.
mxStackLayout.prototype.getParentSize = function(parent)
Returns the size for the parent container or the size of the graph container if the parent is a layer or the root of the model.
mxCellState.prototype.getPerimeterBounds = function (border,
bounds)
Returns the mxRectangle that should be used as the perimeter of the cell.
mxGraphView.prototype.getPerimeterBounds = function(terminal,
border)
Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
mxGraphView.prototype.getPerimeterFunction = function(state)
Returns the perimeter function for the given state.
mxGraphView.prototype.getPerimeterPoint = function(terminal,
next,
orthogonal,
border)
Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
mxGraphView.prototype.getPoint = function(state,
geometry)
Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
mxRectangle.prototype.getPoint = function()
Returns the top, left corner as a new mxPoint.
mxEdgeHandler.prototype.getPointForEvent = function(me)
Returns the point for the given event.
mxGraph.prototype.getPointForEvent = function(evt,
addOffset)
Returns an mxPoint representing the given event in the unscaled, non-translated coordinate space of container and applies the grid.
mxGraph.prototype.getPreferredPageSize = function(bounds,
width,
height)
Returns the preferred size of the background page if preferPageSize is true.
mxGraph.prototype.getPreferredSizeForCell = function(cell)
Returns the preferred width and height of the given mxCell as an mxRectangle.
Returns a pretty printed string that represents the XML tree for the given node.
mxGraphHandler.prototype.getPreviewBounds = function(cells)
Returns the mxRectangle used as the preview bounds for moving the given cells.
mxEdgeSegmentHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewTerminalState = function(me)
Updates the given preview state taking into account the state of the constraint handler.
mxGraphAbstractHierarchyCell.prototype.getPreviousLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyEdge.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyNode.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxEventObject.prototype.getProperties = function()
Returns properties.
mxEventObject.prototype.getProperty = function(key)
Returns the property for the given key.
mxCircleLayout.prototype.getRadius = function(count,
max)
Returns the radius to be used for the given vertex count.
mxGraphHierarchyNode.prototype.getRankValue = function(layer)
Returns the integer value of the layer that this node resides in
mxGraphView.prototype.getRelativePoint = function(edgeState,
x,
y)
Gets the relative point that describes the given, absolute label position for the given edge state.
mxGraph.prototype.getRemovedCellsForChanges = function(changes)
Returns the cells that have been removed from the model.
mxGraphModel.prototype.getRoot = function(cell)
Returns the root of the model or the topmost parent of the given cell.
mxPrintPreview.prototype.getRoot = function()
Returns the root cell for painting the graph.
mxEditor.prototype.getRootTitle = function ()
Returns the string value of the root cell in mxGraph.model.
getRotatedPoint: function(pt,
cos,
sin,
c)
Rotates the given point by the given cos and sin.
mxPolyline.prototype.getRotation = function()
Returns 0.
mxShape.prototype.getRotation = function()
Returns the rotation from the style.
mxSwimlane.prototype.getRotation = function()
Overrides rotation to include the horizontal flag in the shape rotation.
mxGraphView.prototype.getRoutingCenterX = function (state)
Returns the x-coordinate of the center point for automatic routing.
mxGraphView.prototype.getRoutingCenterY = function (state)
Returns the y-coordinate of the center point for automatic routing.
mxGraphView.prototype.getScale = function()
Returns the scale.
getScaleForPageCount: function(pageCount,
graph,
pageFormat,
border)
Returns the scale to be used for printing the graph with the given bounds across the specifies number of pages with the given format.
getScrollOrigin: function(node)
Returns the top, left corner of the viewrect as an mxPoint.
mxVertexHandler.prototype.getSelectionBounds = function(state)
Returns the mxRectangle that defines the bounds of the selection border.
mxGraph.prototype.getSelectionCell = function()
Returns the first cell from the array of selected mxCells.
mxGraph.prototype.getSelectionCells = function()
Returns the array of selected mxCells.
mxGraph.prototype.getSelectionCellsForChanges = function(changes)
Returns the cells to be selected for the given array of changes.
mxEdgeHandler.prototype.getSelectionColor = function()
Returns mxConstants.EDGE_SELECTION_COLOR.
mxVertexHandler.prototype.getSelectionColor = function()
Returns mxConstants.VERTEX_SELECTION_COLOR.
mxGraph.prototype.getSelectionCount = function()
Returns the number of selected cells.
mxGraph.prototype.getSelectionModel = function()
Returns the mxGraphSelectionModel that contains the selection.
mxEdgeHandler.prototype.getSelectionPoints = function(state)
Returns the list of points that defines the selection stroke.
mxEdgeHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.EDGE_SELECTION_STROKEWIDTH.
mxVertexHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.VERTEX_SELECTION_STROKEWIDTH.
mxCellRenderer.prototype.getShape = function(name)
Returns the shape for the given name from defaultShapes.
mxCellRenderer.prototype.getShapeConstructor = function(state)
Returns the constructor to be used for creating the shape.
mxPolyline.prototype.getShapeRotation = function()
Returns 0.
mxShape.prototype.getShapeRotation = function()
Returns the actual rotation of the shape.
mxText.prototype.getShapeRotation = function()
Returns 0 to avoid using rotation in the canvas via updateTransform.
mxCellRenderer.prototype.getShapesForState = function(state)
Returns the mxShapes for the given cell state in the order in which they should appear in the DOM.
getSizeForString: function(text,
fontSize,
fontFamily,
textWidth)
Returns an mxRectangle with the size (width and height in pixels) of the given string.
mxEdgeHandler.prototype.getSnapToTerminalTolerance = function()
Returns the tolerance for the guides.
getSource: function(evt)
Returns the event’s target or srcElement depending on the browser.
mxMouseEvent.prototype.getSource = function()
Returns the target DOM element using mxEvent.getSource for evt.
mxOutline.prototype.getSourceContainerSize = function()
Returns the size of the source container.
mxConnectionHandler.prototype.getSourcePerimeterPoint = function(state,
next,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxText.prototype.getSpacing = function()
Returns the spacing as an mxPoint.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxGraph.prototype.getStartSize = function(swimlane)
Returns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.
mxCellMarker.prototype.getState = function(me)
Uses getCell, getStateToMark and intersects to return the mxCellState for the given mxMouseEvent.
mxGraphView.prototype.getState = function(cell,
create)
Returns the mxCellState for the given cell.
mxMouseEvent.prototype.getState = function()
Returns state.
Returns the state for the given touch event.
mxGraphView.prototype.getStates = function()
Returns states.
mxCellMarker.prototype.getStateToMark = function(state)
Returns the mxCellState to be marked for the given mxCellState under the mouse.
mxXmlRequest.prototype.getStatus = function()
Returns the status as a number, eg.
getStencil: function(name)
Returns the mxStencil for the given name.
codec.getStringValue = function(key,
value)
Returns the string for encoding the given value.
mxCell.prototype.getStyle = function()
Returns a string that describes the style.
mxGraphModel.prototype.getStyle = function(cell)
Returns the style of the given mxCell.
getStylename: function(style)
Returns the stylename in a style of the form [(stylename|key=value);] or an empty string if the given style does not contain a stylename.
getStylenames: function(style)
Returns the stylenames in a style of the form [(stylename|key=value);] or an empty array if the given style does not contain any stylenames.
mxGraph.prototype.getStylesheet = function()
Returns the mxStylesheet that defines the style.
mxSvgCanvas2D.prototype.getSvgGradient = function(start,
end,
alpha1,
alpha2,
direction)
Private helper function to create SVG elements
mxImageShape.prototype.getSvgScreenOffset = function()
Disables offset in IE9 for crisper image output.
mxShape.prototype.getSvgScreenOffset = function()
Returns 0, or 0.5 if strokewidth % 2 == 1.
mxText.prototype.getSvgScreenOffset = function()
Disables offset in IE9 for crisper image output.
mxGraph.prototype.getSwimlane = function(cell)
Returns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.
mxGraph.prototype.getSwimlaneAt = function (x,
y,
parent)
Returns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
mxForm.prototype.getTable = function()
Returns the table that contains this form.
mxConnectionHandler.prototype.getTargetPerimeterPoint = function(state,
me)
Returns the perimeter point for the given target state.
mxEditor.prototype.getTemplate = function (name)
Returns the template for the given name.
mxCell.prototype.getTerminal = function(source)
Returns the source or target terminal.
mxGraphModel.prototype.getTerminal = function(edge,
isSource)
Returns the source or target mxCell of the given edge depending on the value of the boolean parameter.
mxGraph.prototype.getTerminalForPort = function(cell,
source)
Returns the terminal to be used for a given port.
mxGeometry.prototype.getTerminalPoint = function(isSource)
Returns the mxPoint representing the source or target point of this edge.
mxGraphView.prototype.getTerminalPort = function(state,
terminal,
source)
Returns an mxCellState that represents the source or target terminal or port for the given edge.
mxXmlRequest.prototype.getText = function()
Returns the response as a string.
getTextContent: function(node)
Returns the text content of the specified node.
mxShape.prototype.getTextRotation = function()
Returns the rotation for the text label.
mxSwimlane.prototype.getTextRotation = function()
Redirect the text rotation to the shape rotation to avoid adding the vertical text rotation twice.
mxText.prototype.getTextRotation = function()
Returns the rotation for the text label of the corresponding shape.
mxCellRenderer.prototype.getTextScale = function(state)
Returns the scaling used for the label of the given state
mxEditor.prototype.getTitle = function ()
Returns the string value for the current root of the diagram.
mxConstraintHandler.prototype.getTolerance = function()
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getTolerance = function()
Returns tolerance.
mxGraph.prototype.getTooltip = function(state,
node,
x,
y)
Returns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.
mxGraph.prototype.getTooltipForCell = function(cell)
Returns the string or DOM node to be used as the tooltip for the given cell.
mxElbowEdgeHandler.prototype.getTooltipForNode = function(node)
Returns the tooltip for the given node.
mxGraphModel.prototype.getTopmostCells = function(cells)
Returns the topmost cells of the hierarchy in an array that contains no descendants for each mxCell that it contains.
mxGraphView.prototype.getTranslate = function()
Returns the translate.
mxOutline.prototype.getTranslateForEvent = function(me)
Gets the translate for the given mouse event.
mxGraph.prototype.getTranslateForRoot = function(cell)
Returns the translation to be used if the given cell is the root cell as an mxPoint.
mxEditor.prototype.getUrlImage = function ()
Returns the URL to create the image with.
mxEditor.prototype.getUrlPost = function ()
Returns the URL to post the diagram to.
mxCellMarker.prototype.getValidState = function()
Returns the validState.
mxCell.prototype.getValue = function()
Returns the user object of the cell.
mxGraphModel.prototype.getValue = function(cell)
Returns the user object of the given mxCell using mxCell.getValue.
getValue: function(name)
Returns the value associated with the given name.
getValue: function(array,
key,
defaultValue)
Returns the value for the given key in the given associative array or the given default value if the value is null.
mxDictionary.prototype.getValues = function()
Returns all values as an array.
mxGraphLayout.prototype.getVertexBounds = function(cell)
Returns an mxRectangle that defines the bounds of the given cell or the bounding box if useBoundingBox is true.
mxGraph.prototype.getVerticalAlign = function(state)
Returns the vertical alignment for the given cell state.
mxGraph.prototype.getView = function()
Returns the mxGraphView that contains the mxCellStates.
getViewXml: function(graph,
scale,
cells,
x0,
y0)
mxCellState.prototype.getVisibleTerminal = function (source)
Returns the visible source or target terminal cell.
mxGraphView.prototype.getVisibleTerminal = function(edge,
source)
Returns the nearest ancestor terminal that is visible.
mxHierarchicalLayout.prototype.getVisibleTerminal = function(edge,
source)
Helper function to return visible terminal for edge allowing for ports
mxSwimlaneLayout.prototype.getVisibleTerminal = function(edge,
source)
Helper function to return visible terminal for edge allowing for ports
mxCellState.prototype.getVisibleTerminalState = function (source)
Returns the visible source or target terminal state.
Returns a VML dash pattern for the current dashPattern.
mxPrintPreview.prototype.getWindow = function()
Returns wnd.
mxGraphAbstractHierarchyCell.prototype.getX = function(layer)
Gets the value of x on the specified layer
mxMouseEvent.prototype.getX = function()
Returns evt.clientX.
mxWindow.prototype.getX = function()
Returns the current position on the x-axis.
getXml: function(node,
linefeed)
Returns the XML content of the specified node.
mxXmlRequest.prototype.getXml = function()
Returns the response as an XML document.
mxMouseEvent.prototype.getY = function()
Returns evt.clientY.
mxWindow.prototype.getY = function()
Returns the current position on the y-axis.
this.gradients
Local cache of gradients for quick lookups.
mxAutoSaveManager.prototype.graph
Reference to the enclosing mxGraph.
mxCellEditor.prototype.graph
Reference to the enclosing mxGraph.
mxCellHighlight.prototype.graph
Reference to the enclosing mxGraph.
mxCellMarker.prototype.graph
Reference to the enclosing mxGraph.
mxCellStatePreview.prototype.graph
Reference to the enclosing mxGraph.
mxConnectionHandler.prototype.graph
Reference to the enclosing mxGraph.
mxConstraintHandler.prototype.graph
Reference to the enclosing mxGraph.
mxEdgeHandler.prototype.graph
Reference to the enclosing mxGraph.
mxEditor.prototype.graph
Holds a mxGraph for displaying the diagram.
mxGraphHandler.prototype.graph
Reference to the enclosing mxGraph.
mxGraphLayout.prototype.graph
Reference to the enclosing mxGraph.
mxGraphSelectionModel.prototype.graph
Reference to the enclosing mxGraph.
mxGraphView.prototype.graph
Reference to the enclosing mxGraph.
mxGuide.prototype.graph
Reference to the enclosing mxGraph instance.
mxKeyHandler.prototype.graph
Reference to the mxGraph associated with this handler.
mxLayoutManager.prototype.graph
Reference to the enclosing mxGraph.
mxMorphing.prototype.graph
Specifies the delay between the animation steps.
mxPanningHandler.prototype.graph
Reference to the enclosing mxGraph.
mxPrintPreview.prototype.graph
Reference to the mxGraph that should be previewed.
mxSelectionCellsHandler.prototype.graph
Reference to the enclosing mxGraph.
mxSpaceManager.prototype.graph
Reference to the enclosing mxGraph.
mxSwimlaneManager.prototype.graph
Reference to the enclosing mxGraph.
mxTooltipHandler.prototype.graph
Reference to the enclosing mxGraph.
mxVertexHandler.prototype.graph
Reference to the enclosing mxGraph.
mxGraphView.prototype.graphBounds
mxRectangle that caches the scales, translated bounds of the current view.
mxDragSource.prototype.graphContainsEvent = function(graph,
evt)
Returns true if the given graph contains the given event.
mxAutoSaveManager.prototype.graphModelChanged = function(changes)
Invoked when the graph model has changed.
mxGraph.prototype.graphModelChanged = function(changes)
Called when the graph model changes.
mxEditor.prototype.graphRenderHint
Holds the render hint used for creating the graph in setGraphContainer.
Renderhint to be used for the outline graph.
mxMouseEvent.prototype.graphX
Holds the x-coordinate of the event in the graph.
mxMouseEvent.prototype.graphY
Holds the y-coordinate of the event in the graph.
mxDragSource.prototype.gridEnabled
Specifies if the grid should be allowed.
mxGraph.prototype.gridEnabled
Specifies if the grid is enabled.
mxGraph.prototype.gridSize
Specifies the grid size.
Specifies the event name for groupCells.
Fires between begin- and endUpdate in groupCells.
mxEditor.prototype.groupCells = function ()
Invokes createGroup to create a new group cell and the invokes mxGraph.groupCells, using the grid size of the graph as the spacing in the group’s content area.
mxGraph.prototype.groupCells = function(group,
border,
cells)
Adds the cells into the given group.
mxCompactTreeLayout.prototype.groupPadding
Padding added to resized parents.
mxCoordinateAssignment.prototype.groupPadding
Padding added to resized parents
mxRectangle.prototype.grow = function(amount)
Grows the rectangle by the given amount, that is, this method subtracts the given amount from the x- and y-coordinates and adds twice the amount to the width and height.
mxGraphHandler.prototype.guide
Holds the mxGuide instance that is used for alignment.
Defines the color to be used for the guidelines in mxGraphHandler.
Defines the strokewidth to be used for the guidelines in mxGraphHandler.
mxDragSource.prototype.guidesEnabled
Specifies if mxGuide should be enabled.
mxGraphHandler.prototype.guidesEnabled
Specifies if other cells should be used for snapping the right, center or left side of the current selection.
+
mxCell.prototype.geometry
Holds the mxGeometry.
mxGraphModel.prototype.geometryForCellChanged = function(cell,
geometry)
Inner callback to update the mxGeometry of the given mxCell using mxCell.setGeometry and return the previous mxGeometry.
Specifies the event name for gesture.
Fires in fireGestureEvent after a touch gesture.
mxDictionary.prototype.get = function(key)
Returns the value for the given key.
get: function(obj)
Returns the object id for the given object.
get: function(key,
params,
defaultValue)
Returns the value for the specified resource key.
mxSession.prototype.get = function(url,
onLoad,
onError)
Sends an asynchronous get request to the given URL, fires a get event and invokes the given onLoad function when a response is received.
get: function(url,
onload,
onerror)
Loads the specified URL asynchronously and invokes the given functions depending on the request status.
Specifies the event name for get.
Fires after a response was received in get.
getAlignmentAsPoint: function(align,
valign)
Returns an mxPoint that represents the horizontal and vertical alignment for numeric computations.
mxConnectionHandler.prototype.getAlignmentTolerance = function()
Returns the tolerance for aligning new targets to sources.
mxGraph.prototype.getAllConnectionConstraints = function(terminal,
source)
Returns an array of all mxConnectionConstraints for the given terminal.
mxGraph.prototype.getAllEdges = function(cells)
Returns all edges connected to the given cells or its descendants.
Returns the alternate content for the given foreignObject.
mxPrintPreview.prototype.getAppendices = function()
Returns the pages to be added after the print output.
mxShape.prototype.getArcSize = function(w,
h)
Returns the arc size for the given dimension.
mxSwimlane.prototype.getArcSize = function(w,
h,
start)
Returns the arcsize for the swimlane.
mxCell.prototype.getAttribute = function(name,
defaultValue)
Returns the specified attribute from the user object if it is an XML node.
mxObjectCodec.prototype.getAttributeName = function(fieldname)
Returns the attributename for the given fieldname.
mxGraph.prototype.getBackgroundImage = function()
Returns the backgroundImage as an mxImage.
mxGraphView.prototype.getBackgroundPageBounds = function()
Returns the bounds for the background page.
mxGraphView.prototype.getBackgroundPane = function()
Returns the DOM node that represents the background layer.
getBaseDomain: function()
Returns baseDomain.
getBaseUrl: function()
Returns baseUrl.
mxGraph.prototype.getBorder = function()
Returns the value of border.
mxGraph.prototype.getBorderSizes = function()
Returns the size of the border and padding on all four sides of the container.
mxGraphHandler.prototype.getBoundingBox = function(cells)
Returns the mxRectangle that represents the bounding box for the given cells.
getBoundingBox: function(rect,
rotation)
Returns the bounding box for the rotated rectangle.
mxGraph.prototype.getBoundingBoxFromGeometry = function(cells,
includeEdges)
Returns the bounding box for the geometries of the vertices in the given array of cells.
mxCellOverlay.prototype.getBounds = function(state)
Returns the bounds of the overlay for the given mxCellState as an mxRectangle.
mxGraphView.prototype.getBounds = function(cells)
Returns the bounds (on the screen) for the given array of mxCells.
mxGraph.prototype.getBoundsForGroup = function(group,
children,
border)
Returns the bounds to be used for the given group and children.
mxGraphView.prototype.getCanvas = function()
Returns the DOM node that contains the background-, draw- and overlaypane.
mxCellMarker.prototype.getCell = function(me)
Returns the mxCell for the given event and cell.
mxGraphModel.prototype.getCell = function(id)
Returns the mxCell for the specified Id or null if no cell can be found for the given Id.
mxMouseEvent.prototype.getCell = function()
Returns the mxCell in state is not null.
mxGraph.prototype.getCellAt = function(x,
y,
parent,
vertices,
edges)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.
mxGraph.prototype.getCellBounds = function(cell,
includeEdges,
includeDescendants)
Returns the scaled, translated bounds for the given cell.
mxGraph.prototype.getCellContainmentArea = function(cell)
Returns the mxRectangle inside which a cell is to be kept.
mxPopupMenuHandler.prototype.getCellForPopupEvent = function(me)
Hook to return the cell for the mouse up popup trigger handling.
mxGraph.prototype.getCellGeometry = function(cell)
Returns the mxGeometry for the given cell.
mxGraph.prototype.getCellOverlays = function(cell)
Returns the array of mxCellOverlays for the given cell or null, if no overlays are defined.
getCells: function()
Returns the cells in the clipboard.
mxGraph.prototype.getCells = function(x,
y,
width,
height,
parent,
result)
Returns the children of the given parent that are contained in the given rectangle (x, y, width, height).
mxGraphHandler.prototype.getCells = function(initialCell)
Returns the cells to be modified by this handler.
mxGraph.prototype.getCellsBeyond = function(x0,
y0,
parent,
rightHalfpane,
bottomHalfpane)
Returns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.
mxLayoutManager.prototype.getCellsForChange = function(change)
Executes all layouts which have been scheduled during the changes.
Returns the cells to be layouted for the given sequence of changes.
mxGraph.prototype.getCellsForGroup = function(cells)
Returns the cells with the same parent as the first cell in the given array.
mxGraphView.prototype.getCellStates = function(cells)
Returns the mxCellStates for the given array of mxCells.
mxSpaceManager.prototype.getCellsToShift = function(state)
Returns the cells to shift after a resize of the specified mxCellState.
mxGraph.prototype.getCellStyle = function(cell)
Returns an array of key, value pairs representing the cell style for the given cell.
mxStylesheet.prototype.getCellStyle = function(name,
defaultStyle)
Returns the cell style for the specified stylename or the given defaultStyle if no style can be found for the given stylename.
mxGraph.prototype.getCellValidationError = function(cell)
Checks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.
mxRectangle.prototype.getCenterX = function ()
Returns the x-coordinate of the center point.
mxRectangle.prototype.getCenterY = function ()
Returns the y-coordinate of the center point.
mxCell.prototype.getChildAt = function(index)
Returns the child at the specified index.
mxGraphModel.prototype.getChildAt = function(cell,
index)
Returns the child of the given mxCell at the given index.
mxGraph.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the visible child vertices or edges in the given parent.
mxGraphModel.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the children of the given cell that are vertices and/or edges depending on the arguments.
mxCell.prototype.getChildCount = function()
Returns the number of child cells.
mxGraphModel.prototype.getChildCount = function(cell)
Returns the number of children in the given cell.
mxGraph.prototype.getChildEdges = function(parent)
Returns the visible child edges of the given parent.
mxGraphModel.prototype.getChildEdges = function(parent)
Returns the child edges of the given parent.
getChildNodes: function(node,
nodeType)
Returns an array of child nodes that are of the given node type.
mxGraph.prototype.getChildOffsetForCell = function(cell)
Returns the offset to be used for the cells inside the given cell.
mxGraphModel.prototype.getChildren = function(cell)
Returns all children of the given mxCell as an array of mxCells.
mxGraph.prototype.getChildVertices = function(parent)
Returns the visible child vertices of the given parent.
mxGraphModel.prototype.getChildVertices = function(parent)
Returns the child vertices of the given parent.
getClientX: function(e)
Returns true if the meta key is pressed for the given event.
getClientY: function(e)
Returns true if the meta key is pressed for the given event.
mxGraph.prototype.getCloneableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
getCodec: function(ctor)
Returns a codec that handles objects that are constructed using the given constructor.
getColor: function(array,
key,
defaultValue)
Returns the color value for the given key in the given associative array or the given default value if the value is null.
mxConnectionHandler.prototype.getConnectImage = function(state)
Hook to return the mxImage used for the connection icon of the given mxCellState.
mxGraph.prototype.getConnectionConstraint = function(edge,
terminal,
source)
Returns an mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.getConnectionPoint = function(vertex,
constraint)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
mxGraph.prototype.getConnections = function(cell,
parent)
Returns all visible edges connected to the given cell without loops.
mxGraphModel.prototype.getConnections = function(cell)
Returns all edges of the given cell without loops.
mxGraphLayout.prototype.getConstraint = function(key,
cell,
edge,
source)
Returns the constraint for the given key and cell.
mxCellRenderer.prototype.getControlBounds = function(state,
w,
h)
Returns the bounds to be used to draw the control (folding icon) of the given state.
mxGraphHierarchyEdge.prototype.getCoreCell = function()
Gets the first core edge associated with this wrapper
mxGraphHierarchyNode.prototype.getCoreCell = function()
Gets the core vertex associated with this wrapper
mxPrintPreview.prototype.getCoverPages = function()
Returns the pages to be added before the print output.
mxGraph.prototype.getCurrentRoot = function()
Returns the current root of the displayed cell hierarchy.
getCurrentStyle: function()
Returns the current style of the specified element.
mxCellEditor.prototype.getCurrentValue = function()
Returns the current editing value.
mxShape.prototype.getCursor = function()
Returns the current cursor.
mxElbowEdgeHandler.prototype.getCursorForBend = function()
Returns the cursor to be used for the bend.
mxGraph.prototype.getCursorForCell = function(cell)
Returns the cursor value to be used for the CSS of the shape for the given cell.
mxGraph.prototype.getCursorForMouseEvent = function(me)
Returns the cursor value to be used for the CSS of the shape for the given event.
getDefaultBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxStylesheet.prototype.getDefaultEdgeStyle = function()
Sets the default style for edges.
mxGraph.prototype.getDefaultParent = function()
Returns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.
mxStylesheet.prototype.getDefaultVertexStyle = function()
Returns the default style for vertices.
mxGraph.prototype.getDeletableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxGraphHandler.prototype.getDelta = function(me)
Returns an mxPoint that represents the vector for moving the cells for the given mxMouseEvent.
mxMorphing.prototype.getDelta = function(state)
Returns the vector between the current rendered state and the future location of the state after the display will be updated.
mxGraphModel.prototype.getDescendants = function(parent)
Returns all descendants of the given cell and the cell itself in an array.
mxGraphModel.prototype.getDirectedEdgeCount = function(cell,
outgoing,
ignoredEdge)
Returns the number of incoming or outgoing edges, ignoring the given edge.
Returns the string that should go before the HTML tag in the print preview page.
mxXmlRequest.prototype.getDocumentElement = function()
Returns the document element of the response XML document.
mxDivResizer.prototype.getDocumentHeight = function()
Hook for subclassers to return the height of the document (without scrollbars).
getDocumentScrollOrigin: function(doc)
Returns the scroll origin of the given document or the current document if no document is given.
mxDivResizer.prototype.getDocumentWidth = function()
Hook for subclassers to return the width of the document (without scrollbars).
mxGraphView.prototype.getDrawPane = function()
Returns the DOM node that represents the main drawing layer.
mxDragSource.prototype.getDropTarget = function(graph,
x,
y)
Returns the drop target for the given graph and coordinates.
mxGraph.prototype.getDropTarget = function(cells,
evt,
cell)
Returns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.
mxCell.prototype.getEdgeAt = function(index)
Returns the edge at the specified index in edges.
mxGraphModel.prototype.getEdgeAt = function(cell,
index)
Returns the edge of cell at the given index.
mxConnectionHandler.prototype.getEdgeColor = function(valid)
Returns the color used to draw the preview edge.
mxCell.prototype.getEdgeCount = function()
Returns the number of edges in the edge array.
mxGraphModel.prototype.getEdgeCount = function(cell)
Returns the number of distinct edges connected to the given cell.
mxParallelEdgeLayout.prototype.getEdgeId = function(edge)
Returns a unique ID for the given edge.
mxCell.prototype.getEdgeIndex = function(edge)
Returns the index of the specified edge in edges.
mxGraph.prototype.getEdges = function(cell,
parent,
incoming,
outgoing,
includeLoops,
recurse)
Returns the incoming and/or outgoing edges for the given cell.
mxGraphModel.prototype.getEdges = function(cell,
incoming,
outgoing,
includeLoops)
Returns all distinct edges connected to this cell as a new array of mxCells.
mxHierarchicalLayout.prototype.getEdges = function(cell)
Returns the connected edges for the given cell.
mxSwimlaneLayout.prototype.getEdges = function(cell)
Returns the connected edges for the given cell.
mxGraph.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxGraphModel.prototype.getEdgesBetween = function(source,
target,
directed)
Returns all edges between the given source and target pair.
mxHierarchicalLayout.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxSwimlaneLayout.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxEditor.prototype.getEdgeStyle = function ()
Returns a string identifying the style of new edges.
mxGraphView.prototype.getEdgeStyle = function(edge,
points,
source,
target)
Returns the edge style function to be used to render the given edge state.
mxGraph.prototype.getEdgeValidationError = function(edge,
source,
target)
Returns the validation error message to be displayed when inserting or changing an edges’ connectivity.
mxConnectionHandler.prototype.getEdgeWidth = function(valid)
Returns the width used to draw the preview edge.
mxCellEditor.prototype.getEditingCell = function ()
Returns the cell that is currently being edited or null if no cell is being edited.
mxGraph.prototype.getEditingValue = function(cell,
evt)
Returns the initial value for in-place editing.
mxCellEditor.prototype.getEditorBounds = function(state)
Returns the mxRectangle that defines the bounds of the editor.
mxWindow.prototype.getElement = function()
Returuns the outermost DOM node that makes up the window.
mxCodec.prototype.getElementById = function(id,
attr)
Returns the element with the given ID from document.
mxCellEditor.prototype.getEmptyLabelText = function (cell)
Returns the initial label value to be used of the label of the given cell is empty.
mxMouseEvent.prototype.getEvent = function()
Returns evt.
mxEventSource.prototype.getEventSource = function()
Returns eventSource.
mxGraph.prototype.getExportableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxObjectCodec.prototype.getFieldName = function(attributename)
Returns the fieldname for the given attributename.
mxObjectCodec.prototype.getFieldTemplate = function(obj,
fieldname,
child)
Returns the template instance for the given field.
mxGraphSelectionModel.prototype.getFirstSelectableCell = function(cells)
Returns the first selectable cell in the given array of cells.
mxGraph.prototype.getFoldableCells = function(cells,
collapse)
Returns the cells which are movable in the given array of cells.
mxGraph.prototype.getFoldingImage = function(state)
Returns the mxImage used to display the collapsed state of the specified cell state.
mxKeyHandler.prototype.getFunction = function(evt)
Returns the function associated with the given key event or null if no function is associated with the given event.
getFunctionName: function(f)
Returns the name for the given function.
mxGraphAbstractHierarchyCell.prototype.getGeneralPurposeVariable = function(
   layer
)
Gets the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxGraphHierarchyNode.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxCell.prototype.getGeometry = function()
Returns the mxGeometry that describes the geometry.
mxGraphModel.prototype.getGeometry = function(cell)
Returns the mxGeometry of the given mxCell.
mxShape.prototype.getGradientBounds = function(c,
x,
y,
w,
h)
Returns the bounding box for the gradient box for this shape.
Returns the bounding box for the gradient box for this shape.
mxGraphLayout.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxLayoutManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSpaceManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSwimlaneManager.prototype.getGraph = function()
Returns the graph that this manager operates on.
mxGraph.prototype.getGraphBounds = function()
Returns the bounds of the visible graph.
mxGraphView.prototype.getGraphBounds = function()
Returns graphBounds.
mxDragSource.prototype.getGraphForEvent = function(evt)
Returns the graph for the given mouse event.
mxMouseEvent.prototype.getGraphX = function()
Returns graphX.
mxMouseEvent.prototype.getGraphY = function()
Returns graphY.
mxGraph.prototype.getGridSize = function()
Returns gridSize.
mxGraphHandler.prototype.getGuideStates = function()
Creates an array of cell states which should be used as guides.
mxGuide.prototype.getGuideTolerance = function()
Returns the tolerance for the guides.
mxEdgeHandler.prototype.getHandleFillColor = function(index)
Returns the fillcolor for the handle at the given index.
mxEdgeHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxVertexHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxSelectionCellsHandler.prototype.getHandler = function(cell)
Returns the handler for the given cell.
mxCellMarker.prototype.getHotspot = function()
Returns the hotspot.
mxCell.prototype.getId = function()
Returns the Id of the cell as a string.
mxCodec.prototype.getId = function(obj)
Returns the ID of the specified object.
mxGraph.prototype.getImage = function(state)
Returns the image URL for the given cell state.
mxImageBundle.prototype.getImage = function(key)
Returns the value for the given key.
mxLabel.prototype.getImageBounds = function(x,
y,
w,
h)
Generic background painting implementation.
mxSwimlane.prototype.getImageBounds = function(x,
y,
w,
h)
Paints the swimlane vertex shape.
mxConstraintHandler.prototype.getImageForConstraint = function(state,
constraint,
point)
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getImageFromBundles = function(key)
Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
mxGraph.prototype.getImportableCells = function(cells)
Returns the cells which may be imported in the given array of cells.
mxGraph.prototype.getIncomingEdges = function(cell,
parent)
Returns the visible incoming edges for the given cell.
mxGraphModel.prototype.getIncomingEdges = function(cell)
Returns the incoming edges of the given cell without loops.
mxCell.prototype.getIndex = function(child)
Returns the index of the specified child in the child array.
mxLabel.prototype.getIndicatorBounds = function(x,
y,
w,
h)
Generic background painting implementation.
mxGraph.prototype.getIndicatorColor = function(state)
Returns the indicator color for the given cell state.
mxGraph.prototype.getIndicatorGradientColor = function(state)
Returns the indicator gradient color for the given cell state.
mxGraph.prototype.getIndicatorImage = function(state)
Returns the indicator image for the given cell state.
mxGraph.prototype.getIndicatorShape = function(state)
Returns the indicator shape for the given cell state.
mxGraphHandler.prototype.getInitialCellForEvent = function(me)
Hook to return initial cell for the given event.
mxCellEditor.prototype.getInitialValue = function(state,
trigger)
Gets the initial editing value for the given cell.
getInnerHtml: function()
Returns the inner HTML for the given node as a string or an empty string if no node was specified.
mxDictionary.prototype.getKeys = function()
Returns all keys as an array.
mxGraph.prototype.getLabel = function(cell)
Returns a string or DOM node that represents the label for the given cell.
mxCellRenderer.prototype.getLabelBounds = function(state)
Returns the bounds to be used to draw the label of the given state.
mxShape.prototype.getLabelBounds = function(rect)
Returns the mxRectangle for the label bounds of this shape, based on the given scaled and translated bounds of the shape.
mxCellRenderer.prototype.getLabelValue = function(state)
Returns the value to be used for the label.
mxLayoutManager.prototype.getLayout = function(parent)
Returns the layout to be executed for the given graph and parent.
getMainEvent: function(e)
Returns the touch or mouse event that contains the mouse coordinates.
Returns the spacing as an mxPoint.
mxCellMarker.prototype.getMarkedState = function()
Returns the markedState.
mxCellMarker.prototype.getMarkerColor = function(evt,
state,
isValid)
Returns the valid- or invalidColor depending on the value of isValid.
mxGraph.prototype.getMaximumGraphBounds = function()
Returns the bounds inside which the diagram should be kept as an mxRectangle.
mxCellEditor.prototype.getMinimumSize = function(state)
Returns the minimum width and height for editing the given state.
mxWindow.prototype.getMinimumSize = function()
Returns an mxRectangle that specifies the size for the minimized window.
mxGraph.prototype.getModel = function()
Returns the mxGraphModel that contains the cells.
mxHierarchicalLayout.prototype.getModel = function()
Returns the internal mxGraphHierarchyModel for this layout algorithm.
mxSwimlaneLayout.prototype.getModel = function()
Returns the internal mxSwimlaneModel for this layout algorithm.
mxGraph.prototype.getMovableCells = function(cells)
Returns the cells which are movable in the given array of cells.
mxEventObject.prototype.getName = function()
Returns name.
mxObjectCodec.prototype.getName = function()
Returns the name used for the nodenames and lookup of the codec when classes are encoded and nodes are decoded.
getName: function(value)
Returns the name for the given value.
mxGraphModel.prototype.getNearestCommonAncestor = function(cell1,
cell2)
Returns the nearest common ancestor for the specified cells.
mxGraphAbstractHierarchyCell.prototype.getNextLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyEdge.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyNode.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphView.prototype.getNextPoint = function(edge,
opposite,
source)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
getNumber: function(array,
key,
defaultValue)
Returns the numeric value for the given key in the given associative array or the given default value (or 0) if the value is null.
mxCodec.prototype.getObject = function(id)
Returns the decoded object for the element with the specified ID in document.
getOffset: function(container,
scrollOffset)
Returns the offset for the specified container as an mxPoint.
mxGraph.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all distinct visible opposite cells for the specified terminal on the given edges.
mxGraphModel.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all opposite vertices wrt terminal for the given edges, only returning sources and/or targets as specified.
mxGraphModel.prototype.getOrigin = function(cell)
Returns the absolute, accumulated origin for the children inside the given parent as an mxPoint.
mxMorphing.prototype.getOriginForCell = function(cell)
Returns the top, left corner of the given cell.
getOuterHtml: function()
Returns the outer HTML for the given node as a string or an empty string if no node was specified.
mxGraph.prototype.getOutgoingEdges = function(cell,
parent)
Returns the visible outgoing edges for the given cell.
mxGraphModel.prototype.getOutgoingEdges = function(cell)
Returns the outgoing edges of the given cell without loops.
mxOutline.prototype.getOutlineOffset = function(scale)
Returns the offset for drawing the outline graph.
mxGraph.prototype.getOverlap = function(cell)
Returns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.
mxGraphView.prototype.getOverlayPane = function()
Returns the DOM node that represents the topmost drawing layer.
mxCell.prototype.getParent = function()
Returns the cell’s parent.
mxGraphModel.prototype.getParent = function(cell)
Returns the parent of the given cell.
mxGraphLayout.prototype.getParentOffset = function(parent)
Determines the offset of the given parent to the parent of the layout
getParentPath: function(path)
Returns the path for the parent of the cell represented by the given path.
mxGraphModel.prototype.getParents = function(cells)
Returns an array that represents the set (no duplicates) of all parents for the given array of cells.
mxStackLayout.prototype.getParentSize = function(parent)
Returns the size for the parent container or the size of the graph container if the parent is a layer or the root of the model.
mxCellState.prototype.getPerimeterBounds = function (border,
bounds)
Returns the mxRectangle that should be used as the perimeter of the cell.
mxGraphView.prototype.getPerimeterBounds = function(terminal,
border)
Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
mxGraphView.prototype.getPerimeterFunction = function(state)
Returns the perimeter function for the given state.
mxGraphView.prototype.getPerimeterPoint = function(terminal,
next,
orthogonal,
border)
Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
mxGraphView.prototype.getPoint = function(state,
geometry)
Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
mxRectangle.prototype.getPoint = function()
Returns the top, left corner as a new mxPoint.
mxEdgeHandler.prototype.getPointForEvent = function(me)
Returns the point for the given event.
mxGraph.prototype.getPointForEvent = function(evt,
addOffset)
Returns an mxPoint representing the given event in the unscaled, non-translated coordinate space of container and applies the grid.
mxGraph.prototype.getPreferredPageSize = function(bounds,
width,
height)
Returns the preferred size of the background page if preferPageSize is true.
mxGraph.prototype.getPreferredSizeForCell = function(cell)
Returns the preferred width and height of the given mxCell as an mxRectangle.
Returns a pretty printed string that represents the XML tree for the given node.
mxGraphHandler.prototype.getPreviewBounds = function(cells)
Returns the mxRectangle used as the preview bounds for moving the given cells.
mxEdgeSegmentHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewTerminalState = function(me)
Updates the given preview state taking into account the state of the constraint handler.
mxGraphAbstractHierarchyCell.prototype.getPreviousLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyEdge.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyNode.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxEventObject.prototype.getProperties = function()
Returns properties.
mxEventObject.prototype.getProperty = function(key)
Returns the property for the given key.
mxCircleLayout.prototype.getRadius = function(count,
max)
Returns the radius to be used for the given vertex count.
mxGraphHierarchyNode.prototype.getRankValue = function(layer)
Returns the integer value of the layer that this node resides in
mxGraphView.prototype.getRelativePoint = function(edgeState,
x,
y)
Gets the relative point that describes the given, absolute label position for the given edge state.
mxGraph.prototype.getRemovedCellsForChanges = function(changes)
Returns the cells that have been removed from the model.
mxGraphModel.prototype.getRoot = function(cell)
Returns the root of the model or the topmost parent of the given cell.
mxPrintPreview.prototype.getRoot = function()
Returns the root cell for painting the graph.
mxEditor.prototype.getRootTitle = function ()
Returns the string value of the root cell in mxGraph.model.
getRotatedPoint: function(pt,
cos,
sin,
c)
Rotates the given point by the given cos and sin.
mxPolyline.prototype.getRotation = function()
Returns 0.
mxShape.prototype.getRotation = function()
Returns the rotation from the style.
mxGraphView.prototype.getRoutingCenterX = function (state)
Returns the x-coordinate of the center point for automatic routing.
mxGraphView.prototype.getRoutingCenterY = function (state)
Returns the y-coordinate of the center point for automatic routing.
mxGraphView.prototype.getScale = function()
Returns the scale.
getScaleForPageCount: function(pageCount,
graph,
pageFormat,
border)
Returns the scale to be used for printing the graph with the given bounds across the specifies number of pages with the given format.
getScrollOrigin: function(node)
Returns the top, left corner of the viewrect as an mxPoint.
mxVertexHandler.prototype.getSelectionBounds = function(state)
Returns the mxRectangle that defines the bounds of the selection border.
mxGraph.prototype.getSelectionCell = function()
Returns the first cell from the array of selected mxCells.
mxGraph.prototype.getSelectionCells = function()
Returns the array of selected mxCells.
mxGraph.prototype.getSelectionCellsForChanges = function(changes)
Returns the cells to be selected for the given array of changes.
mxEdgeHandler.prototype.getSelectionColor = function()
Returns mxConstants.EDGE_SELECTION_COLOR.
mxVertexHandler.prototype.getSelectionColor = function()
Returns mxConstants.VERTEX_SELECTION_COLOR.
mxGraph.prototype.getSelectionCount = function()
Returns the number of selected cells.
mxGraph.prototype.getSelectionModel = function()
Returns the mxGraphSelectionModel that contains the selection.
mxEdgeHandler.prototype.getSelectionPoints = function(state)
Returns the list of points that defines the selection stroke.
mxEdgeHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.EDGE_SELECTION_STROKEWIDTH.
mxVertexHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.VERTEX_SELECTION_STROKEWIDTH.
mxCellRenderer.prototype.getShape = function(name)
Returns the shape for the given name from defaultShapes.
mxCellRenderer.prototype.getShapeConstructor = function(state)
Returns the constructor to be used for creating the shape.
mxPolyline.prototype.getShapeRotation = function()
Returns 0.
mxShape.prototype.getShapeRotation = function()
Returns the actual rotation of the shape.
mxText.prototype.getShapeRotation = function()
Returns 0 to avoid using rotation in the canvas via updateTransform.
mxCellRenderer.prototype.getShapesForState = function(state)
Returns the mxShapes for the given cell state in the order in which they should appear in the DOM.
getSizeForString: function(text,
fontSize,
fontFamily,
textWidth)
Returns an mxRectangle with the size (width and height in pixels) of the given string.
mxEdgeHandler.prototype.getSnapToTerminalTolerance = function()
Returns the tolerance for the guides.
getSource: function(evt)
Returns the event’s target or srcElement depending on the browser.
mxMouseEvent.prototype.getSource = function()
Returns the target DOM element using mxEvent.getSource for evt.
mxOutline.prototype.getSourceContainerSize = function()
Returns the size of the source container.
mxConnectionHandler.prototype.getSourcePerimeterPoint = function(state,
next,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxText.prototype.getSpacing = function()
Returns the spacing as an mxPoint.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxGraph.prototype.getStartSize = function(swimlane)
Returns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.
mxCellMarker.prototype.getState = function(me)
Uses getCell, getStateToMark and intersects to return the mxCellState for the given mxMouseEvent.
mxGraphView.prototype.getState = function(cell,
create)
Returns the mxCellState for the given cell.
mxMouseEvent.prototype.getState = function()
Returns state.
Returns the state for the given touch event.
mxGraphView.prototype.getStates = function()
Returns states.
mxCellMarker.prototype.getStateToMark = function(state)
Returns the mxCellState to be marked for the given mxCellState under the mouse.
mxXmlRequest.prototype.getStatus = function()
Returns the status as a number, eg.
getStencil: function(name)
Returns the mxStencil for the given name.
codec.getStringValue = function(key,
value)
Returns the string for encoding the given value.
mxCell.prototype.getStyle = function()
Returns a string that describes the style.
mxGraphModel.prototype.getStyle = function(cell)
Returns the style of the given mxCell.
getStylename: function(style)
Returns the stylename in a style of the form [(stylename|key=value);] or an empty string if the given style does not contain a stylename.
getStylenames: function(style)
Returns the stylenames in a style of the form [(stylename|key=value);] or an empty array if the given style does not contain any stylenames.
mxGraph.prototype.getStylesheet = function()
Returns the mxStylesheet that defines the style.
mxSvgCanvas2D.prototype.getSvgGradient = function(start,
end,
alpha1,
alpha2,
direction)
Private helper function to create SVG elements
mxImageShape.prototype.getSvgScreenOffset = function()
Disables offset in IE9 for crisper image output.
mxShape.prototype.getSvgScreenOffset = function()
Returns 0, or 0.5 if strokewidth % 2 == 1.
mxText.prototype.getSvgScreenOffset = function()
Disables offset in IE9 for crisper image output.
mxGraph.prototype.getSwimlane = function(cell)
Returns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.
mxGraph.prototype.getSwimlaneAt = function (x,
y,
parent)
Returns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
mxForm.prototype.getTable = function()
Returns the table that contains this form.
mxConnectionHandler.prototype.getTargetPerimeterPoint = function(state,
me)
Returns the perimeter point for the given target state.
mxEditor.prototype.getTemplate = function (name)
Returns the template for the given name.
mxCell.prototype.getTerminal = function(source)
Returns the source or target terminal.
mxGraphModel.prototype.getTerminal = function(edge,
isSource)
Returns the source or target mxCell of the given edge depending on the value of the boolean parameter.
mxGraph.prototype.getTerminalForPort = function(cell,
source)
Returns the terminal to be used for a given port.
mxGeometry.prototype.getTerminalPoint = function(isSource)
Returns the mxPoint representing the source or target point of this edge.
mxGraphView.prototype.getTerminalPort = function(state,
terminal,
source)
Returns an mxCellState that represents the source or target terminal or port for the given edge.
mxXmlRequest.prototype.getText = function()
Returns the response as a string.
getTextContent: function(node)
Returns the text content of the specified node.
mxShape.prototype.getTextRotation = function()
Returns the rotation for the text label.
mxText.prototype.getTextRotation = function()
Returns the rotation for the text label of the corresponding shape.
mxCellRenderer.prototype.getTextScale = function(state)
Returns the scaling used for the label of the given state
mxEditor.prototype.getTitle = function ()
Returns the string value for the current root of the diagram.
mxConstraintHandler.prototype.getTolerance = function()
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getTolerance = function()
Returns tolerance.
mxGraph.prototype.getTooltip = function(state,
node,
x,
y)
Returns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.
mxGraph.prototype.getTooltipForCell = function(cell)
Returns the string or DOM node to be used as the tooltip for the given cell.
mxElbowEdgeHandler.prototype.getTooltipForNode = function(node)
Returns the tooltip for the given node.
mxGraphModel.prototype.getTopmostCells = function(cells)
Returns the topmost cells of the hierarchy in an array that contains no descendants for each mxCell that it contains.
mxGraphView.prototype.getTranslate = function()
Returns the translate.
mxOutline.prototype.getTranslateForEvent = function(me)
Gets the translate for the given mouse event.
mxGraph.prototype.getTranslateForRoot = function(cell)
Returns the translation to be used if the given cell is the root cell as an mxPoint.
mxEditor.prototype.getUrlImage = function ()
Returns the URL to create the image with.
mxEditor.prototype.getUrlPost = function ()
Returns the URL to post the diagram to.
mxCellMarker.prototype.getValidState = function()
Returns the validState.
mxCell.prototype.getValue = function()
Returns the user object of the cell.
mxGraphModel.prototype.getValue = function(cell)
Returns the user object of the given mxCell using mxCell.getValue.
getValue: function(name)
Returns the value associated with the given name.
getValue: function(array,
key,
defaultValue)
Returns the value for the given key in the given associative array or the given default value if the value is null.
mxDictionary.prototype.getValues = function()
Returns all values as an array.
mxGraphLayout.prototype.getVertexBounds = function(cell)
Returns an mxRectangle that defines the bounds of the given cell or the bounding box if useBoundingBox is true.
mxGraph.prototype.getVerticalAlign = function(state)
Returns the vertical alignment for the given cell state.
mxGraph.prototype.getView = function()
Returns the mxGraphView that contains the mxCellStates.
getViewXml: function(graph,
scale,
cells,
x0,
y0)
mxCellState.prototype.getVisibleTerminal = function (source)
Returns the visible source or target terminal cell.
mxGraphView.prototype.getVisibleTerminal = function(edge,
source)
Returns the nearest ancestor terminal that is visible.
mxHierarchicalLayout.prototype.getVisibleTerminal = function(edge,
source)
Helper function to return visible terminal for edge allowing for ports
mxSwimlaneLayout.prototype.getVisibleTerminal = function(edge,
source)
Helper function to return visible terminal for edge allowing for ports
mxCellState.prototype.getVisibleTerminalState = function (source)
Returns the visible source or target terminal state.
Returns a VML dash pattern for the current dashPattern.
mxPrintPreview.prototype.getWindow = function()
Returns wnd.
mxGraphAbstractHierarchyCell.prototype.getX = function(layer)
Gets the value of x on the specified layer
mxMouseEvent.prototype.getX = function()
Returns evt.clientX.
mxWindow.prototype.getX = function()
Returns the current position on the x-axis.
getXml: function(node,
linefeed)
Returns the XML content of the specified node.
mxXmlRequest.prototype.getXml = function()
Returns the response as an XML document.
mxMouseEvent.prototype.getY = function()
Returns evt.clientY.
mxWindow.prototype.getY = function()
Returns the current position on the y-axis.
this.gradients
Local cache of gradients for quick lookups.
mxAutoSaveManager.prototype.graph
Reference to the enclosing mxGraph.
mxCellEditor.prototype.graph
Reference to the enclosing mxGraph.
mxCellHighlight.prototype.graph
Reference to the enclosing mxGraph.
mxCellMarker.prototype.graph
Reference to the enclosing mxGraph.
mxCellStatePreview.prototype.graph
Reference to the enclosing mxGraph.
mxConnectionHandler.prototype.graph
Reference to the enclosing mxGraph.
mxConstraintHandler.prototype.graph
Reference to the enclosing mxGraph.
mxEdgeHandler.prototype.graph
Reference to the enclosing mxGraph.
mxEditor.prototype.graph
Holds a mxGraph for displaying the diagram.
mxGraphHandler.prototype.graph
Reference to the enclosing mxGraph.
mxGraphLayout.prototype.graph
Reference to the enclosing mxGraph.
mxGraphSelectionModel.prototype.graph
Reference to the enclosing mxGraph.
mxGraphView.prototype.graph
Reference to the enclosing mxGraph.
mxGuide.prototype.graph
Reference to the enclosing mxGraph instance.
mxKeyHandler.prototype.graph
Reference to the mxGraph associated with this handler.
mxLayoutManager.prototype.graph
Reference to the enclosing mxGraph.
mxMorphing.prototype.graph
Specifies the delay between the animation steps.
mxPanningHandler.prototype.graph
Reference to the enclosing mxGraph.
mxPrintPreview.prototype.graph
Reference to the mxGraph that should be previewed.
mxSelectionCellsHandler.prototype.graph
Reference to the enclosing mxGraph.
mxSpaceManager.prototype.graph
Reference to the enclosing mxGraph.
mxSwimlaneManager.prototype.graph
Reference to the enclosing mxGraph.
mxTooltipHandler.prototype.graph
Reference to the enclosing mxGraph.
mxVertexHandler.prototype.graph
Reference to the enclosing mxGraph.
mxGraphView.prototype.graphBounds
mxRectangle that caches the scales, translated bounds of the current view.
mxDragSource.prototype.graphContainsEvent = function(graph,
evt)
Returns true if the given graph contains the given event.
mxAutoSaveManager.prototype.graphModelChanged = function(changes)
Invoked when the graph model has changed.
mxGraph.prototype.graphModelChanged = function(changes)
Called when the graph model changes.
mxEditor.prototype.graphRenderHint
Holds the render hint used for creating the graph in setGraphContainer.
Renderhint to be used for the outline graph.
mxMouseEvent.prototype.graphX
Holds the x-coordinate of the event in the graph.
mxMouseEvent.prototype.graphY
Holds the y-coordinate of the event in the graph.
mxDragSource.prototype.gridEnabled
Specifies if the grid should be allowed.
mxGraph.prototype.gridEnabled
Specifies if the grid is enabled.
mxGraph.prototype.gridSize
Specifies the grid size.
Specifies the event name for groupCells.
Fires between begin- and endUpdate in groupCells.
mxEditor.prototype.groupCells = function ()
Invokes createGroup to create a new group cell and the invokes mxGraph.groupCells, using the grid size of the graph as the spacing in the group’s content area.
mxGraph.prototype.groupCells = function(group,
border,
cells)
Adds the cells into the given group.
mxCompactTreeLayout.prototype.groupPadding
Padding added to resized parents.
mxCoordinateAssignment.prototype.groupPadding
Padding added to resized parents
mxRectangle.prototype.grow = function(amount)
Grows the rectangle by the given amount, that is, this method subtracts the given amount from the x- and y-coordinates and adds twice the amount to the width and height.
mxGraphHandler.prototype.guide
Holds the mxGuide instance that is used for alignment.
Defines the color to be used for the guidelines in mxGraphHandler.
Defines the strokewidth to be used for the guidelines in mxGraphHandler.
mxDragSource.prototype.guidesEnabled
Specifies if mxGuide should be enabled.
mxGraphHandler.prototype.guidesEnabled
Specifies if other cells should be used for snapping the right, center or left side of the current selection.
diff --git a/docs/js-api/index/General8.html b/docs/js-api/index/General8.html index 8da126486..06bad6504 100644 --- a/docs/js-api/index/General8.html +++ b/docs/js-api/index/General8.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
H
 h0, mxStencil
 HANDLE_FILLCOLOR, mxConstants
 HANDLE_SIZE, mxConstants
 HANDLE_STROKECOLOR, mxConstants
 handleImage
 handleMouseOut, mxPanningManager
 handler, mxDefaultKeyHandler
 handlers, mxSelectionCellsHandler
 handlingResize, mxDivResizer
 hashCode, mxGraphHierarchyNode
 hasScrollbars, mxUtils
 hasValidState, mxCellMarker
 height
 help, mxEditor
 helpResource, mxEditor
 helpWidth, mxEditor
 helpWindowImage, mxEditor
 hide
 HIDE
 hideMenu, mxPopupMenu
 hideOnHover, mxTooltipHandler
 hideProperties, mxEditor
 hideSizers, mxVertexHandler
 hideSubmenu, mxPopupMenu
 hideTooltip, mxTooltipHandler
 HIGHLIGHT_COLOR, mxConstants
 HIGHLIGHT_STROKEWIDTH, mxConstants
 highlightColor, mxConstraintHandler
 highlightDropTargets, mxDragSource
 highlightEnabled, mxGraphHandler
 history, mxUndoManager
 hitsSwimlaneContent, mxGraph
 home, mxGraph
 horizontal
 horizontalFlow, mxEditor
 horizontalLayout, mxCompactTreeLayout
 hotspot, mxCellMarker
 hotspotEnabled, mxCellMarker
 htmlEntities, mxUtils
 htmlLabels, mxGraph
 htmlPreview, mxGraphHandler
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
H
 h0, mxStencil
 HANDLE_FILLCOLOR, mxConstants
 HANDLE_SIZE, mxConstants
 HANDLE_STROKECOLOR, mxConstants
 handleImage
 handleMouseOut, mxPanningManager
 handler, mxDefaultKeyHandler
 handlers, mxSelectionCellsHandler
 handlingResize, mxDivResizer
 hashCode, mxGraphHierarchyNode
 hasScrollbars, mxUtils
 hasValidState, mxCellMarker
 height
 help, mxEditor
 helpResource, mxEditor
 helpWidth, mxEditor
 helpWindowImage, mxEditor
 hide
 HIDE
 hideMenu, mxPopupMenu
 hideOnHover, mxTooltipHandler
 hideProperties, mxEditor
 hideSizers, mxVertexHandler
 hideSubmenu, mxPopupMenu
 hideTooltip, mxTooltipHandler
 HIGHLIGHT_COLOR, mxConstants
 HIGHLIGHT_STROKEWIDTH, mxConstants
 highlightColor, mxConstraintHandler
 highlightDropTargets, mxDragSource
 highlightEnabled, mxGraphHandler
 history, mxUndoManager
 hitsSwimlaneContent, mxGraph
 home, mxGraph
 horizontal
 horizontalFlow, mxEditor
 horizontalLayout, mxCompactTreeLayout
 hotspot, mxCellMarker
 hotspotEnabled, mxCellMarker
 htmlEntities, mxUtils
 htmlLabels, mxGraph
 htmlPreview, mxGraphHandler
-
mxStencil.prototype.h0
Holds the height of the shape.
Defines the color to be used for the handle fill color.
Defines the default size for handles.
Defines the color to be used for the handle stroke color.
mxEdgeHandler.prototype.handleImage
Optional mxImage to be used as handles.
mxVertexHandler.prototype.handleImage
Optional mxImage to be used as handles.
mxPanningManager.prototype.handleMouseOut
Specifies if mouse events outside of the component should be handled.
mxDefaultKeyHandler.prototype.handler
Holds the mxKeyHandler for key event handling.
mxSelectionCellsHandler.prototype.handlers
mxDictionary that maps from cells to handlers.
Boolean specifying if the width should be updated.
mxGraphHierarchyNode.prototype.hashCode
Assigns a unique hashcode for each node.
hasScrollbars: function(node)
Returns true if the overflow CSS property of the given node is either scroll or auto.
mxCellMarker.prototype.hasValidState = function()
Returns true if validState is not null.
mxGraphAbstractHierarchyCell.prototype.height
The height of this cell
mxImage.prototype.height
Integer that specifies the height of the image.
mxRectangle.prototype.height
Holds the height of the rectangle.
mxEditor.prototype.help
Holds the mxWindow created in showHelp.
mxEditor.prototype.helpResource
Specifies the resource key for the help window title.
mxEditor.prototype.helpWidth
Specifies the width of the help window in pixels.
mxEditor.prototype.helpWindowImage
Icon for the help window.
mxCellHighlight.prototype.hide = function()
Resets the state of the cell marker.
mxGuide.prototype.hide = function()
Hides all current guides.
mxTooltipHandler.prototype.hide = function()
Hides the tooltip and resets the timer.
mxWindow.prototype.hide = function()
Hides the window.
Specifies the event name for hide.
Fires after the window is hidden.
mxPopupMenu.prototype.hideMenu = function()
Removes the menu and all submenus.
mxTooltipHandler.prototype.hideOnHover
Specifies if the tooltip should be hidden if the mouse is moved over the current cell.
mxEditor.prototype.hideProperties = function ()
Hides the properties dialog.
mxVertexHandler.prototype.hideSizers = function()
Hides all sizers except.
mxPopupMenu.prototype.hideSubmenu = function(parent)
Removes all submenus inside the given parent.
mxTooltipHandler.prototype.hideTooltip = function()
Hides the tooltip.
Defines the color to be used for the cell highlighting.
Defines the strokewidth to be used for the highlights.
mxConstraintHandler.prototype.highlightColor
Specifies the color for the highlight.
mxDragSource.prototype.highlightDropTargets
Specifies if drop targets should be highlighted.
mxGraphHandler.prototype.highlightEnabled
Specifies if drop targets under the mouse should be enabled.
mxUndoManager.prototype.history
Array that contains the steps of the command history.
mxGraph.prototype.hitsSwimlaneContent = function(swimlane,
x,
y)
Returns true if the given coordinate pair is inside the content are of the given swimlane.
mxGraph.prototype.home = function()
Uses the root of the model as the root of the displayed cell hierarchy and selects the previous root.
mxCompactTreeLayout.prototype.horizontal
Specifies the orientation of the layout.
mxGuide.prototype.horizontal
Specifies if horizontal guides are enabled.
mxPartitionLayout.prototype.horizontal
Boolean indicating the direction in which the space is partitioned.
mxStackLayout.prototype.horizontal
Specifies the orientation of the layout.
mxSwimlaneManager.prototype.horizontal
Specifies the orientation of the swimlanes.
mxEditor.prototype.horizontalFlow
Specifies the direction of the flow in the diagram.
mxCompactTreeLayout.prototype.horizontalLayout = function(node,
x0,
y0,
bounds)
mxCellMarker.prototype.hotspot
Specifies the portion of the width and height that should trigger a highlight.
mxCellMarker.prototype.hotspotEnabled
Specifies if the hotspot is enabled.
htmlEntities: function(s,
newline)
Replaces characters (less than, greater than, newlines and quotes) with their HTML entities in the given string and returns the result.
mxGraph.prototype.htmlLabels
Specifies the return value for isHtmlLabel.
mxGraphHandler.prototype.htmlPreview
Specifies if the graph container should be used for preview.
+
mxStencil.prototype.h0
Holds the height of the shape.
Defines the color to be used for the handle fill color.
Defines the default size for handles.
Defines the color to be used for the handle stroke color.
mxEdgeHandler.prototype.handleImage
Optional mxImage to be used as handles.
mxVertexHandler.prototype.handleImage
Optional mxImage to be used as handles.
mxPanningManager.prototype.handleMouseOut
Specifies if mouse events outside of the component should be handled.
mxDefaultKeyHandler.prototype.handler
Holds the mxKeyHandler for key event handling.
mxSelectionCellsHandler.prototype.handlers
mxDictionary that maps from cells to handlers.
Boolean specifying if the width should be updated.
mxGraphHierarchyNode.prototype.hashCode
Assigns a unique hashcode for each node.
hasScrollbars: function(node)
Returns true if the overflow CSS property of the given node is either scroll or auto.
mxCellMarker.prototype.hasValidState = function()
Returns true if validState is not null.
mxGraphAbstractHierarchyCell.prototype.height
The height of this cell
mxImage.prototype.height
Integer that specifies the height of the image.
mxRectangle.prototype.height
Holds the height of the rectangle.
mxEditor.prototype.help
Holds the mxWindow created in showHelp.
mxEditor.prototype.helpResource
Specifies the resource key for the help window title.
mxEditor.prototype.helpWidth
Specifies the width of the help window in pixels.
mxEditor.prototype.helpWindowImage
Icon for the help window.
mxCellHighlight.prototype.hide = function()
Resets the state of the cell marker.
mxGuide.prototype.hide = function()
Hides all current guides.
mxTooltipHandler.prototype.hide = function()
Hides the tooltip and resets the timer.
mxWindow.prototype.hide = function()
Hides the window.
Specifies the event name for hide.
Fires after the window is hidden.
mxPopupMenu.prototype.hideMenu = function()
Removes the menu and all submenus.
mxTooltipHandler.prototype.hideOnHover
Specifies if the tooltip should be hidden if the mouse is moved over the current cell.
mxEditor.prototype.hideProperties = function ()
Hides the properties dialog.
mxVertexHandler.prototype.hideSizers = function()
Hides all sizers except.
mxPopupMenu.prototype.hideSubmenu = function(parent)
Removes all submenus inside the given parent.
mxTooltipHandler.prototype.hideTooltip = function()
Hides the tooltip.
Defines the color to be used for the cell highlighting.
Defines the strokewidth to be used for the highlights.
mxConstraintHandler.prototype.highlightColor
Specifies the color for the highlight.
mxDragSource.prototype.highlightDropTargets
Specifies if drop targets should be highlighted.
mxGraphHandler.prototype.highlightEnabled
Specifies if drop targets under the mouse should be enabled.
mxUndoManager.prototype.history
Array that contains the steps of the command history.
mxGraph.prototype.hitsSwimlaneContent = function(swimlane,
x,
y)
Returns true if the given coordinate pair is inside the content are of the given swimlane.
mxGraph.prototype.home = function()
Uses the root of the model as the root of the displayed cell hierarchy and selects the previous root.
mxCompactTreeLayout.prototype.horizontal
Specifies the orientation of the layout.
mxGuide.prototype.horizontal
Specifies if horizontal guides are enabled.
mxPartitionLayout.prototype.horizontal
Boolean indicating the direction in which the space is partitioned.
mxStackLayout.prototype.horizontal
Specifies the orientation of the layout.
mxSwimlaneManager.prototype.horizontal
Specifies the orientation of the swimlanes.
mxEditor.prototype.horizontalFlow
Specifies the direction of the flow in the diagram.
mxCompactTreeLayout.prototype.horizontalLayout = function(node,
x0,
y0,
bounds)
mxCellMarker.prototype.hotspot
Specifies the portion of the width and height that should trigger a highlight.
mxCellMarker.prototype.hotspotEnabled
Specifies if the hotspot is enabled.
htmlEntities: function(s,
newline)
Replaces characters (less than, greater than, newlines and quotes) with their HTML entities in the given string and returns the result.
mxGraph.prototype.htmlLabels
Specifies the return value for isHtmlLabel.
mxGraphHandler.prototype.htmlPreview
Specifies if the graph container should be used for preview.
diff --git a/docs/js-api/index/General9.html b/docs/js-api/index/General9.html index f5bca0a03..691b2d8fb 100644 --- a/docs/js-api/index/General9.html +++ b/docs/js-api/index/General9.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
I
 id
 idrefs, mxObjectCodec
 ids, mxGraphHierarchyEdge
 ignoreCell, mxPanningHandler
 ignoreClippedStringSize, mxText
 ignoredChanges, mxAutoSaveManager
 ignoreMouseDown, mxConnectionHandler
 ignoreScrollbars, mxGraph
 ignoreStringSize, mxText
 ignoreTouchEvents, mxTooltipHandler
 image
 imageBasePath
 imageBundles, mxGraph
 images, mxImageBundle
 imageSize
 importCells, mxGraph
 importEnabled, mxGraph
 In-place editing, mxGraph
 include, mxClient
 includeOverlays, mxImageExport
 index, mxVertexHandler
 indexOf, mxUtils
 indexOfNextAdd, mxUndoManager
 indexOfStylename, mxUtils
 indicatorSize, mxLabel
 indicatorSpacing, mxLabel
 indices, mxFastOrganicLayout
 info, mxLog
 init
 initBend, mxEdgeHandler
 initControl, mxCellRenderer
 initialCoords, mxCoordinateAssignment
 initializeLabel, mxCellRenderer
 initializeOverlay, mxCellRenderer
 initializeShape, mxCellRenderer
 initialRank
 initialTemp, mxFastOrganicLayout
 initialTouchX, mxGraph
 initialTouchY, mxGraph
 initialX, mxCoordinateAssignment
 insert
 insertCount, mxClipboard
 insertEdge
 insertFunction, mxEditor
 insertIntoGraph, mxCodec
 insertShapesAfter, mxCellRenderer
 insertVertex, mxGraph
 installChangeHandler, mxEditor
 installCloseHandler, mxWindow
 installDblClickHandler, mxEditor
 installDrillHandler, mxEditor
 installDropHandler, mxDefaultToolbar
 installInsertHandler, mxEditor
 installListeners
 installMaximizeHandler, mxWindow
 installMinimizeHandler, mxWindow
 installMoveHandler, mxWindow
 installOverlayListeners, mxCellRenderer
 installUndoHandler, mxEditor
 interHierarchySpacing
 interRankCellSpacing
 intersection, mxUtils
 intersects
 intraCellSpacing
 invalid, mxCellState
 INVALID_COLOR, mxConstants
 INVALID_CONNECT_TARGET_COLOR, mxConstants
 invalidate, mxGraphView
 invalidColor, mxCellMarker
 invert
 invokesStopCellEditing, mxGraph
 IS_FF, mxClient
 IS_GC, mxClient
 IS_IE, mxClient
 IS_IE6, mxClient
 IS_IOS, mxClient
 IS_LOCAL, mxClient
 IS_MAC, mxClient
 IS_MT, mxClient
 IS_NS, mxClient
 IS_OP, mxClient
 IS_OT, mxClient
 IS_POINTER, mxClient
 IS_QUIRKS, mxClient
 IS_SF, mxClient
 IS_SVG, mxClient
 IS_TOUCH, mxClient
 IS_VML, mxClient
 isAddEnabled, mxSwimlaneManager
 isAddPointEvent, mxEdgeHandler
 isAllowDanglingEdges, mxGraph
 isAllowEval, mxGraphView
 isAllowLoops, mxGraph
 isAllowOverlapParent, mxGraph
 isAltDown, mxEvent
 isAncestor
 isAncestorNode, mxUtils
 isAutoSizeCell, mxGraph
 isAutoSizeCells, mxGraph
 isBinary, mxXmlRequest
 isBooleanAttribute, mxObjectCodec
 isBrowserSupported, mxClient
 isBubbling, mxLayoutManager
 isBundleSupported, mxResources
 isCellBendable, mxGraph
 isCellCloneable, mxGraph
 isCellCodec
 isCellCollapsed, mxGraph
 isCellConnectable, mxGraph
 isCellDeletable, mxGraph
 isCellDisconnectable, mxGraph
 isCellEditable, mxGraph
 isCellFoldable, mxGraph
 isCellHorizontal, mxSwimlaneManager
 isCellIgnored, mxSpaceManager
 isCellLocked, mxGraph
 isCellMovable, mxGraph
 isCellResizable, mxGraph
 isCellRotatable, mxGraph
 isCellsBendable, mxGraph
 isCellsCloneable, mxGraph
 isCellsDeletable, mxGraph
 isCellsDisconnectable, mxGraph
 isCellsEditable, mxGraph
 isCellSelectable, mxGraph
 isCellSelected, mxGraph
 isCellShiftable, mxSpaceManager
 isCellsLocked, mxGraph
 isCellsMovable, mxGraph
 isCellsResizable, mxGraph
 isCellsSelectable, mxGraph
 isCellVisible, mxGraph
 isCloneEnabled, mxGraphHandler
 isCloneEvent, mxGraph
 isCloneInvalidEdges, mxGraph
 isCollapsed
 isConnectable
 isConnectableCell
 isConnectableEdges, mxGraph
 isConnecting, mxConnectionHandler
 isConstrainChild, mxGraph
 isConstrainChildren, mxGraph
 isConstrainChildrenOnResize, mxGraph
 isConstrainedEvent
 isConsumed
 isContainerEvent, mxGraphView
 isControlDown
 isCreateIds, mxGraphModel
 isCreateTarget, mxConnectionHandler
 isDelayedSelection, mxGraphHandler
 isDisconnectOnMove, mxGraph
 isDropEnabled, mxGraph
 isEdge
 isEdgeIgnored, mxGraphLayout
 isEdgeLabelsMovable, mxGraph
 isEdgeValid, mxGraph
 isEditing, mxGraph
 isEmpty
 isEnabled
 isEnabledForEvent, mxGuide
 isEnterStopsCellEditing, mxGraph
 isEscapeEnabled, mxGraph
 isEventIgnored
 isEventsEnabled, mxEventSource
 isEventSource, mxCellEditor
 isEventSourceIgnored, mxGraph
 isExcluded
 isExtendParent, mxGraph
 isExtendParents
 isExtendParentsOnAdd, mxGraph
 isForcePanningEvent, mxPanningHandler
 isForceRubberbandEvent, mxRubberband
 isGraphEvent, mxKeyHandler
 isGridEnabled
 isGridEnabledEvent, mxGraph
 isGuidesEnabled, mxDragSource
 isHandleEnabled, mxEdgeHandler
 isHandleVisible, mxEdgeHandler
 isHideLabel, mxCellEditor
 isHideOnHover, mxTooltipHandler
 isHorizontal
 isHotspotEnabled, mxCellMarker
 isHtmlAllowed
 isHtmlLabel, mxGraph
 isHtmlLabels, mxGraph
 isImmediateConnectSource, mxConnectionHandler
 isInvokesStopCellEditing, mxGraph
 isLabelClipped, mxGraph
 isLabelEvent, mxCellRenderer
 isLabelMovable, mxGraph
 isLayer, mxGraphModel
 isLeftMouseButton, mxEvent
 isLivePreviewBorder, mxVertexHandler
 isLoop, mxGraph
 isMenuShowing, mxPopupMenu
 isMetaDown, mxEvent
 isModified
 isMouseDown, mxGraph
 isMouseEvent, mxEvent
 isMoveable, mxFastOrganicLayout
 isMoveEnabled, mxGraphHandler
 isMoveIconToFrontForState, mxConnectionHandler
 isMultigraph, mxGraph
 isNaN, mxUtils
 isNode, mxUtils
 isNumeric, mxUtils
 isNumericAttribute, mxObjectCodec
 isOrthogonal, mxGraph
 isPaintBoundsInverted
 isPanningEnabled, mxPanningHandler
 isPanningTrigger, mxPanningHandler
 isParseVml
 isPopupTrigger
 isPort
 isPortsEnabled, mxGraph
 isPropertiesVisible, mxEditor
 isReady, mxXmlRequest
 isRecursiveResize, mxGraph
 isReference
 isRelativeUrl, mxUrlConverter
 isRemoveCellsFromParent, mxGraphHandler
 isRemovePointEvent, mxEdgeHandler
 isRendering, mxGraphView
 isResizable, mxWindow
 isResizeContainer, mxGraph
 isResizeEnabled, mxSwimlaneManager
 isReversed, mxGraphHierarchyEdge
 isRightMouseButton, mxEvent
 isRoot, mxGraphModel
 isScrollEvent, mxGraphView
 isSelected, mxGraphSelectionModel
 isSelectEnabled, mxGraphHandler
 isSelectionDashed
 isSelectionEmpty, mxGraph
 isSelectOnPopup, mxPanningHandler
 isShapeEvent, mxCellRenderer
 isShiftDown, mxEvent
 isShiftDownwards, mxSpaceManager
 isShiftRightwards, mxSpaceManager
 isSignificant, mxUndoableEdit
 isSingleSelection, mxGraphSelectionModel
 isSizerVisible, mxVertexHandler
 isSource, mxMouseEvent
 isSplitEnabled, mxGraph
 isSplitTarget, mxGraph
 isStartEvent, mxConnectionHandler
 isStateIgnored, mxConstraintHandler
 isStopEvent, mxConnectionHandler
 isSwimlane, mxGraph
 isSwimlaneIgnored, mxSwimlaneManager
 isSwimlaneNesting, mxGraph
 isSwimlaneSelectionEnabled, mxGraph
 isSyntheticEventIgnored, mxGraph
 isTerminalPointMovable, mxGraph
 isToggleEvent, mxGraph
 isTouchEvent, mxEvent
 isValidAncestor, mxGraph
 isValidConnection, mxGraph
 isValidDropTarget, mxGraph
 isValidResponse, mxSession
 isValidRoot, mxGraph
 isValidSource
 isValidState, mxCellMarker
 isValidTarget
 isVertex
 isVertexIgnored
 isVertexLabelsMovable, mxGraph
 isVertexMovable, mxGraphLayout
 isVisible
 isVml, mxUtils
 isWrapping, mxGraph
 itemCount, mxPopupMenu
 iteration, mxFastOrganicLayout
 iterationsWithoutImprovement, mxMedianHybridCrossingReduction
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
I
 id
 idrefs, mxObjectCodec
 ids, mxGraphHierarchyEdge
 ignoreCell, mxPanningHandler
 ignoreClippedStringSize, mxText
 ignoredChanges, mxAutoSaveManager
 ignoreMouseDown, mxConnectionHandler
 ignoreScrollbars, mxGraph
 ignoreStringSize, mxText
 ignoreTouchEvents, mxTooltipHandler
 image
 imageBasePath
 imageBundles, mxGraph
 images, mxImageBundle
 imageSize
 importCells, mxGraph
 importEnabled, mxGraph
 In-place editing, mxGraph
 include, mxClient
 includeOverlays, mxImageExport
 index, mxVertexHandler
 indexOf, mxUtils
 indexOfNextAdd, mxUndoManager
 indexOfStylename, mxUtils
 indicatorSize, mxLabel
 indicatorSpacing, mxLabel
 indices, mxFastOrganicLayout
 info, mxLog
 init
 initBend, mxEdgeHandler
 initControl, mxCellRenderer
 initialCoords, mxCoordinateAssignment
 initializeLabel, mxCellRenderer
 initializeOverlay, mxCellRenderer
 initializeShape, mxCellRenderer
 initialRank
 initialTemp, mxFastOrganicLayout
 initialTouchX, mxGraph
 initialTouchY, mxGraph
 initialX, mxCoordinateAssignment
 insert
 insertCount, mxClipboard
 insertEdge
 insertFunction, mxEditor
 insertIntoGraph, mxCodec
 insertShapesAfter, mxCellRenderer
 insertVertex, mxGraph
 installChangeHandler, mxEditor
 installCloseHandler, mxWindow
 installDblClickHandler, mxEditor
 installDrillHandler, mxEditor
 installDropHandler, mxDefaultToolbar
 installInsertHandler, mxEditor
 installListeners
 installMaximizeHandler, mxWindow
 installMinimizeHandler, mxWindow
 installMoveHandler, mxWindow
 installOverlayListeners, mxCellRenderer
 installUndoHandler, mxEditor
 interHierarchySpacing
 interRankCellSpacing
 intersection, mxUtils
 intersects
 intraCellSpacing
 invalid, mxCellState
 INVALID_COLOR, mxConstants
 INVALID_CONNECT_TARGET_COLOR, mxConstants
 invalidate, mxGraphView
 invalidColor, mxCellMarker
 invert
 invokesStopCellEditing, mxGraph
 IS_FF, mxClient
 IS_GC, mxClient
 IS_IE, mxClient
 IS_IE6, mxClient
 IS_IOS, mxClient
 IS_LOCAL, mxClient
 IS_MAC, mxClient
 IS_MT, mxClient
 IS_NS, mxClient
 IS_OP, mxClient
 IS_OT, mxClient
 IS_POINTER, mxClient
 IS_QUIRKS, mxClient
 IS_SF, mxClient
 IS_SVG, mxClient
 IS_TOUCH, mxClient
 IS_VML, mxClient
 isAddEnabled, mxSwimlaneManager
 isAddPointEvent, mxEdgeHandler
 isAllowDanglingEdges, mxGraph
 isAllowEval, mxGraphView
 isAllowLoops, mxGraph
 isAllowOverlapParent, mxGraph
 isAltDown, mxEvent
 isAncestor
 isAncestorNode, mxUtils
 isAutoSizeCell, mxGraph
 isAutoSizeCells, mxGraph
 isBinary, mxXmlRequest
 isBooleanAttribute, mxObjectCodec
 isBrowserSupported, mxClient
 isBubbling, mxLayoutManager
 isBundleSupported, mxResources
 isCellBendable, mxGraph
 isCellCloneable, mxGraph
 isCellCodec
 isCellCollapsed, mxGraph
 isCellConnectable, mxGraph
 isCellDeletable, mxGraph
 isCellDisconnectable, mxGraph
 isCellEditable, mxGraph
 isCellFoldable, mxGraph
 isCellHorizontal, mxSwimlaneManager
 isCellIgnored, mxSpaceManager
 isCellLocked, mxGraph
 isCellMovable, mxGraph
 isCellResizable, mxGraph
 isCellRotatable, mxGraph
 isCellsBendable, mxGraph
 isCellsCloneable, mxGraph
 isCellsDeletable, mxGraph
 isCellsDisconnectable, mxGraph
 isCellsEditable, mxGraph
 isCellSelectable, mxGraph
 isCellSelected, mxGraph
 isCellShiftable, mxSpaceManager
 isCellsLocked, mxGraph
 isCellsMovable, mxGraph
 isCellsResizable, mxGraph
 isCellsSelectable, mxGraph
 isCellVisible, mxGraph
 isCloneEnabled, mxGraphHandler
 isCloneEvent, mxGraph
 isCloneInvalidEdges, mxGraph
 isCollapsed
 isConnectable
 isConnectableCell
 isConnectableEdges, mxGraph
 isConnecting, mxConnectionHandler
 isConstrainChild, mxGraph
 isConstrainChildren, mxGraph
 isConstrainChildrenOnResize, mxGraph
 isConstrainedEvent
 isConsumed
 isContainerEvent, mxGraphView
 isControlDown
 isCreateIds, mxGraphModel
 isCreateTarget, mxConnectionHandler
 isDelayedSelection, mxGraphHandler
 isDisconnectOnMove, mxGraph
 isDropEnabled, mxGraph
 isEdge
 isEdgeIgnored, mxGraphLayout
 isEdgeLabelsMovable, mxGraph
 isEdgeValid, mxGraph
 isEditing, mxGraph
 isEmpty
 isEnabled
 isEnabledForEvent, mxGuide
 isEnterStopsCellEditing, mxGraph
 isEscapeEnabled, mxGraph
 isEventIgnored
 isEventsEnabled, mxEventSource
 isEventSource, mxCellEditor
 isEventSourceIgnored, mxGraph
 isExcluded
 isExtendParent, mxGraph
 isExtendParents
 isExtendParentsOnAdd, mxGraph
 isForcePanningEvent, mxPanningHandler
 isForceRubberbandEvent, mxRubberband
 isGraphEvent, mxKeyHandler
 isGridEnabled
 isGridEnabledEvent, mxGraph
 isGuidesEnabled, mxDragSource
 isHandleEnabled, mxEdgeHandler
 isHandleVisible, mxEdgeHandler
 isHideLabel, mxCellEditor
 isHideOnHover, mxTooltipHandler
 isHorizontal
 isHotspotEnabled, mxCellMarker
 isHtmlAllowed
 isHtmlLabel, mxGraph
 isHtmlLabels, mxGraph
 isImmediateConnectSource, mxConnectionHandler
 isInvokesStopCellEditing, mxGraph
 isLabelClipped, mxGraph
 isLabelEvent, mxCellRenderer
 isLabelMovable, mxGraph
 isLayer, mxGraphModel
 isLeftMouseButton, mxEvent
 isLivePreviewBorder, mxVertexHandler
 isLoop, mxGraph
 isMenuShowing, mxPopupMenu
 isMetaDown, mxEvent
 isModified
 isMouseDown, mxGraph
 isMouseEvent, mxEvent
 isMoveable, mxFastOrganicLayout
 isMoveEnabled, mxGraphHandler
 isMoveIconToFrontForState, mxConnectionHandler
 isMultigraph, mxGraph
 isNaN, mxUtils
 isNode, mxUtils
 isNumeric, mxUtils
 isNumericAttribute, mxObjectCodec
 isOrthogonal, mxGraph
 isPaintBoundsInverted
 isPanningEnabled, mxPanningHandler
 isPanningTrigger, mxPanningHandler
 isParseVml
 isPopupTrigger
 isPort
 isPortsEnabled, mxGraph
 isPropertiesVisible, mxEditor
 isReady, mxXmlRequest
 isRecursiveResize, mxGraph
 isReference
 isRelativeUrl, mxUrlConverter
 isRemoveCellsFromParent, mxGraphHandler
 isRemovePointEvent, mxEdgeHandler
 isRendering, mxGraphView
 isResizable, mxWindow
 isResizeContainer, mxGraph
 isResizeEnabled, mxSwimlaneManager
 isReversed, mxGraphHierarchyEdge
 isRightMouseButton, mxEvent
 isRoot, mxGraphModel
 isScrollEvent, mxGraphView
 isSelected, mxGraphSelectionModel
 isSelectEnabled, mxGraphHandler
 isSelectionDashed
 isSelectionEmpty, mxGraph
 isSelectOnPopup, mxPanningHandler
 isShapeEvent, mxCellRenderer
 isShiftDown, mxEvent
 isShiftDownwards, mxSpaceManager
 isShiftRightwards, mxSpaceManager
 isSignificant, mxUndoableEdit
 isSingleSelection, mxGraphSelectionModel
 isSizerVisible, mxVertexHandler
 isSource, mxMouseEvent
 isSplitEnabled, mxGraph
 isSplitTarget, mxGraph
 isStartEvent, mxConnectionHandler
 isStateIgnored, mxConstraintHandler
 isStopEvent, mxConnectionHandler
 isSwimlane, mxGraph
 isSwimlaneIgnored, mxSwimlaneManager
 isSwimlaneNesting, mxGraph
 isSwimlaneSelectionEnabled, mxGraph
 isSyntheticEventIgnored, mxGraph
 isTerminalPointMovable, mxGraph
 isToggleEvent, mxGraph
 isTouchEvent, mxEvent
 isValidAncestor, mxGraph
 isValidConnection, mxGraph
 isValidDropTarget, mxGraph
 isValidResponse, mxSession
 isValidRoot, mxGraph
 isValidSource
 isValidState, mxCellMarker
 isValidTarget
 isVertex
 isVertexIgnored
 isVertexLabelsMovable, mxGraph
 isVertexMovable, mxGraphLayout
 isVisible
 isVml, mxUtils
 isWrapping, mxGraph
 itemCount, mxPopupMenu
 iteration, mxFastOrganicLayout
 iterationsWithoutImprovement, mxMedianHybridCrossingReduction
-
mxCell.prototype.id
Holds the Id.
mxGraphHierarchyNode.prototype.id
The object identity of the wrapped cell
mxObjectCodec.prototype.idrefs
Array containing the variable names that should be turned into or converted from references.
mxGraphHierarchyEdge.prototype.ids
The object identities of the wrapped cells
mxPanningHandler.prototype.ignoreCell
Specifies if panning should be active even if there is a cell under the mousepointer.
mxText.prototype.ignoreClippedStringSize
Specifies if the actual string size should be measured if a label is clipped.
mxAutoSaveManager.prototype.ignoredChanges
Counter for ignored changes in autosave.
mxConnectionHandler.prototype.ignoreMouseDown
Specifies if the connection handler should ignore the state of the mouse button when highlighting the source.
mxGraph.prototype.ignoreScrollbars
Specifies if the graph should automatically scroll regardless of the scrollbars.
mxText.prototype.ignoreStringSize
Specifies if the actual string size should be measured.
mxTooltipHandler.prototype.ignoreTouchEvents
Specifies if touch and pen events should be ignored.
mxCellOverlay.prototype.image
Holds the mxImage to be used as the icon.
mxSvgCanvas2D.prototype.image = function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.image = function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
mxXmlCanvas2D.prototype.image = function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
Basepath for all images URLs in the core without trailing slash.
mxDefaultPopupMenu.prototype.imageBasePath
Base path for all icon attributes in the config.
mxGraph.prototype.imageBundles
Holds the list of image bundles.
mxImageBundle.prototype.images
Maps from keys to images.
mxLabel.prototype.imageSize
Default width and height for the image.
mxSwimlane.prototype.imageSize
Default imagewidth and imageheight if an image but no imagewidth and imageheight are defined in the style.
mxGraph.prototype.importCells = function(cells,
dx,
dy,
target,
evt)
Clones and inserts the given cells into the graph using the move method and returns the inserted cells.
mxGraph.prototype.importEnabled
Specifies the return value for canImportCell.
include: function(src)
Dynamically adds a script node to the document header.
mxImageExport.prototype.includeOverlays
Specifies if overlays should be included in the export.
mxVertexHandler.prototype.index
Holds the index of the current handle.
indexOf: function(array,
obj)
Returns the index of obj in array or -1 if the array does not contains the given object.
mxUndoManager.prototype.indexOfNextAdd
Index of the element to be added next.
indexOfStylename: function(style,
stylename)
Returns the index of the given stylename in the given style.
mxLabel.prototype.indicatorSize
Default width and height for the indicicator.
mxLabel.prototype.indicatorSpacing
Default spacing between image and indicator.
mxFastOrganicLayout.prototype.indices
Hashtable from cells to local indices.
info: function()
Writes the current navigator information to the console.
mxCellEditor.prototype.init = function ()
Creates the textarea and installs the event listeners.
mxConnectionHandler.prototype.init = function()
Initializes the shapes required for this connection handler.
mxDefaultToolbar.prototype.init
Constructs the toolbar for the given container and installs a listener that updates the mxEditor.insertFunction on editor if an item is selected in the toolbar.
mxEdgeHandler.prototype.init = function()
Initializes the shapes required for this edge handler.
mxGraph.prototype.init = function(container)
Initializes the container and creates the respective datastructures.
mxGraphView.prototype.init = function()
Initializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.
mxLabel.prototype.init = function(container)
Initializes the shape and the indicator.
init: function()
Initializes the DOM node for the console.
mxOutline.prototype.init = function(container)
Initializes the outline inside the given container.
mxPopupMenuHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxPopupMenu.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxShape.prototype.init = function(container)
Initializes the shape by creaing the DOM node using create and adding it into the given container.
mxTooltipHandler.prototype.init = function()
Initializes the DOM nodes required for this tooltip handler.
mxVertexHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxWindow.prototype.init = function(x,
y,
width,
height,
style)
Initializes the DOM tree that represents the window.
mxEdgeHandler.prototype.initBend = function(bend)
Helper method to initialize the given bend.
mxCellRenderer.prototype.initControl = function(state,
control,
handleEvents,
clickHandler)
Initializes the given control and returns the corresponding DOM node.
mxCoordinateAssignment.prototype.initialCoords = function(facade,
model)
Sets up the layout in an initial positioning.
mxCellRenderer.prototype.initializeLabel = function(state)
Initiailzes the label with a suitable container.
mxCellRenderer.prototype.initializeOverlay = function(state,
overlay)
Initializes the given overlay.
mxCellRenderer.prototype.initializeShape = function(state)
Initializes the shape in the given state by calling its init method with the correct container.
mxGraphHierarchyModel.prototype.initialRank = function()
Basic determination of minimum layer ranking by working from from sources or sinks and working through each node in the relevant edge direction.
mxSwimlaneModel.prototype.initialRank = function()
Basic determination of minimum layer ranking by working from from sources or sinks and working through each node in the relevant edge direction.
mxFastOrganicLayout.prototype.initialTemp
Start value of temperature.
mxGraph.prototype.initialTouchX
Holds the x-coordinate of the intial touch event for tap and hold.
mxGraph.prototype.initialTouchY
Holds the y-coordinate of the intial touch event for tap and hold.
mxCoordinateAssignment.prototype.initialX
The minimum x position node placement starts at
mxCell.prototype.insert = function(child,
index)
Inserts the specified child into the child array at the specified index and updates the parent reference of the child.
mxDefaultToolbar.prototype.insert = function(vertex,
evt,
target)
Handles a drop by inserting the given vertex into the given parent cell or the default parent if no parent is specified.
Counts the number of times the clipboard data has been inserted.
mxCell.prototype.insertEdge = function(edge,
isOutgoing)
Inserts the specified edge into the edge array and returns the edge.
mxConnectionHandler.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Creates, inserts and returns the new edge for the given parameters.
mxGraph.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
mxEditor.prototype.insertFunction
Specifies the function to be used for inserting new cells into the graph.
mxCodec.prototype.insertIntoGraph = function(cell)
Inserts the given cell into its parent and terminal cells.
Inserts the given array of mxShapes after the given nodes in the DOM.
mxGraph.prototype.insertVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
mxEditor.prototype.installChangeHandler = function (graph)
Installs the listeners required to automatically validate the graph.
mxWindow.prototype.installCloseHandler = function()
Adds the closeImage as a new image node in closeImg and installs the close event.
mxEditor.prototype.installDblClickHandler = function (graph)
Overrides mxGraph.dblClick to invoke dblClickAction on a cell and reset the selection tool in the toolbar.
mxEditor.prototype.installDrillHandler = function (graph)
Installs listeners for dispatching the root event.
mxDefaultToolbar.prototype.installDropHandler = function (img,
dropHandler)
Makes the given img draggable using the given function for handling a drop event.
mxEditor.prototype.installInsertHandler = function (graph)
Installs the handler for invoking insertFunction if one is defined.
mxCellRenderer.prototype.installListeners = function(state)
Installs the event listeners for the given cell state.
mxGraphView.prototype.installListeners = function()
Installs the required listeners in the container.
mxWindow.prototype.installMaximizeHandler = function()
Installs the event listeners required for maximizing the window.
mxWindow.prototype.installMinimizeHandler = function()
Installs the event listeners required for minimizing the window.
mxWindow.prototype.installMoveHandler = function()
Installs the event listeners required for moving the window.
Installs the listeners for the given mxCellState, mxCellOverlay and mxShape that represents the overlay.
mxEditor.prototype.installUndoHandler = function (graph)
Adds the undoManager to the graph model and the view.
mxHierarchicalLayout.prototype.interHierarchySpacing
The spacing buffer between unconnected hierarchies.
mxSwimlaneLayout.prototype.interHierarchySpacing
The spacing buffer between unconnected hierarchies.
mxCoordinateAssignment.prototype.interRankCellSpacing
The minimum distance between cells on adjacent ranks.
mxHierarchicalLayout.prototype.interRankCellSpacing
The spacing buffer added between cell on adjacent layers.
mxSwimlaneLayout.prototype.interRankCellSpacing
The spacing buffer added between cell on adjacent layers.
intersection: function (x0,
y0,
x1,
y1,
x2,
y2,
x3,
y3)
Returns the intersection of two lines as an mxPoint.
mxCellMarker.prototype.intersects = function(state,
me)
Returns true if the given coordinate pair intersects the given state.
mxGraph.prototype.intersects = function(state,
x,
y)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
intersects: function(a,
b)
Returns true if the two rectangles intersect.
mxCoordinateAssignment.prototype.intraCellSpacing
The minimum buffer between cells on the same rank.
mxHierarchicalLayout.prototype.intraCellSpacing
The spacing buffer added between cells on the same layer.
mxSwimlaneLayout.prototype.intraCellSpacing
The spacing buffer added between cells on the same layer.
mxCellState.prototype.invalid
Specifies if the state is invalid.
Defines the color to be used for the coloring invalid connection previews.
Defines the color to be used for highlighting a invalid target cells for a new or changed connections.
mxGraphView.prototype.invalidate = function(cell,
recurse,
includeEdges)
Invalidates the state of the given cell, all its descendants and connected edges.
mxCellMarker.prototype.invalidColor
Holds the invalid marker color.
mxCompactTreeLayout.prototype.invert
Specifies if edge directions should be inverted.
mxGraphHierarchyEdge.prototype.invert = function(layer)
Inverts the direction of this internal edge(s)
mxGraph.prototype.invokesStopCellEditing
If true, when editing is to be stopped by way of selection changing, data in diagram changing or other means stopCellEditing is invoked, and changes are saved.
IS_FF: navigator.userAgent.indexOf('Firefox/') >
True if the current browser is Firefox.
IS_GC: navigator.userAgent.indexOf('Chrome/') >
True if the current browser is Google Chrome.
IS_IE: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer.
IS_IE6: navigator.userAgent.indexOf('MSIE 6') >
True if the current browser is Internet Explorer 6.x.
Returns true if the user agent is an iPad, iPhone or iPod.
True if the documents location does not start with http:// or https://.
True if the client is a Mac.
True if -moz-transform is available as a CSS style.
IS_NS: navigator.userAgent.indexOf('Mozilla/') >
True if the current browser is Netscape (including Firefox).
IS_OP: navigator.userAgent.indexOf('Opera/') >
True if the current browser is Opera.
True if -o-transform is available as a CSS style.
True if this device supports MS pointer events.
IS_QUIRKS: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer and it is in quirks mode.
IS_SF: navigator.userAgent.indexOf('AppleWebKit/') >
True if the current browser is Safari.
IS_SVG: navigator.userAgent.indexOf('Firefox/') >
True if the browser supports SVG.
True if this device supports touchstart/-move/-end events (Apple iOS, Android, Chromebook and Chrome Browser on touch-enabled devices).
IS_VML: navigator.appName.toUpperCase()
True if the browser supports VML.
mxSwimlaneManager.prototype.isAddEnabled = function()
Returns addEnabled.
mxEdgeHandler.prototype.isAddPointEvent = function(evt)
Returns true if the given event is a trigger to add a new point.
mxGraph.prototype.isAllowDanglingEdges = function()
Returns allowDanglingEdges as a boolean.
mxGraphView.prototype.isAllowEval = function()
Returns allowEval.
mxGraph.prototype.isAllowLoops = function()
Returns allowLoops as a boolean.
mxGraph.prototype.isAllowOverlapParent = function(cell)
Returns true if the given cell is allowed to be placed outside of the parents area.
isAltDown: function(evt)
Returns true if the alt key is pressed for the given event.
mxGraphHierarchyNode.prototype.isAncestor = function(otherNode)
mxGraphModel.prototype.isAncestor = function(parent,
child)
Returns true if the given parent is an ancestor of the given child.
isAncestorNode: function(ancestor,
child)
Returns true if the given ancestor is an ancestor of the given DOM node in the DOM.
mxGraph.prototype.isAutoSizeCell = function(cell)
Returns true if the size of the given cell should automatically be updated after a change of the label.
mxGraph.prototype.isAutoSizeCells = function()
Returns autoSizeCells.
mxXmlRequest.prototype.isBinary = function()
Returns binary.
mxObjectCodec.prototype.isBooleanAttribute = function(enc,
obj,
name,
value)
Returns true if the given object attribute is a boolean value.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
mxLayoutManager.prototype.isBubbling = function()
Returns true if a layout should bubble, that is, if the parent layout should be executed whenever a cell layout (layout of the children of a cell) has been executed.
Hook for subclassers to disable support for a given language.
mxGraph.prototype.isCellBendable = function(cell)
Returns true if the given cell is bendable.
mxGraph.prototype.isCellCloneable = function(cell)
Returns true if the given cell is cloneable.
codec.isCellCodec = function()
Returns true since this is a cell codec.
mxCodec.prototype.isCellCodec = function(codec)
Returns true if the given codec is a cell codec.
mxGraph.prototype.isCellCollapsed = function(cell)
Returns true if the given cell is collapsed in this graph.
mxGraph.prototype.isCellConnectable = function(cell)
Returns true if the given cell is connectable in this graph.
mxGraph.prototype.isCellDeletable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellDisconnectable = function(cell,
terminal,
source)
Returns true if the given cell is disconnectable from the source or target terminal.
mxGraph.prototype.isCellEditable = function(cell)
Returns true if the given cell is editable.
mxGraph.prototype.isCellFoldable = function(cell,
collapse)
Returns true if the given cell is foldable.
mxSwimlaneManager.prototype.isCellHorizontal = function(cell)
Returns true if the given cell is horizontal.
mxSpaceManager.prototype.isCellIgnored = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellLocked = function(cell)
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellMovable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellResizable = function(cell)
Returns true if the given cell is resizable.
mxGraph.prototype.isCellRotatable = function(cell)
Returns true if the given cell is rotatable.
mxGraph.prototype.isCellsBendable = function()
Returns cellsBenadable.
mxGraph.prototype.isCellsCloneable = function()
Returns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.
mxGraph.prototype.isCellsDeletable = function()
Returns cellsDeletable.
mxGraph.prototype.isCellsDisconnectable = function()
Returns cellsDisconnectable.
mxGraph.prototype.isCellsEditable = function()
Returns cellsEditable.
mxGraph.prototype.isCellSelectable = function(cell)
Returns true if the given cell is selectable.
mxGraph.prototype.isCellSelected = function(cell)
Returns true if the given cell is selected.
mxSpaceManager.prototype.isCellShiftable = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellsLocked = function()
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellsMovable = function()
Returns cellsMovable.
mxGraph.prototype.isCellsResizable = function()
Returns cellsResizable.
mxGraph.prototype.isCellsSelectable = function()
Returns cellsSelectable.
mxGraph.prototype.isCellVisible = function(cell)
Returns true if the given cell is visible in this graph.
mxGraphHandler.prototype.isCloneEnabled = function()
Returns cloneEnabled.
mxGraph.prototype.isCloneEvent = function(evt)
Returns true if the given event is a clone event.
mxGraph.prototype.isCloneInvalidEdges = function()
Returns cloneInvalidEdges as a boolean.
mxCell.prototype.isCollapsed = function()
Returns true if the cell is collapsed.
mxGraphModel.prototype.isCollapsed = function(cell)
Returns true if the given mxCell is collapsed.
mxCell.prototype.isConnectable = function()
Returns true if the cell is connectable.
mxGraph.prototype.isConnectable = function(connectable)
Returns true if the connectionHandler is enabled.
mxGraphModel.prototype.isConnectable = function(cell)
Returns true if the given mxCell is connectable.
mxConnectionHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxEdgeHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxGraph.prototype.isConnectableEdges = function()
Returns connectableEdges as a boolean.
mxConnectionHandler.prototype.isConnecting = function()
Returns true if the source terminal has been clicked and a new connection is currently being previewed.
mxGraph.prototype.isConstrainChild = function(cell)
Returns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.
mxGraph.prototype.isConstrainChildren = function()
Returns constrainChildren.
mxGraph.prototype.isConstrainChildrenOnResize = function()
Returns constrainChildrenOnResize.
mxGraph.prototype.isConstrainedEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxVertexHandler.prototype.isConstrainedEvent = function(me)
Returns true if the aspect ratio if the cell should be maintained.
isConsumed: function(evt)
Returns true if the event has been consumed using consume.
mxEventObject.prototype.isConsumed = function()
Returns true if the event has been consumed.
mxMouseEvent.prototype.isConsumed = function()
Returns consumed.
mxGraphView.prototype.isContainerEvent = function(evt)
Returns true if the event origin is one of the drawing panes or containers of the view.
isControlDown: function(evt)
Returns true if the control key is pressed for the given event.
mxKeyHandler.prototype.isControlDown = function(evt)
Returns true if the control key is pressed.
mxGraphModel.prototype.isCreateIds = function()
Returns createIds.
mxConnectionHandler.prototype.isCreateTarget = function()
Returns createTarget.
mxGraphHandler.prototype.isDelayedSelection = function(cell)
Hook to return true for delayed selections.
mxGraph.prototype.isDisconnectOnMove = function()
Returns disconnectOnMove as a boolean.
mxGraph.prototype.isDropEnabled = function()
Returns dropEnabled as a boolean.
mxCell.prototype.isEdge = function()
Returns true if the cell is an edge.
mxGraphAbstractHierarchyCell.prototype.isEdge = function()
Returns whether or not this cell is an edge
mxGraphHierarchyEdge.prototype.isEdge = function()
Returns true.
mxGraphModel.prototype.isEdge = function(cell)
Returns true if the given cell is an edge.
mxGraphLayout.prototype.isEdgeIgnored = function(edge)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isEdgeLabelsMovable = function()
Returns edgeLabelsMovable.
mxGraph.prototype.isEdgeValid = function(edge,
source,
target)
Checks if the return value of getEdgeValidationError for the given arguments is null.
mxGraph.prototype.isEditing = function(cell)
Returns true if the given cell is currently being edited.
mxCellStatePreview.prototype.isEmpty = function()
Returns true if this contains no entries.
isEmpty: function()
Returns true if the clipboard currently has not data stored.
mxGraphSelectionModel.prototype.isEmpty = function()
Returns true if no cells are currently selected.
mxUndoableEdit.prototype.isEmpty = function()
Returns true if the this edit contains no changes.
mxUndoManager.prototype.isEmpty = function()
Returns true if the history is empty.
mxAutoSaveManager.prototype.isEnabled = function()
Returns true if events are handled.
mxCellMarker.prototype.isEnabled = function()
Returns true if events are handled.
mxConnectionHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxConstraintHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxDragSource.prototype.isEnabled = function()
Returns enabled.
mxGraph.prototype.isEnabled = function()
Returns true if the graph is enabled.
mxGraphHandler.prototype.isEnabled = function()
Returns enabled.
mxKeyHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxLayoutManager.prototype.isEnabled = function()
Returns true if events are handled.
mxOutline.prototype.isEnabled = function()
Returns true if events are handled.
mxPopupMenu.prototype.isEnabled = function()
Returns true if events are handled.
mxRubberband.prototype.isEnabled = function()
Returns true if events are handled.
mxSelectionCellsHandler.prototype.isEnabled = function()
Returns enabled.
mxSpaceManager.prototype.isEnabled = function()
Returns true if events are handled.
mxSwimlaneManager.prototype.isEnabled = function()
Returns true if events are handled.
mxTooltipHandler.prototype.isEnabled = function()
Returns true if events are handled.
isEnabled: function()
Returns enabled.
mxGuide.prototype.isEnabledForEvent = function(evt)
Returns true if the guide should be enabled for the given native event.
mxGraph.prototype.isEnterStopsCellEditing = function()
Returns enterStopsCellEditing.
mxGraph.prototype.isEscapeEnabled = function()
Returns escapeEnabled.
mxConstraintHandler.prototype.isEventIgnored = function(me,
source)
Returns true if the given mxMouseEvent should be ignored in update.
mxGraph.prototype.isEventIgnored = function(evtName,
me,
sender)
Returns true if the event should be ignored in fireMouseEvent.
mxEventSource.prototype.isEventsEnabled = function()
Returns eventsEnabled.
mxCellEditor.prototype.isEventSource = function(evt)
Returns true if this editor is the source for the given native event.
mxGraph.prototype.isEventSourceIgnored = function(evtName,
me)
Returns true if the given mouse down event should be ignored.
codec.isExcluded = function(obj,
attr,
value,
isWrite)
Excludes user objects that are XML nodes.
mxObjectCodec.prototype.isExcluded = function(obj,
attr,
value,
write)
Returns true if the given attribute is to be ignored by the codec.
mxGraph.prototype.isExtendParent = function(cell)
Returns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.
mxGraph.prototype.isExtendParents = function()
Returns extendParents.
mxSpaceManager.prototype.isExtendParents = function()
Returns true if events are handled.
mxGraph.prototype.isExtendParentsOnAdd = function()
Returns extendParentsOnAdd.
mxPanningHandler.prototype.isForcePanningEvent = function(me)
Returns true if the given mxMouseEvent should start panning.
mxRubberband.prototype.isForceRubberbandEvent = function(me)
Returns true if the given mxMouseEvent should start rubberband selection.
mxKeyHandler.prototype.isGraphEvent = function(evt)
Returns true if the event should be processed by this handler, that is, if the event source is either the target, one of its direct children, a descendant of the mxGraph.container, or the mxGraph.cellEditor of the graph.
mxDragSource.prototype.isGridEnabled = function()
Returns gridEnabled.
mxGraph.prototype.isGridEnabled = function()
Returns gridEnabled as a boolean.
mxGraph.prototype.isGridEnabledEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxDragSource.prototype.isGuidesEnabled = function()
Returns guidesEnabled.
mxEdgeHandler.prototype.isHandleEnabled = function(index)
Creates the shape used to display the given bend.
mxEdgeHandler.prototype.isHandleVisible = function(index)
Returns true if the handle at the given index is visible.
mxCellEditor.prototype.isHideLabel = function(state)
Returns true if the label should be hidden while the cell is being edited.
mxTooltipHandler.prototype.isHideOnHover = function()
Returns hideOnHover.
mxCompactTreeLayout.prototype.isHorizontal = function()
Returns horizontal.
mxPartitionLayout.prototype.isHorizontal = function()
Returns horizontal.
mxStackLayout.prototype.isHorizontal = function()
Returns horizontal.
mxSwimlaneManager.prototype.isHorizontal = function()
Returns horizontal.
mxCellMarker.prototype.isHotspotEnabled = function()
Returns true if hotspot is used in intersects.
mxImageShape.prototype.isHtmlAllowed = function()
Returns true if HTML is allowed for this shape.
mxLabel.prototype.isHtmlAllowed = function()
Returns true for non-rounded, non-rotated shapes with no glass gradient and no indicator shape.
mxRectangleShape.prototype.isHtmlAllowed = function()
Returns true for non-rounded, non-rotated shapes with no glass gradient.
mxShape.prototype.isHtmlAllowed = function()
Returns true if HTML is allowed for this shape.
mxText.prototype.isHtmlAllowed = function()
Returns true if HTML is allowed for this shape.
mxGraph.prototype.isHtmlLabel = function(cell)
Returns true if the label must be rendered as HTML markup.
mxGraph.prototype.isHtmlLabels = function()
Returns htmlLabels.
mxConnectionHandler.prototype.isImmediateConnectSource = function(state)
Returns true if a tap on the given source state should immediately start connecting.
mxGraph.prototype.isInvokesStopCellEditing = function()
Returns invokesStopCellEditing.
mxGraph.prototype.isLabelClipped = function(cell)
Returns true if the overflow portion of labels should be hidden.
mxCellRenderer.prototype.isLabelEvent = function(state,
evt)
Returns true if the event is for the label of the given state.
mxGraph.prototype.isLabelMovable = function(cell)
Returns true if the given edges’s label is moveable.
mxGraphModel.prototype.isLayer = function(cell)
Returns true if isRoot returns true for the parent of the given cell.
isLeftMouseButton: function(evt)
Returns true if the left mouse button is pressed for the given event.
mxVertexHandler.prototype.isLivePreviewBorder = function()
Called if livePreview is enabled to check if a border should be painted.
mxGraph.prototype.isLoop = function(state)
Returns true if the given cell state is a loop.
mxPopupMenu.prototype.isMenuShowing = function()
Returns true if the menu is showing.
isMetaDown: function(evt)
Returns true if the meta key is pressed for the given event.
mxCellEditor.prototype.isModified = function()
Returns modified.
mxEditor.prototype.isModified = function ()
Returns modified.
mxGraph.prototype.isMouseDown
Holds the state of the mouse button.
isMouseEvent: function(evt)
Returns true if the event was generated using a mouse (not a pen or touch device).
mxFastOrganicLayout.prototype.isMoveable
Array of booleans representing the movable states of the vertices.
mxGraphHandler.prototype.isMoveEnabled = function()
Returns moveEnabled.
mxConnectionHandler.prototype.isMoveIconToFrontForState = function(state)
Returns true if the state has a HTML label in the graph’s container, otherwise it returns moveIconFront.
mxGraph.prototype.isMultigraph = function()
Returns multigraph as a boolean.
isNaN: function(value)
Returns true if the given value is of type number and isNaN returns true.
isNode: function(value,
nodeName,
attributeName,
attributeValue)
Returns true if the given value is an XML node with the node name and if the optional attribute has the specified value.
isNumeric: function(n)
Returns true if the specified value is numeric, that is, if it is not null, not an empty string, not a HEX number and isNaN returns false.
mxObjectCodec.prototype.isNumericAttribute = function(dec,
attr,
obj)
Returns true if the given XML attribute is a numeric value.
mxGraph.prototype.isOrthogonal = function(edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
mxPolyline.prototype.isPaintBoundsInverted = function()
Returns false.
mxShape.prototype.isPaintBoundsInverted = function()
Returns true if the bounds should be inverted.
mxSwimlane.prototype.isPaintBoundsInverted = function()
Overrides bounds inversion to maintain the bounds if the shape is rotated via the horizontal flag.
mxText.prototype.isPaintBoundsInverted = function()
Inverts the bounds if mxShape.isBoundsInverted returns true or if the horizontal style is false.
mxPanningHandler.prototype.isPanningEnabled = function()
Returns panningEnabled.
mxPanningHandler.prototype.isPanningTrigger = function(me)
Returns true if the given event is a panning trigger for the optional given cell.
mxShape.prototype.isParseVml = function()
Specifies if any VML should be added via insertAdjacentHtml to the DOM.
mxText.prototype.isParseVml = function()
Text shapes do not contain VML markup and do not need to be parsed.
isPopupTrigger: function(evt)
Returns true if the event is a popup trigger.
mxMouseEvent.prototype.isPopupTrigger = function()
Returns true if the event is a popup trigger.
mxPopupMenu.prototype.isPopupTrigger = function(me)
Returns true if the given event is a popupmenu trigger for the optional given cell.
mxGraph.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, the cell returned by getTerminalForPort should be used as the terminal and the port should be referenced by the ID in either the mxConstants.STYLE_SOURCE_PORT or the or the mxConstants.STYLE_TARGET_PORT.
mxHierarchicalLayout.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, its parent is the connecting vertex in terms of graph traversal
mxSwimlaneLayout.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, its parent is the connecting vertex in terms of graph traversal
mxGraph.prototype.isPortsEnabled = function()
Returns portsEnabled as a boolean.
mxEditor.prototype.isPropertiesVisible = function ()
Returns true if the properties dialog is currently visible.
mxXmlRequest.prototype.isReady = function()
Returns true if the response is ready.
mxGraph.prototype.isRecursiveResize = function()
Returns recursiveResize.
codec.isReference = function(obj,
attr,
value,
isWrite)
Returns true for the child attribute if the child cell had a previous parent or if we’re reading the child as an attribute rather than a child node, in which case it’s always a reference.
mxObjectCodec.prototype.isReference = function(obj,
attr,
value,
write)
Returns true if the given fieldname is to be treated as a textual reference (ID).
isRelativeUrl: function(url)
Returns true if the given URL is relative.
mxGraphHandler.prototype.isRemoveCellsFromParent = function()
Returns removeCellsFromParent.
mxEdgeHandler.prototype.isRemovePointEvent = function(evt)
Returns true if the given event is a trigger to remove a point.
mxGraphView.prototype.isRendering = function()
Returns rendering.
mxWindow.prototype.isResizable = function()
Returns true if the window is resizable.
mxGraph.prototype.isResizeContainer = function()
Returns resizeContainer.
mxSwimlaneManager.prototype.isResizeEnabled = function()
Returns resizeEnabled.
mxGraphHierarchyEdge.prototype.isReversed
Whether or not the direction of this edge has been reversed internally to create a DAG for the hierarchical layout
isRightMouseButton: function(evt)
Returns true if the right mouse button was pressed.
mxGraphModel.prototype.isRoot = function(cell)
Returns true if the given cell is the root of the model and a non-null value.
mxGraphView.prototype.isScrollEvent = function(evt)
Returns true if the event origin is one of the scrollbars of the container in IE.
mxGraphSelectionModel.prototype.isSelected = function(cell)
Returns true if the given mxCell is selected.
mxGraphHandler.prototype.isSelectEnabled = function()
Returns selectEnabled.
mxEdgeHandler.prototype.isSelectionDashed = function()
Returns mxConstants.EDGE_SELECTION_DASHED.
mxVertexHandler.prototype.isSelectionDashed = function()
Returns mxConstants.VERTEX_SELECTION_DASHED.
mxGraph.prototype.isSelectionEmpty = function()
Returns true if the selection is empty.
mxPopupMenuHandler.prototype.isSelectOnPopup = function(me)
Hook for returning if a cell should be selected for a given mxMouseEvent.
mxCellRenderer.prototype.isShapeEvent = function(state,
evt)
Returns true if the event is for the shape of the given state.
isShiftDown: function(evt)
Returns true if the shift key is pressed for the given event.
mxSpaceManager.prototype.isShiftDownwards = function()
Returns true if events are handled.
mxSpaceManager.prototype.isShiftRightwards = function()
Returns true if events are handled.
mxUndoableEdit.prototype.isSignificant = function()
Returns significant.
mxGraphSelectionModel.prototype.isSingleSelection = function()
Returns singleSelection as a boolean.
mxVertexHandler.prototype.isSizerVisible = function(index)
Returns true if the sizer for the given index is visible.
mxMouseEvent.prototype.isSource = function(shape)
Returns true if the given mxShape is the source of evt.
mxGraph.prototype.isSplitEnabled = function()
Returns splitEnabled as a boolean.
mxGraph.prototype.isSplitTarget = function(target,
cells,
evt)
Returns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.
mxConnectionHandler.prototype.isStartEvent = function(me)
Returns true if the given mouse down event should start this handler.
mxConstraintHandler.prototype.isStateIgnored = function(state,
source)
Returns true if the given state should be ignored.
mxConnectionHandler.prototype.isStopEvent = function(me)
Returns true if the given mouse up event should stop this handler.
mxGraph.prototype.isSwimlane = function (cell)
Returns true if the given cell is a swimlane in the graph.
mxSwimlaneManager.prototype.isSwimlaneIgnored = function(swimlane)
Returns true if the given swimlane should be ignored.
mxGraph.prototype.isSwimlaneNesting = function()
Returns swimlaneNesting as a boolean.
mxGraph.prototype.isSwimlaneSelectionEnabled = function()
Returns swimlaneSelectionEnabled as a boolean.
mxGraph.prototype.isSyntheticEventIgnored = function(evtName,
me,
sender)
Hook for ignoring synthetic mouse events after touchend in Firefox.
mxGraph.prototype.isTerminalPointMovable = function(cell,
source)
Returns true if the given terminal point is movable.
mxGraph.prototype.isToggleEvent = function(evt)
Returns true if the given event is a toggle event.
isTouchEvent: function(evt)
Returns true if the event was generated using a touch device (not a pen or mouse).
mxGraph.prototype.isValidAncestor = function(cell,
parent,
recurse)
Returns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.
mxGraph.prototype.isValidConnection = function(source,
target)
Returns true if the given target cell is a valid target for source.
mxGraph.prototype.isValidDropTarget = function(cell,
cells,
evt)
Returns true if the given cell is a valid drop target for the specified cells.
mxSession.prototype.isValidResponse = function(req)
Returns true if the response data in the given mxXmlRequest is valid.
mxGraph.prototype.isValidRoot = function(cell)
Returns true if the given cell is a valid root for the cell display hierarchy.
mxConnectionHandler.prototype.isValidSource = function(cell)
Returns mxGraph.isValidSource for the given source terminal.
mxGraph.prototype.isValidSource = function(cell)
Returns true if the given cell is a valid source for new connections.
mxCellMarker.prototype.isValidState = function(state)
Returns true if the given mxCellState is a valid state.
mxConnectionHandler.prototype.isValidTarget = function(cell)
Returns true.
mxGraph.prototype.isValidTarget = function(cell)
Returns isValidSource for the given cell.
mxCell.prototype.isVertex = function()
Returns true if the cell is a vertex.
mxGraphAbstractHierarchyCell.prototype.isVertex = function()
Returns whether or not this cell is a node
mxGraphHierarchyNode.prototype.isVertex = function()
Returns true.
mxGraphModel.prototype.isVertex = function(cell)
Returns true if the given cell is a vertex.
mxCompactTreeLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxFastOrganicLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxGraphLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isVertexLabelsMovable = function()
Returns vertexLabelsMovable.
mxGraphLayout.prototype.isVertexMovable = function(cell)
Returns a boolean indicating if the given mxCell is movable or bendable by the algorithm.
mxCell.prototype.isVisible = function()
Returns true if the cell is visibile.
mxGraphModel.prototype.isVisible = function(cell)
Returns true if the given mxCell is visible.
isVisible: function()
Returns true if the console is visible.
mxWindow.prototype.isVisible = function()
Returns true if the window is visible.
isVml: function(node)
Returns true if the given node is in the VML namespace.
mxGraph.prototype.isWrapping = function(cell)
This enables wrapping for HTML labels.
mxPopupMenu.prototype.itemCount
Contains the number of times addItem has been called for a new menu.
mxFastOrganicLayout.prototype.iteration
Current iteration count.
mxMedianHybridCrossingReduction.prototype.iterationsWithoutImprovement
The total number of crossings found in the best configuration so far
+
mxCell.prototype.id
Holds the Id.
mxGraphHierarchyNode.prototype.id
The object identity of the wrapped cell
mxObjectCodec.prototype.idrefs
Array containing the variable names that should be turned into or converted from references.
mxGraphHierarchyEdge.prototype.ids
The object identities of the wrapped cells
mxPanningHandler.prototype.ignoreCell
Specifies if panning should be active even if there is a cell under the mousepointer.
mxText.prototype.ignoreClippedStringSize
Specifies if the actual string size should be measured if a label is clipped.
mxAutoSaveManager.prototype.ignoredChanges
Counter for ignored changes in autosave.
mxConnectionHandler.prototype.ignoreMouseDown
Specifies if the connection handler should ignore the state of the mouse button when highlighting the source.
mxGraph.prototype.ignoreScrollbars
Specifies if the graph should automatically scroll regardless of the scrollbars.
mxText.prototype.ignoreStringSize
Specifies if the actual string size should be measured.
mxTooltipHandler.prototype.ignoreTouchEvents
Specifies if touch and pen events should be ignored.
mxCellOverlay.prototype.image
Holds the mxImage to be used as the icon.
mxSvgCanvas2D.prototype.image = function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.image = function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
mxXmlCanvas2D.prototype.image = function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
Basepath for all images URLs in the core without trailing slash.
mxDefaultPopupMenu.prototype.imageBasePath
Base path for all icon attributes in the config.
mxGraph.prototype.imageBundles
Holds the list of image bundles.
mxImageBundle.prototype.images
Maps from keys to images.
mxLabel.prototype.imageSize
Default width and height for the image.
mxSwimlane.prototype.imageSize
Default imagewidth and imageheight if an image but no imagewidth and imageheight are defined in the style.
mxGraph.prototype.importCells = function(cells,
dx,
dy,
target,
evt)
Clones and inserts the given cells into the graph using the move method and returns the inserted cells.
mxGraph.prototype.importEnabled
Specifies the return value for canImportCell.
include: function(src)
Dynamically adds a script node to the document header.
mxImageExport.prototype.includeOverlays
Specifies if overlays should be included in the export.
mxVertexHandler.prototype.index
Holds the index of the current handle.
indexOf: function(array,
obj)
Returns the index of obj in array or -1 if the array does not contains the given object.
mxUndoManager.prototype.indexOfNextAdd
Index of the element to be added next.
indexOfStylename: function(style,
stylename)
Returns the index of the given stylename in the given style.
mxLabel.prototype.indicatorSize
Default width and height for the indicicator.
mxLabel.prototype.indicatorSpacing
Default spacing between image and indicator.
mxFastOrganicLayout.prototype.indices
Hashtable from cells to local indices.
info: function()
Writes the current navigator information to the console.
mxCellEditor.prototype.init = function ()
Creates the textarea and installs the event listeners.
mxConnectionHandler.prototype.init = function()
Initializes the shapes required for this connection handler.
mxDefaultToolbar.prototype.init
Constructs the toolbar for the given container and installs a listener that updates the mxEditor.insertFunction on editor if an item is selected in the toolbar.
mxEdgeHandler.prototype.init = function()
Initializes the shapes required for this edge handler.
mxGraph.prototype.init = function(container)
Initializes the container and creates the respective datastructures.
mxGraphView.prototype.init = function()
Initializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.
mxLabel.prototype.init = function(container)
Initializes the shape and the indicator.
init: function()
Initializes the DOM node for the console.
mxOutline.prototype.init = function(container)
Initializes the outline inside the given container.
mxPopupMenuHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxPopupMenu.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxShape.prototype.init = function(container)
Initializes the shape by creaing the DOM node using create and adding it into the given container.
mxTooltipHandler.prototype.init = function()
Initializes the DOM nodes required for this tooltip handler.
mxVertexHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxWindow.prototype.init = function(x,
y,
width,
height,
style)
Initializes the DOM tree that represents the window.
mxEdgeHandler.prototype.initBend = function(bend)
Helper method to initialize the given bend.
mxCellRenderer.prototype.initControl = function(state,
control,
handleEvents,
clickHandler)
Initializes the given control and returns the corresponding DOM node.
mxCoordinateAssignment.prototype.initialCoords = function(facade,
model)
Sets up the layout in an initial positioning.
mxCellRenderer.prototype.initializeLabel = function(state)
Initiailzes the label with a suitable container.
mxCellRenderer.prototype.initializeOverlay = function(state,
overlay)
Initializes the given overlay.
mxCellRenderer.prototype.initializeShape = function(state)
Initializes the shape in the given state by calling its init method with the correct container.
mxGraphHierarchyModel.prototype.initialRank = function()
Basic determination of minimum layer ranking by working from from sources or sinks and working through each node in the relevant edge direction.
mxSwimlaneModel.prototype.initialRank = function()
Basic determination of minimum layer ranking by working from from sources or sinks and working through each node in the relevant edge direction.
mxFastOrganicLayout.prototype.initialTemp
Start value of temperature.
mxGraph.prototype.initialTouchX
Holds the x-coordinate of the intial touch event for tap and hold.
mxGraph.prototype.initialTouchY
Holds the y-coordinate of the intial touch event for tap and hold.
mxCoordinateAssignment.prototype.initialX
The minimum x position node placement starts at
mxCell.prototype.insert = function(child,
index)
Inserts the specified child into the child array at the specified index and updates the parent reference of the child.
mxDefaultToolbar.prototype.insert = function(vertex,
evt,
target)
Handles a drop by inserting the given vertex into the given parent cell or the default parent if no parent is specified.
Counts the number of times the clipboard data has been inserted.
mxCell.prototype.insertEdge = function(edge,
isOutgoing)
Inserts the specified edge into the edge array and returns the edge.
mxConnectionHandler.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Creates, inserts and returns the new edge for the given parameters.
mxGraph.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
mxEditor.prototype.insertFunction
Specifies the function to be used for inserting new cells into the graph.
mxCodec.prototype.insertIntoGraph = function(cell)
Inserts the given cell into its parent and terminal cells.
Inserts the given array of mxShapes after the given nodes in the DOM.
mxGraph.prototype.insertVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
mxEditor.prototype.installChangeHandler = function (graph)
Installs the listeners required to automatically validate the graph.
mxWindow.prototype.installCloseHandler = function()
Adds the closeImage as a new image node in closeImg and installs the close event.
mxEditor.prototype.installDblClickHandler = function (graph)
Overrides mxGraph.dblClick to invoke dblClickAction on a cell and reset the selection tool in the toolbar.
mxEditor.prototype.installDrillHandler = function (graph)
Installs listeners for dispatching the root event.
mxDefaultToolbar.prototype.installDropHandler = function (img,
dropHandler)
Makes the given img draggable using the given function for handling a drop event.
mxEditor.prototype.installInsertHandler = function (graph)
Installs the handler for invoking insertFunction if one is defined.
mxCellRenderer.prototype.installListeners = function(state)
Installs the event listeners for the given cell state.
mxGraphView.prototype.installListeners = function()
Installs the required listeners in the container.
mxWindow.prototype.installMaximizeHandler = function()
Installs the event listeners required for maximizing the window.
mxWindow.prototype.installMinimizeHandler = function()
Installs the event listeners required for minimizing the window.
mxWindow.prototype.installMoveHandler = function()
Installs the event listeners required for moving the window.
Installs the listeners for the given mxCellState, mxCellOverlay and mxShape that represents the overlay.
mxEditor.prototype.installUndoHandler = function (graph)
Adds the undoManager to the graph model and the view.
mxHierarchicalLayout.prototype.interHierarchySpacing
The spacing buffer between unconnected hierarchies.
mxSwimlaneLayout.prototype.interHierarchySpacing
The spacing buffer between unconnected hierarchies.
mxCoordinateAssignment.prototype.interRankCellSpacing
The minimum distance between cells on adjacent ranks.
mxHierarchicalLayout.prototype.interRankCellSpacing
The spacing buffer added between cell on adjacent layers.
mxSwimlaneLayout.prototype.interRankCellSpacing
The spacing buffer added between cell on adjacent layers.
intersection: function (x0,
y0,
x1,
y1,
x2,
y2,
x3,
y3)
Returns the intersection of two lines as an mxPoint.
mxCellMarker.prototype.intersects = function(state,
me)
Returns true if the given coordinate pair intersects the given state.
mxGraph.prototype.intersects = function(state,
x,
y)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
intersects: function(a,
b)
Returns true if the two rectangles intersect.
mxCoordinateAssignment.prototype.intraCellSpacing
The minimum buffer between cells on the same rank.
mxHierarchicalLayout.prototype.intraCellSpacing
The spacing buffer added between cells on the same layer.
mxSwimlaneLayout.prototype.intraCellSpacing
The spacing buffer added between cells on the same layer.
mxCellState.prototype.invalid
Specifies if the state is invalid.
Defines the color to be used for the coloring invalid connection previews.
Defines the color to be used for highlighting a invalid target cells for a new or changed connections.
mxGraphView.prototype.invalidate = function(cell,
recurse,
includeEdges)
Invalidates the state of the given cell, all its descendants and connected edges.
mxCellMarker.prototype.invalidColor
Holds the invalid marker color.
mxCompactTreeLayout.prototype.invert
Specifies if edge directions should be inverted.
mxGraphHierarchyEdge.prototype.invert = function(layer)
Inverts the direction of this internal edge(s)
mxGraph.prototype.invokesStopCellEditing
If true, when editing is to be stopped by way of selection changing, data in diagram changing or other means stopCellEditing is invoked, and changes are saved.
IS_FF: navigator.userAgent.indexOf('Firefox/') >
True if the current browser is Firefox.
IS_GC: navigator.userAgent.indexOf('Chrome/') >
True if the current browser is Google Chrome.
IS_IE: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer.
IS_IE6: navigator.userAgent.indexOf('MSIE 6') >
True if the current browser is Internet Explorer 6.x.
Returns true if the user agent is an iPad, iPhone or iPod.
True if the documents location does not start with http:// or https://.
True if the client is a Mac.
True if -moz-transform is available as a CSS style.
IS_NS: navigator.userAgent.indexOf('Mozilla/') >
True if the current browser is Netscape (including Firefox).
IS_OP: navigator.userAgent.indexOf('Opera/') >
True if the current browser is Opera.
True if -o-transform is available as a CSS style.
True if this device supports MS pointer events.
IS_QUIRKS: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer and it is in quirks mode.
IS_SF: navigator.userAgent.indexOf('AppleWebKit/') >
True if the current browser is Safari.
IS_SVG: navigator.userAgent.indexOf('Firefox/') >
True if the browser supports SVG.
True if this device supports touchstart/-move/-end events (Apple iOS, Android, Chromebook and Chrome Browser on touch-enabled devices).
IS_VML: navigator.appName.toUpperCase()
True if the browser supports VML.
mxSwimlaneManager.prototype.isAddEnabled = function()
Returns addEnabled.
mxEdgeHandler.prototype.isAddPointEvent = function(evt)
Returns true if the given event is a trigger to add a new point.
mxGraph.prototype.isAllowDanglingEdges = function()
Returns allowDanglingEdges as a boolean.
mxGraphView.prototype.isAllowEval = function()
Returns allowEval.
mxGraph.prototype.isAllowLoops = function()
Returns allowLoops as a boolean.
mxGraph.prototype.isAllowOverlapParent = function(cell)
Returns true if the given cell is allowed to be placed outside of the parents area.
isAltDown: function(evt)
Returns true if the alt key is pressed for the given event.
mxGraphHierarchyNode.prototype.isAncestor = function(otherNode)
mxGraphModel.prototype.isAncestor = function(parent,
child)
Returns true if the given parent is an ancestor of the given child.
isAncestorNode: function(ancestor,
child)
Returns true if the given ancestor is an ancestor of the given DOM node in the DOM.
mxGraph.prototype.isAutoSizeCell = function(cell)
Returns true if the size of the given cell should automatically be updated after a change of the label.
mxGraph.prototype.isAutoSizeCells = function()
Returns autoSizeCells.
mxXmlRequest.prototype.isBinary = function()
Returns binary.
mxObjectCodec.prototype.isBooleanAttribute = function(enc,
obj,
name,
value)
Returns true if the given object attribute is a boolean value.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
mxLayoutManager.prototype.isBubbling = function()
Returns true if a layout should bubble, that is, if the parent layout should be executed whenever a cell layout (layout of the children of a cell) has been executed.
Hook for subclassers to disable support for a given language.
mxGraph.prototype.isCellBendable = function(cell)
Returns true if the given cell is bendable.
mxGraph.prototype.isCellCloneable = function(cell)
Returns true if the given cell is cloneable.
codec.isCellCodec = function()
Returns true since this is a cell codec.
mxCodec.prototype.isCellCodec = function(codec)
Returns true if the given codec is a cell codec.
mxGraph.prototype.isCellCollapsed = function(cell)
Returns true if the given cell is collapsed in this graph.
mxGraph.prototype.isCellConnectable = function(cell)
Returns true if the given cell is connectable in this graph.
mxGraph.prototype.isCellDeletable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellDisconnectable = function(cell,
terminal,
source)
Returns true if the given cell is disconnectable from the source or target terminal.
mxGraph.prototype.isCellEditable = function(cell)
Returns true if the given cell is editable.
mxGraph.prototype.isCellFoldable = function(cell,
collapse)
Returns true if the given cell is foldable.
mxSwimlaneManager.prototype.isCellHorizontal = function(cell)
Returns true if the given cell is horizontal.
mxSpaceManager.prototype.isCellIgnored = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellLocked = function(cell)
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellMovable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellResizable = function(cell)
Returns true if the given cell is resizable.
mxGraph.prototype.isCellRotatable = function(cell)
Returns true if the given cell is rotatable.
mxGraph.prototype.isCellsBendable = function()
Returns cellsBenadable.
mxGraph.prototype.isCellsCloneable = function()
Returns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.
mxGraph.prototype.isCellsDeletable = function()
Returns cellsDeletable.
mxGraph.prototype.isCellsDisconnectable = function()
Returns cellsDisconnectable.
mxGraph.prototype.isCellsEditable = function()
Returns cellsEditable.
mxGraph.prototype.isCellSelectable = function(cell)
Returns true if the given cell is selectable.
mxGraph.prototype.isCellSelected = function(cell)
Returns true if the given cell is selected.
mxSpaceManager.prototype.isCellShiftable = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellsLocked = function()
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellsMovable = function()
Returns cellsMovable.
mxGraph.prototype.isCellsResizable = function()
Returns cellsResizable.
mxGraph.prototype.isCellsSelectable = function()
Returns cellsSelectable.
mxGraph.prototype.isCellVisible = function(cell)
Returns true if the given cell is visible in this graph.
mxGraphHandler.prototype.isCloneEnabled = function()
Returns cloneEnabled.
mxGraph.prototype.isCloneEvent = function(evt)
Returns true if the given event is a clone event.
mxGraph.prototype.isCloneInvalidEdges = function()
Returns cloneInvalidEdges as a boolean.
mxCell.prototype.isCollapsed = function()
Returns true if the cell is collapsed.
mxGraphModel.prototype.isCollapsed = function(cell)
Returns true if the given mxCell is collapsed.
mxCell.prototype.isConnectable = function()
Returns true if the cell is connectable.
mxGraph.prototype.isConnectable = function(connectable)
Returns true if the connectionHandler is enabled.
mxGraphModel.prototype.isConnectable = function(cell)
Returns true if the given mxCell is connectable.
mxConnectionHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxEdgeHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxGraph.prototype.isConnectableEdges = function()
Returns connectableEdges as a boolean.
mxConnectionHandler.prototype.isConnecting = function()
Returns true if the source terminal has been clicked and a new connection is currently being previewed.
mxGraph.prototype.isConstrainChild = function(cell)
Returns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.
mxGraph.prototype.isConstrainChildren = function()
Returns constrainChildren.
mxGraph.prototype.isConstrainChildrenOnResize = function()
Returns constrainChildrenOnResize.
mxGraph.prototype.isConstrainedEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxVertexHandler.prototype.isConstrainedEvent = function(me)
Returns true if the aspect ratio if the cell should be maintained.
isConsumed: function(evt)
Returns true if the event has been consumed using consume.
mxEventObject.prototype.isConsumed = function()
Returns true if the event has been consumed.
mxMouseEvent.prototype.isConsumed = function()
Returns consumed.
mxGraphView.prototype.isContainerEvent = function(evt)
Returns true if the event origin is one of the drawing panes or containers of the view.
isControlDown: function(evt)
Returns true if the control key is pressed for the given event.
mxKeyHandler.prototype.isControlDown = function(evt)
Returns true if the control key is pressed.
mxGraphModel.prototype.isCreateIds = function()
Returns createIds.
mxConnectionHandler.prototype.isCreateTarget = function()
Returns createTarget.
mxGraphHandler.prototype.isDelayedSelection = function(cell)
Hook to return true for delayed selections.
mxGraph.prototype.isDisconnectOnMove = function()
Returns disconnectOnMove as a boolean.
mxGraph.prototype.isDropEnabled = function()
Returns dropEnabled as a boolean.
mxCell.prototype.isEdge = function()
Returns true if the cell is an edge.
mxGraphAbstractHierarchyCell.prototype.isEdge = function()
Returns whether or not this cell is an edge
mxGraphHierarchyEdge.prototype.isEdge = function()
Returns true.
mxGraphModel.prototype.isEdge = function(cell)
Returns true if the given cell is an edge.
mxGraphLayout.prototype.isEdgeIgnored = function(edge)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isEdgeLabelsMovable = function()
Returns edgeLabelsMovable.
mxGraph.prototype.isEdgeValid = function(edge,
source,
target)
Checks if the return value of getEdgeValidationError for the given arguments is null.
mxGraph.prototype.isEditing = function(cell)
Returns true if the given cell is currently being edited.
mxCellStatePreview.prototype.isEmpty = function()
Returns true if this contains no entries.
isEmpty: function()
Returns true if the clipboard currently has not data stored.
mxGraphSelectionModel.prototype.isEmpty = function()
Returns true if no cells are currently selected.
mxUndoableEdit.prototype.isEmpty = function()
Returns true if the this edit contains no changes.
mxUndoManager.prototype.isEmpty = function()
Returns true if the history is empty.
mxAutoSaveManager.prototype.isEnabled = function()
Returns true if events are handled.
mxCellMarker.prototype.isEnabled = function()
Returns true if events are handled.
mxConnectionHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxConstraintHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxDragSource.prototype.isEnabled = function()
Returns enabled.
mxGraph.prototype.isEnabled = function()
Returns true if the graph is enabled.
mxGraphHandler.prototype.isEnabled = function()
Returns enabled.
mxKeyHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxLayoutManager.prototype.isEnabled = function()
Returns true if events are handled.
mxOutline.prototype.isEnabled = function()
Returns true if events are handled.
mxPopupMenu.prototype.isEnabled = function()
Returns true if events are handled.
mxRubberband.prototype.isEnabled = function()
Returns true if events are handled.
mxSelectionCellsHandler.prototype.isEnabled = function()
Returns enabled.
mxSpaceManager.prototype.isEnabled = function()
Returns true if events are handled.
mxSwimlaneManager.prototype.isEnabled = function()
Returns true if events are handled.
mxTooltipHandler.prototype.isEnabled = function()
Returns true if events are handled.
isEnabled: function()
Returns enabled.
mxGuide.prototype.isEnabledForEvent = function(evt)
Returns true if the guide should be enabled for the given native event.
mxGraph.prototype.isEnterStopsCellEditing = function()
Returns enterStopsCellEditing.
mxGraph.prototype.isEscapeEnabled = function()
Returns escapeEnabled.
mxConstraintHandler.prototype.isEventIgnored = function(me,
source)
Returns true if the given mxMouseEvent should be ignored in update.
mxGraph.prototype.isEventIgnored = function(evtName,
me,
sender)
Returns true if the event should be ignored in fireMouseEvent.
mxEventSource.prototype.isEventsEnabled = function()
Returns eventsEnabled.
mxCellEditor.prototype.isEventSource = function(evt)
Returns true if this editor is the source for the given native event.
mxGraph.prototype.isEventSourceIgnored = function(evtName,
me)
Returns true if the given mouse down event should be ignored.
codec.isExcluded = function(obj,
attr,
value,
isWrite)
Excludes user objects that are XML nodes.
mxObjectCodec.prototype.isExcluded = function(obj,
attr,
value,
write)
Returns true if the given attribute is to be ignored by the codec.
mxGraph.prototype.isExtendParent = function(cell)
Returns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.
mxGraph.prototype.isExtendParents = function()
Returns extendParents.
mxSpaceManager.prototype.isExtendParents = function()
Returns true if events are handled.
mxGraph.prototype.isExtendParentsOnAdd = function()
Returns extendParentsOnAdd.
mxPanningHandler.prototype.isForcePanningEvent = function(me)
Returns true if the given mxMouseEvent should start panning.
mxRubberband.prototype.isForceRubberbandEvent = function(me)
Returns true if the given mxMouseEvent should start rubberband selection.
mxKeyHandler.prototype.isGraphEvent = function(evt)
Returns true if the event should be processed by this handler, that is, if the event source is either the target, one of its direct children, a descendant of the mxGraph.container, or the mxGraph.cellEditor of the graph.
mxDragSource.prototype.isGridEnabled = function()
Returns gridEnabled.
mxGraph.prototype.isGridEnabled = function()
Returns gridEnabled as a boolean.
mxGraph.prototype.isGridEnabledEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxDragSource.prototype.isGuidesEnabled = function()
Returns guidesEnabled.
mxEdgeHandler.prototype.isHandleEnabled = function(index)
Creates the shape used to display the given bend.
mxEdgeHandler.prototype.isHandleVisible = function(index)
Returns true if the handle at the given index is visible.
mxCellEditor.prototype.isHideLabel = function(state)
Returns true if the label should be hidden while the cell is being edited.
mxTooltipHandler.prototype.isHideOnHover = function()
Returns hideOnHover.
mxCompactTreeLayout.prototype.isHorizontal = function()
Returns horizontal.
mxPartitionLayout.prototype.isHorizontal = function()
Returns horizontal.
mxStackLayout.prototype.isHorizontal = function()
Returns horizontal.
mxSwimlaneManager.prototype.isHorizontal = function()
Returns horizontal.
mxCellMarker.prototype.isHotspotEnabled = function()
Returns true if hotspot is used in intersects.
mxImageShape.prototype.isHtmlAllowed = function()
Returns true if HTML is allowed for this shape.
mxLabel.prototype.isHtmlAllowed = function()
Returns true for non-rounded, non-rotated shapes with no glass gradient and no indicator shape.
mxRectangleShape.prototype.isHtmlAllowed = function()
Returns true for non-rounded, non-rotated shapes with no glass gradient.
mxShape.prototype.isHtmlAllowed = function()
Returns true if HTML is allowed for this shape.
mxText.prototype.isHtmlAllowed = function()
Returns true if HTML is allowed for this shape.
mxGraph.prototype.isHtmlLabel = function(cell)
Returns true if the label must be rendered as HTML markup.
mxGraph.prototype.isHtmlLabels = function()
Returns htmlLabels.
mxConnectionHandler.prototype.isImmediateConnectSource = function(state)
Returns true if a tap on the given source state should immediately start connecting.
mxGraph.prototype.isInvokesStopCellEditing = function()
Returns invokesStopCellEditing.
mxGraph.prototype.isLabelClipped = function(cell)
Returns true if the overflow portion of labels should be hidden.
mxCellRenderer.prototype.isLabelEvent = function(state,
evt)
Returns true if the event is for the label of the given state.
mxGraph.prototype.isLabelMovable = function(cell)
Returns true if the given edges’s label is moveable.
mxGraphModel.prototype.isLayer = function(cell)
Returns true if isRoot returns true for the parent of the given cell.
isLeftMouseButton: function(evt)
Returns true if the left mouse button is pressed for the given event.
mxVertexHandler.prototype.isLivePreviewBorder = function()
Called if livePreview is enabled to check if a border should be painted.
mxGraph.prototype.isLoop = function(state)
Returns true if the given cell state is a loop.
mxPopupMenu.prototype.isMenuShowing = function()
Returns true if the menu is showing.
isMetaDown: function(evt)
Returns true if the meta key is pressed for the given event.
mxCellEditor.prototype.isModified = function()
Returns modified.
mxEditor.prototype.isModified = function ()
Returns modified.
mxGraph.prototype.isMouseDown
Holds the state of the mouse button.
isMouseEvent: function(evt)
Returns true if the event was generated using a mouse (not a pen or touch device).
mxFastOrganicLayout.prototype.isMoveable
Array of booleans representing the movable states of the vertices.
mxGraphHandler.prototype.isMoveEnabled = function()
Returns moveEnabled.
mxConnectionHandler.prototype.isMoveIconToFrontForState = function(state)
Returns true if the state has a HTML label in the graph’s container, otherwise it returns moveIconFront.
mxGraph.prototype.isMultigraph = function()
Returns multigraph as a boolean.
isNaN: function(value)
Returns true if the given value is of type number and isNaN returns true.
isNode: function(value,
nodeName,
attributeName,
attributeValue)
Returns true if the given value is an XML node with the node name and if the optional attribute has the specified value.
isNumeric: function(n)
Returns true if the specified value is numeric, that is, if it is not null, not an empty string, not a HEX number and isNaN returns false.
mxObjectCodec.prototype.isNumericAttribute = function(dec,
attr,
obj)
Returns true if the given XML attribute is a numeric value.
mxGraph.prototype.isOrthogonal = function(edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
mxPolyline.prototype.isPaintBoundsInverted = function()
Returns false.
mxShape.prototype.isPaintBoundsInverted = function()
Returns true if the bounds should be inverted.
mxText.prototype.isPaintBoundsInverted = function()
Inverts the bounds if mxShape.isBoundsInverted returns true or if the horizontal style is false.
mxPanningHandler.prototype.isPanningEnabled = function()
Returns panningEnabled.
mxPanningHandler.prototype.isPanningTrigger = function(me)
Returns true if the given event is a panning trigger for the optional given cell.
mxShape.prototype.isParseVml = function()
Specifies if any VML should be added via insertAdjacentHtml to the DOM.
mxText.prototype.isParseVml = function()
Text shapes do not contain VML markup and do not need to be parsed.
isPopupTrigger: function(evt)
Returns true if the event is a popup trigger.
mxMouseEvent.prototype.isPopupTrigger = function()
Returns true if the event is a popup trigger.
mxPopupMenu.prototype.isPopupTrigger = function(me)
Returns true if the given event is a popupmenu trigger for the optional given cell.
mxGraph.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, the cell returned by getTerminalForPort should be used as the terminal and the port should be referenced by the ID in either the mxConstants.STYLE_SOURCE_PORT or the or the mxConstants.STYLE_TARGET_PORT.
mxHierarchicalLayout.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, its parent is the connecting vertex in terms of graph traversal
mxSwimlaneLayout.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, its parent is the connecting vertex in terms of graph traversal
mxGraph.prototype.isPortsEnabled = function()
Returns portsEnabled as a boolean.
mxEditor.prototype.isPropertiesVisible = function ()
Returns true if the properties dialog is currently visible.
mxXmlRequest.prototype.isReady = function()
Returns true if the response is ready.
mxGraph.prototype.isRecursiveResize = function()
Returns recursiveResize.
codec.isReference = function(obj,
attr,
value,
isWrite)
Returns true for the child attribute if the child cell had a previous parent or if we’re reading the child as an attribute rather than a child node, in which case it’s always a reference.
mxObjectCodec.prototype.isReference = function(obj,
attr,
value,
write)
Returns true if the given fieldname is to be treated as a textual reference (ID).
isRelativeUrl: function(url)
Returns true if the given URL is relative.
mxGraphHandler.prototype.isRemoveCellsFromParent = function()
Returns removeCellsFromParent.
mxEdgeHandler.prototype.isRemovePointEvent = function(evt)
Returns true if the given event is a trigger to remove a point.
mxGraphView.prototype.isRendering = function()
Returns rendering.
mxWindow.prototype.isResizable = function()
Returns true if the window is resizable.
mxGraph.prototype.isResizeContainer = function()
Returns resizeContainer.
mxSwimlaneManager.prototype.isResizeEnabled = function()
Returns resizeEnabled.
mxGraphHierarchyEdge.prototype.isReversed
Whether or not the direction of this edge has been reversed internally to create a DAG for the hierarchical layout
isRightMouseButton: function(evt)
Returns true if the right mouse button was pressed.
mxGraphModel.prototype.isRoot = function(cell)
Returns true if the given cell is the root of the model and a non-null value.
mxGraphView.prototype.isScrollEvent = function(evt)
Returns true if the event origin is one of the scrollbars of the container in IE.
mxGraphSelectionModel.prototype.isSelected = function(cell)
Returns true if the given mxCell is selected.
mxGraphHandler.prototype.isSelectEnabled = function()
Returns selectEnabled.
mxEdgeHandler.prototype.isSelectionDashed = function()
Returns mxConstants.EDGE_SELECTION_DASHED.
mxVertexHandler.prototype.isSelectionDashed = function()
Returns mxConstants.VERTEX_SELECTION_DASHED.
mxGraph.prototype.isSelectionEmpty = function()
Returns true if the selection is empty.
mxPopupMenuHandler.prototype.isSelectOnPopup = function(me)
Hook for returning if a cell should be selected for a given mxMouseEvent.
mxCellRenderer.prototype.isShapeEvent = function(state,
evt)
Returns true if the event is for the shape of the given state.
isShiftDown: function(evt)
Returns true if the shift key is pressed for the given event.
mxSpaceManager.prototype.isShiftDownwards = function()
Returns true if events are handled.
mxSpaceManager.prototype.isShiftRightwards = function()
Returns true if events are handled.
mxUndoableEdit.prototype.isSignificant = function()
Returns significant.
mxGraphSelectionModel.prototype.isSingleSelection = function()
Returns singleSelection as a boolean.
mxVertexHandler.prototype.isSizerVisible = function(index)
Returns true if the sizer for the given index is visible.
mxMouseEvent.prototype.isSource = function(shape)
Returns true if the given mxShape is the source of evt.
mxGraph.prototype.isSplitEnabled = function()
Returns splitEnabled as a boolean.
mxGraph.prototype.isSplitTarget = function(target,
cells,
evt)
Returns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.
mxConnectionHandler.prototype.isStartEvent = function(me)
Returns true if the given mouse down event should start this handler.
mxConstraintHandler.prototype.isStateIgnored = function(state,
source)
Returns true if the given state should be ignored.
mxConnectionHandler.prototype.isStopEvent = function(me)
Returns true if the given mouse up event should stop this handler.
mxGraph.prototype.isSwimlane = function (cell)
Returns true if the given cell is a swimlane in the graph.
mxSwimlaneManager.prototype.isSwimlaneIgnored = function(swimlane)
Returns true if the given swimlane should be ignored.
mxGraph.prototype.isSwimlaneNesting = function()
Returns swimlaneNesting as a boolean.
mxGraph.prototype.isSwimlaneSelectionEnabled = function()
Returns swimlaneSelectionEnabled as a boolean.
mxGraph.prototype.isSyntheticEventIgnored = function(evtName,
me,
sender)
Hook for ignoring synthetic mouse events after touchend in Firefox.
mxGraph.prototype.isTerminalPointMovable = function(cell,
source)
Returns true if the given terminal point is movable.
mxGraph.prototype.isToggleEvent = function(evt)
Returns true if the given event is a toggle event.
isTouchEvent: function(evt)
Returns true if the event was generated using a touch device (not a pen or mouse).
mxGraph.prototype.isValidAncestor = function(cell,
parent,
recurse)
Returns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.
mxGraph.prototype.isValidConnection = function(source,
target)
Returns true if the given target cell is a valid target for source.
mxGraph.prototype.isValidDropTarget = function(cell,
cells,
evt)
Returns true if the given cell is a valid drop target for the specified cells.
mxSession.prototype.isValidResponse = function(req)
Returns true if the response data in the given mxXmlRequest is valid.
mxGraph.prototype.isValidRoot = function(cell)
Returns true if the given cell is a valid root for the cell display hierarchy.
mxConnectionHandler.prototype.isValidSource = function(cell)
Returns mxGraph.isValidSource for the given source terminal.
mxGraph.prototype.isValidSource = function(cell)
Returns true if the given cell is a valid source for new connections.
mxCellMarker.prototype.isValidState = function(state)
Returns true if the given mxCellState is a valid state.
mxConnectionHandler.prototype.isValidTarget = function(cell)
Returns true.
mxGraph.prototype.isValidTarget = function(cell)
Returns isValidSource for the given cell.
mxCell.prototype.isVertex = function()
Returns true if the cell is a vertex.
mxGraphAbstractHierarchyCell.prototype.isVertex = function()
Returns whether or not this cell is a node
mxGraphHierarchyNode.prototype.isVertex = function()
Returns true.
mxGraphModel.prototype.isVertex = function(cell)
Returns true if the given cell is a vertex.
mxCompactTreeLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxFastOrganicLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxGraphLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isVertexLabelsMovable = function()
Returns vertexLabelsMovable.
mxGraphLayout.prototype.isVertexMovable = function(cell)
Returns a boolean indicating if the given mxCell is movable or bendable by the algorithm.
mxCell.prototype.isVisible = function()
Returns true if the cell is visibile.
mxGraphModel.prototype.isVisible = function(cell)
Returns true if the given mxCell is visible.
isVisible: function()
Returns true if the console is visible.
mxWindow.prototype.isVisible = function()
Returns true if the window is visible.
isVml: function(node)
Returns true if the given node is in the VML namespace.
mxGraph.prototype.isWrapping = function(cell)
This enables wrapping for HTML labels.
mxPopupMenu.prototype.itemCount
Contains the number of times addItem has been called for a new menu.
mxFastOrganicLayout.prototype.iteration
Current iteration count.
mxMedianHybridCrossingReduction.prototype.iterationsWithoutImprovement
The total number of crossings found in the best configuration so far
diff --git a/docs/js-api/search/FunctionsG.html b/docs/js-api/search/FunctionsG.html index 38af6141a..e8a42c3d9 100644 --- a/docs/js-api/search/FunctionsG.html +++ b/docs/js-api/search/FunctionsG.html @@ -11,7 +11,7 @@ if (browserType) {document.write("
");if (browserV -
Loading...
getAlignmentTolerance, mxConnectionHandler
getAllEdges, mxGraph
getAlternateContent, mxSvgCanvas2D
getAppendices, mxPrintPreview
getAttribute, mxCell
getAttributeName, mxObjectCodec
getBackgroundPane, mxGraphView
getBaseDomain, mxUrlConverter
getBaseUrl, mxUrlConverter
getBorder, mxGraph
getCanvas, mxGraphView
getCellAt, mxGraph
getCellBounds, mxGraph
getCellForPopupEvent, mxPanningHandler
getCellsForChange, mxLayoutManager
getCellsForEdit, mxLayoutManager
getCellStates, mxGraphView
getCellsToShift, mxSpaceManager
getCenterX, mxRectangle
getCenterY, mxRectangle
getChildNodes, mxUtils
getChildren, mxGraphModel
getClientX, mxEvent
getClientY, mxEvent
getCodec, mxCodecRegistry
getColor, mxUtils
getConnectImage, mxConnectionHandler
getConstraint, mxGraphLayout
getControlBounds, mxCellRenderer
getCoverPages, mxPrintPreview
getCurrentValue, mxCellEditor
getCursor, mxShape
getCursorForBend, mxElbowEdgeHandler
getDefaultBundle, mxResources
getDefaultEdgeStyle, mxStylesheet
getDefaultVertexStyle, mxStylesheet
getDescendants, mxGraphModel
getDirectedEdgeCount, mxGraphModel
getDocType, mxPrintPreview
getDocumentElement, mxXmlRequest
getDocumentHeight, mxDivResizer
getDocumentWidth, mxDivResizer
getDrawPane, mxGraphView
getEdgeColor, mxConnectionHandler
getEdgeId, mxParallelEdgeLayout
getEdgeIndex, mxCell
getEdgeWidth, mxConnectionHandler
getEditingCell, mxCellEditor
getEditorBounds, mxCellEditor
getElement, mxWindow
getEmptyLabelText, mxCellEditor
getEvent, mxMouseEvent
getEventSource, mxEventSource
getFieldName, mxObjectCodec
getFieldTemplate, mxObjectCodec
getFirstSelectableCell, mxGraphSelectionModel
getFunction, mxKeyHandler
getGraphForEvent, mxDragSource
getGraphX, mxMouseEvent
getGraphY, mxMouseEvent
getGridSize, mxGraph
getGuideStates, mxGraphHandler
getHandleFillColor, mxEdgeHandler
getHandler, mxSelectionCellsHandler
getHotspot, mxCellMarker
getImageForConstraint, mxConstraintHandler
getIndex, mxCell
getInitialCellForEvent, mxGraphHandler
getInitialValue, mxCellEditor
getInnerHtml, mxUtils
getKeys, mxDictionary
getLabel, mxGraph
getLabelValue, mxCellRenderer
getLayout, mxLayoutManager
getMainEvent, mxEvent
getMargin, mxText
getMarkedState, mxCellMarker
getMarkerColor, mxCellMarker
getNextPoint, mxGraphView
getNumber, mxUtils
getObject, mxCodec
getOffset, mxUtils
getOrigin, mxGraphModel
getOriginForCell, mxMorphing
getOuterHtml, mxUtils
getOutlineOffset, mxOutline
getOverlap, mxGraph
getOverlayPane, mxGraphView
getParentOffset, mxGraphLayout
getParentPath, mxCellPath
getParents, mxGraphModel
getParentSize, mxStackLayout
getPerimeterPoint, mxGraphView
getPrettyXML, mxUtils
getPreviewBounds, mxGraphHandler
getProperties, mxEventObject
getProperty, mxEventObject
getRadius, mxCircleLayout
getRankValue, mxGraphHierarchyNode
getRelativePoint, mxGraphView
getRootTitle, mxEditor
getRoutingCenterX, mxGraphView
getRoutingCenterY, mxGraphView
getScale, mxGraphView
getSelectionBounds, mxVertexHandler
getSelectionPoints, mxEdgeHandler
getShape, mxCellRenderer
getShapeConstructor, mxCellRenderer
getShapesForState, mxCellRenderer
getSourcePerimeterPoint, mxConnectionHandler
getSpacing, mxText
getSpecialBundle, mxResources
getStartSize, mxGraph
getStates, mxGraphView
getStateToMark, mxCellMarker
getStatus, mxXmlRequest
getStencil, mxStencilRegistry
getStringValue, mxStylesheetCodec
getStylename, mxUtils
getStylenames, mxUtils
getStylesheet, mxGraph
getSvgGradient, mxSvgCanvas2D
getSwimlane, mxGraph
getSwimlaneAt, mxGraph
getTable, mxForm
getTargetPerimeterPoint, mxConnectionHandler
getTemplate, mxEditor
getTerminalPoint, mxGeometry
getTerminalPort, mxGraphView
getText, mxXmlRequest
getTextScale, mxCellRenderer
getTitle, mxEditor
getTooltip, mxGraph
getTooltipForNode, mxElbowEdgeHandler
getTopmostCells, mxGraphModel
getTranslate, mxGraphView
getUrlImage, mxEditor
getUrlPost, mxEditor
getValidState, mxCellMarker
getValues, mxDictionary
getVertexBounds, mxGraphLayout
getView, mxGraph
getViewXml, mxUtils
getVmlDashPattern, mxVmlCanvas2D
getWindow, mxPrintPreview
graphContainsEvent, mxDragSource
graphRenderHint, mxOutline
grow, mxRectangle
Searching...
No Matches
@@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -199,7 +199,7 @@ public StructuralException( -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/StructuralException.html b/java/docs/com/mxgraph/analysis/class-use/StructuralException.html index 66f2feab8..50c16c04f 100644 --- a/java/docs/com/mxgraph/analysis/class-use/StructuralException.html +++ b/java/docs/com/mxgraph/analysis/class-use/StructuralException.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 2.4.0.3 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -231,7 +231,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxAnalysisGraph.html b/java/docs/com/mxgraph/analysis/class-use/mxAnalysisGraph.html index 6362a6734..73de8a324 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxAnalysisGraph.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxAnalysisGraph.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -671,7 +671,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxConstantCostFunction.html b/java/docs/com/mxgraph/analysis/class-use/mxConstantCostFunction.html index ab152df3a..e30ee0fd4 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxConstantCostFunction.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxConstantCostFunction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 2.4.0.3 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.analysis.mxConstantCostFunction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html b/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html index a86ed9f38..335b08427 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 2.4.0.3 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.analysis.mxDistanceCostFunction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html index 93ec98735..286d89d25 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 2.4.0.3 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -255,7 +255,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html index ce14d8f99..ec308dd11 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -172,7 +172,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html index 2a0c7fd31..7fa756df6 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -178,7 +178,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphGenerator.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphGenerator.html index 43169ff7b..dbedeb96c 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxGraphGenerator.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxGraphGenerator.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -178,7 +178,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.GraphType.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.GraphType.html index a03bb5c91..25270bc6b 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.GraphType.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.GraphType.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -155,7 +155,7 @@ the order they are declared. -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.html index a75ae7aec..6bab7748a 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 2.4.0.3 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.analysis.mxGraphProperties -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphStructure.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphStructure.html index 0d0ad4c92..dba76a459 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxGraphStructure.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxGraphStructure.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.analysis.mxGraphStructure -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html b/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html index 84ca2f58e..abddc3fb0 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 2.4.0.3 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -316,7 +316,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxTraversal.html b/java/docs/com/mxgraph/analysis/class-use/mxTraversal.html index f97d442a0..25f05ce82 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxTraversal.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxTraversal.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.analysis.mxTraversal -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html index 2152b7831..a99d52cca 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -228,7 +228,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html index 59bee2aae..1808aac0b 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -157,7 +157,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxAnalysisGraph.html b/java/docs/com/mxgraph/analysis/mxAnalysisGraph.html index 7e5356e4e..abb0c9f6b 100644 --- a/java/docs/com/mxgraph/analysis/mxAnalysisGraph.html +++ b/java/docs/com/mxgraph/analysis/mxAnalysisGraph.html @@ -2,12 +2,12 @@ - + -mxAnalysisGraph (mxGraph 2.4.0.3 API Specification) +mxAnalysisGraph (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxAnalysisGraph (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxAnalysisGraph (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxAnalysisGraph (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -602,7 +602,7 @@ public void setGenerator(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html b/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html index 0499fdedd..c018b5243 100644 --- a/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html +++ b/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html @@ -2,12 +2,12 @@ - + -mxConstantCostFunction (mxGraph 2.4.0.3 API Specification) +mxConstantCostFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxConstantCostFunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConstantCostFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxConstantCostFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -263,7 +263,7 @@ public double getCost(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html b/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html index d3a289c51..4611d3108 100644 --- a/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html +++ b/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html @@ -2,12 +2,12 @@ - + -mxDistanceCostFunction (mxGraph 2.4.0.3 API Specification) +mxDistanceCostFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxDistanceCostFunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDistanceCostFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxDistanceCostFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -226,7 +226,7 @@ public double getCost(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html b/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html index e139aab43..e681af7d6 100644 --- a/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html +++ b/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html @@ -2,12 +2,12 @@ - + -mxFibonacciHeap.Node (mxGraph 2.4.0.3 API Specification) +mxFibonacciHeap.Node (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxFibonacciHeap.Node (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxFibonacciHeap.Node (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxFibonacciHeap.Node (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -270,7 +270,7 @@ public void setUserObject(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxFibonacciHeap.html b/java/docs/com/mxgraph/analysis/mxFibonacciHeap.html index 521cce42b..d4c5e5ba8 100644 --- a/java/docs/com/mxgraph/analysis/mxFibonacciHeap.html +++ b/java/docs/com/mxgraph/analysis/mxFibonacciHeap.html @@ -2,12 +2,12 @@ - + -mxFibonacciHeap (mxGraph 2.4.0.3 API Specification) +mxFibonacciHeap (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxFibonacciHeap (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxFibonacciHeap (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxFibonacciHeap (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -638,7 +638,7 @@ protected void link(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxGraphAnalysis.html b/java/docs/com/mxgraph/analysis/mxGraphAnalysis.html index b875d6503..7cfae8189 100644 --- a/java/docs/com/mxgraph/analysis/mxGraphAnalysis.html +++ b/java/docs/com/mxgraph/analysis/mxGraphAnalysis.html @@ -2,12 +2,12 @@ - + -mxGraphAnalysis (mxGraph 2.4.0.3 API Specification) +mxGraphAnalysis (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphAnalysis (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphAnalysis (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphAnalysis (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -538,7 +538,7 @@ protected
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxGraphGenerator.html b/java/docs/com/mxgraph/analysis/mxGraphGenerator.html index e00763fbf..70c4b1a3b 100644 --- a/java/docs/com/mxgraph/analysis/mxGraphGenerator.html +++ b/java/docs/com/mxgraph/analysis/mxGraphGenerator.html @@ -2,12 +2,12 @@ - + -mxGraphGenerator (mxGraph 2.4.0.3 API Specification) +mxGraphGenerator (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphGenerator (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphGenerator (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphGenerator (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -941,7 +941,7 @@ public void setCostFunction(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxGraphProperties.GraphType.html b/java/docs/com/mxgraph/analysis/mxGraphProperties.GraphType.html index b7ac46d88..70be353f4 100644 --- a/java/docs/com/mxgraph/analysis/mxGraphProperties.GraphType.html +++ b/java/docs/com/mxgraph/analysis/mxGraphProperties.GraphType.html @@ -2,12 +2,12 @@ - + -mxGraphProperties.GraphType (mxGraph 2.4.0.3 API Specification) +mxGraphProperties.GraphType (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphProperties.GraphType (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphProperties.GraphType (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphProperties.GraphType (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -828,7 +828,7 @@ with the specified name -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxGraphProperties.html b/java/docs/com/mxgraph/analysis/mxGraphProperties.html index 368753949..26704cbbd 100644 --- a/java/docs/com/mxgraph/analysis/mxGraphProperties.html +++ b/java/docs/com/mxgraph/analysis/mxGraphProperties.html @@ -2,12 +2,12 @@ - + -mxGraphProperties (mxGraph 2.4.0.3 API Specification) +mxGraphProperties (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphProperties (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphProperties (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphProperties (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -399,7 +399,7 @@ public static void setDirected(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxGraphStructure.html b/java/docs/com/mxgraph/analysis/mxGraphStructure.html index 4ba69f845..305f09468 100644 --- a/java/docs/com/mxgraph/analysis/mxGraphStructure.html +++ b/java/docs/com/mxgraph/analysis/mxGraphStructure.html @@ -2,12 +2,12 @@ - + -mxGraphStructure (mxGraph 2.4.0.3 API Specification) +mxGraphStructure (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphStructure (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphStructure (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphStructure (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -753,7 +753,7 @@ public static boolean isBiconnected(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxICostFunction.html b/java/docs/com/mxgraph/analysis/mxICostFunction.html index 7c914099f..4d9756267 100644 --- a/java/docs/com/mxgraph/analysis/mxICostFunction.html +++ b/java/docs/com/mxgraph/analysis/mxICostFunction.html @@ -2,12 +2,12 @@ - + -mxICostFunction (mxGraph 2.4.0.3 API Specification) +mxICostFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxICostFunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICostFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxICostFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -179,7 +179,7 @@ double getCost(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxTraversal.html b/java/docs/com/mxgraph/analysis/mxTraversal.html index 2192ad835..28c220927 100644 --- a/java/docs/com/mxgraph/analysis/mxTraversal.html +++ b/java/docs/com/mxgraph/analysis/mxTraversal.html @@ -2,12 +2,12 @@ - + -mxTraversal (mxGraph 2.4.0.3 API Specification) +mxTraversal (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxTraversal (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxTraversal (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxTraversal (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -401,7 +401,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html b/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html index 5cee6675e..fc42be28d 100644 --- a/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html +++ b/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html @@ -2,12 +2,12 @@ - + -mxUnionFind.Node (mxGraph 2.4.0.3 API Specification) +mxUnionFind.Node (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxUnionFind.Node (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUnionFind.Node (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxUnionFind.Node (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -335,7 +335,7 @@ public void setSize(int size) -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/mxUnionFind.html b/java/docs/com/mxgraph/analysis/mxUnionFind.html index 58f91fad7..607efa987 100644 --- a/java/docs/com/mxgraph/analysis/mxUnionFind.html +++ b/java/docs/com/mxgraph/analysis/mxUnionFind.html @@ -2,12 +2,12 @@ - + -mxUnionFind (mxGraph 2.4.0.3 API Specification) +mxUnionFind (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxUnionFind (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUnionFind (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxUnionFind (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -357,7 +357,7 @@ public boolean differ(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/package-frame.html b/java/docs/com/mxgraph/analysis/package-frame.html index d510cced4..66c26ceda 100644 --- a/java/docs/com/mxgraph/analysis/package-frame.html +++ b/java/docs/com/mxgraph/analysis/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.analysis (mxGraph 2.4.0.3 API Specification) +com.mxgraph.analysis (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/analysis/package-summary.html b/java/docs/com/mxgraph/analysis/package-summary.html index ce05165d3..32b122cf1 100644 --- a/java/docs/com/mxgraph/analysis/package-summary.html +++ b/java/docs/com/mxgraph/analysis/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.analysis (mxGraph 2.4.0.3 API Specification) +com.mxgraph.analysis (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.analysis (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.analysis (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.analysis (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -224,7 +224,7 @@ This package provides various algorithms for graph analysis, such as -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/package-tree.html b/java/docs/com/mxgraph/analysis/package-tree.html index 00c281f55..3fe65f179 100644 --- a/java/docs/com/mxgraph/analysis/package-tree.html +++ b/java/docs/com/mxgraph/analysis/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.analysis Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.analysis Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.analysis Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.analysis Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.analysis Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -140,7 +140,7 @@ Enum Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/analysis/package-use.html b/java/docs/com/mxgraph/analysis/package-use.html index 42c6f8aae..9f15825fc 100644 --- a/java/docs/com/mxgraph/analysis/package-use.html +++ b/java/docs/com/mxgraph/analysis/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.analysis (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.analysis (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.analysis (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.analysis (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.analysis (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -230,7 +230,7 @@ Classes in
com.mxgr -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html index b051394e0..574a4ef83 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -201,7 +201,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html index bf8f64414..867184cab 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -859,7 +859,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html index 61f9abe1f..4dc7edc79 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -194,7 +194,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html index 957c0a836..7efe95af3 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -190,7 +190,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html index 09ab61ff0..4dc34bfc5 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 2.4.0.3 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.canvas.mxHtmlCanvas -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html index 36c970b84..ae07abdfa 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -426,7 +426,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html b/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html index f165becda..96ccbe7f6 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 2.4.0.3 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -236,7 +236,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html index ef8697a1f..35e66d5d6 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.canvas.mxImageCanvas -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html index 8610df539..1e2ef56cf 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.canvas.mxSvgCanvas -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html index 66cbc8125..51578943a 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.canvas.mxVmlCanvas -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/mxBasicCanvas.html b/java/docs/com/mxgraph/canvas/mxBasicCanvas.html index 5be4e5414..e56377ac0 100644 --- a/java/docs/com/mxgraph/canvas/mxBasicCanvas.html +++ b/java/docs/com/mxgraph/canvas/mxBasicCanvas.html @@ -2,12 +2,12 @@ - + -mxBasicCanvas (mxGraph 2.4.0.3 API Specification) +mxBasicCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxBasicCanvas (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxBasicCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxBasicCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -629,7 +629,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html b/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html index 4febe2bef..a1ed89d4c 100644 --- a/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html +++ b/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html @@ -2,12 +2,12 @@ - + -mxGraphics2DCanvas (mxGraph 2.4.0.3 API Specification) +mxGraphics2DCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphics2DCanvas (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphics2DCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphics2DCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -828,7 +828,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html b/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html index 9a8e41a42..da13cee63 100644 --- a/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html +++ b/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html @@ -2,12 +2,12 @@ - + -mxGraphicsCanvas2D.CanvasState (mxGraph 2.4.0.3 API Specification) +mxGraphicsCanvas2D.CanvasState (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphicsCanvas2D.CanvasState (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphicsCanvas2D.CanvasState (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphicsCanvas2D.CanvasState (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -893,7 +893,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.html b/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.html index f5801e800..4e13768cd 100644 --- a/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.html +++ b/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.html @@ -2,12 +2,12 @@ - + -mxGraphicsCanvas2D (mxGraph 2.4.0.3 API Specification) +mxGraphicsCanvas2D (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphicsCanvas2D (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphicsCanvas2D (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphicsCanvas2D (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -2410,7 +2410,7 @@ protected void updateStroke() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html b/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html index 51863dde1..b7be08aaa 100644 --- a/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html +++ b/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html @@ -2,12 +2,12 @@ - + -mxHtmlCanvas (mxGraph 2.4.0.3 API Specification) +mxHtmlCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxHtmlCanvas (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHtmlCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxHtmlCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -502,7 +502,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/mxICanvas.html b/java/docs/com/mxgraph/canvas/mxICanvas.html index d2ade00c2..b7875b7c4 100644 --- a/java/docs/com/mxgraph/canvas/mxICanvas.html +++ b/java/docs/com/mxgraph/canvas/mxICanvas.html @@ -2,12 +2,12 @@ - + -mxICanvas (mxGraph 2.4.0.3 API Specification) +mxICanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxICanvas (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxICanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -289,7 +289,7 @@ drawLabel -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/mxICanvas2D.html b/java/docs/com/mxgraph/canvas/mxICanvas2D.html index 348adc41b..bfcdf572a 100644 --- a/java/docs/com/mxgraph/canvas/mxICanvas2D.html +++ b/java/docs/com/mxgraph/canvas/mxICanvas2D.html @@ -2,12 +2,12 @@ - + -mxICanvas2D (mxGraph 2.4.0.3 API Specification) +mxICanvas2D (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxICanvas2D (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICanvas2D (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxICanvas2D (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1096,7 +1096,7 @@ void fillAndStroke() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/mxImageCanvas.html b/java/docs/com/mxgraph/canvas/mxImageCanvas.html index cf489bd91..8b28ba782 100644 --- a/java/docs/com/mxgraph/canvas/mxImageCanvas.html +++ b/java/docs/com/mxgraph/canvas/mxImageCanvas.html @@ -2,12 +2,12 @@ - + -mxImageCanvas (mxGraph 2.4.0.3 API Specification) +mxImageCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxImageCanvas (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImageCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxImageCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -508,7 +508,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/mxSvgCanvas.html b/java/docs/com/mxgraph/canvas/mxSvgCanvas.html index 983eda532..d76cf09ba 100644 --- a/java/docs/com/mxgraph/canvas/mxSvgCanvas.html +++ b/java/docs/com/mxgraph/canvas/mxSvgCanvas.html @@ -2,12 +2,12 @@ - + -mxSvgCanvas (mxGraph 2.4.0.3 API Specification) +mxSvgCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSvgCanvas (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSvgCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSvgCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -806,7 +806,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/mxVmlCanvas.html b/java/docs/com/mxgraph/canvas/mxVmlCanvas.html index 907e58b1b..e9e123f17 100644 --- a/java/docs/com/mxgraph/canvas/mxVmlCanvas.html +++ b/java/docs/com/mxgraph/canvas/mxVmlCanvas.html @@ -2,12 +2,12 @@ - + -mxVmlCanvas (mxGraph 2.4.0.3 API Specification) +mxVmlCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxVmlCanvas (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxVmlCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxVmlCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -471,7 +471,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/package-frame.html b/java/docs/com/mxgraph/canvas/package-frame.html index c707dfd39..5ab20e814 100644 --- a/java/docs/com/mxgraph/canvas/package-frame.html +++ b/java/docs/com/mxgraph/canvas/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.canvas (mxGraph 2.4.0.3 API Specification) +com.mxgraph.canvas (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/canvas/package-summary.html b/java/docs/com/mxgraph/canvas/package-summary.html index e8924b5f9..f95b6c552 100644 --- a/java/docs/com/mxgraph/canvas/package-summary.html +++ b/java/docs/com/mxgraph/canvas/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.canvas (mxGraph 2.4.0.3 API Specification) +com.mxgraph.canvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.canvas (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.canvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.canvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -193,7 +193,7 @@ This package contains various implementations for painting a graph using -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/package-tree.html b/java/docs/com/mxgraph/canvas/package-tree.html index 677b5fe11..07e631213 100644 --- a/java/docs/com/mxgraph/canvas/package-tree.html +++ b/java/docs/com/mxgraph/canvas/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.canvas Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.canvas Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.canvas Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.canvas Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.canvas Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -129,7 +129,7 @@ Interface Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/canvas/package-use.html b/java/docs/com/mxgraph/canvas/package-use.html index 949242964..0410b72ce 100644 --- a/java/docs/com/mxgraph/canvas/package-use.html +++ b/java/docs/com/mxgraph/canvas/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.canvas (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.canvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.canvas (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.canvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.canvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -371,7 +371,7 @@ Classes in
com.mxgrap -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/costfunction/class-use/mxConstCostFunction.html b/java/docs/com/mxgraph/costfunction/class-use/mxConstCostFunction.html index ea30d7e68..123a3ebd6 100644 --- a/java/docs/com/mxgraph/costfunction/class-use/mxConstCostFunction.html +++ b/java/docs/com/mxgraph/costfunction/class-use/mxConstCostFunction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.costfunction.mxConstCostFunction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.costfunction.mxConstCostFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.costfunction.mxConstCostFunction (mxGraph 2.4.0.3 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.costfunction.mxConstCostFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.costfunction.mxConstCostFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.costfunction.mxConstCostFunction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/costfunction/class-use/mxCostFunction.html b/java/docs/com/mxgraph/costfunction/class-use/mxCostFunction.html index 60426ae7f..096b2bb62 100644 --- a/java/docs/com/mxgraph/costfunction/class-use/mxCostFunction.html +++ b/java/docs/com/mxgraph/costfunction/class-use/mxCostFunction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.costfunction.mxCostFunction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.costfunction.mxCostFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.costfunction.mxCostFunction (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.costfunction.mxCostFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.costfunction.mxCostFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -214,7 +214,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/costfunction/class-use/mxDoubleValCostFunction.html b/java/docs/com/mxgraph/costfunction/class-use/mxDoubleValCostFunction.html index 3cab42c9c..9ab090008 100644 --- a/java/docs/com/mxgraph/costfunction/class-use/mxDoubleValCostFunction.html +++ b/java/docs/com/mxgraph/costfunction/class-use/mxDoubleValCostFunction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.costfunction.mxDoubleValCostFunction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.costfunction.mxDoubleValCostFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.costfunction.mxDoubleValCostFunction (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.costfunction.mxDoubleValCostFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.costfunction.mxDoubleValCostFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.costfunction.mxDoubleValCostFunction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/costfunction/mxConstCostFunction.html b/java/docs/com/mxgraph/costfunction/mxConstCostFunction.html index 249b7ff51..163b4492e 100644 --- a/java/docs/com/mxgraph/costfunction/mxConstCostFunction.html +++ b/java/docs/com/mxgraph/costfunction/mxConstCostFunction.html @@ -2,12 +2,12 @@ - + -mxConstCostFunction (mxGraph 2.4.0.3 API Specification) +mxConstCostFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxConstCostFunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConstCostFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxConstCostFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -219,7 +219,7 @@ public double getCost(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/costfunction/mxCostFunction.html b/java/docs/com/mxgraph/costfunction/mxCostFunction.html index 299289f00..468474c22 100644 --- a/java/docs/com/mxgraph/costfunction/mxCostFunction.html +++ b/java/docs/com/mxgraph/costfunction/mxCostFunction.html @@ -2,12 +2,12 @@ - + -mxCostFunction (mxGraph 2.4.0.3 API Specification) +mxCostFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCostFunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCostFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCostFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -198,7 +198,7 @@ public mxCostFunction() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/costfunction/mxDoubleValCostFunction.html b/java/docs/com/mxgraph/costfunction/mxDoubleValCostFunction.html index fafaf2328..95d488ecc 100644 --- a/java/docs/com/mxgraph/costfunction/mxDoubleValCostFunction.html +++ b/java/docs/com/mxgraph/costfunction/mxDoubleValCostFunction.html @@ -2,12 +2,12 @@ - + -mxDoubleValCostFunction (mxGraph 2.4.0.3 API Specification) +mxDoubleValCostFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxDoubleValCostFunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDoubleValCostFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxDoubleValCostFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -223,7 +223,7 @@ public double getCost(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/costfunction/package-frame.html b/java/docs/com/mxgraph/costfunction/package-frame.html index 364980ad2..b75a246bd 100644 --- a/java/docs/com/mxgraph/costfunction/package-frame.html +++ b/java/docs/com/mxgraph/costfunction/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.costfunction (mxGraph 2.4.0.3 API Specification) +com.mxgraph.costfunction (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/costfunction/package-summary.html b/java/docs/com/mxgraph/costfunction/package-summary.html index c93b78025..7d7158ca2 100644 --- a/java/docs/com/mxgraph/costfunction/package-summary.html +++ b/java/docs/com/mxgraph/costfunction/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.costfunction (mxGraph 2.4.0.3 API Specification) +com.mxgraph.costfunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.costfunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.costfunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.costfunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -130,7 +130,7 @@ Package com.mxgraph.costfunction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/costfunction/package-tree.html b/java/docs/com/mxgraph/costfunction/package-tree.html index 1593a8ffa..3edc64f3d 100644 --- a/java/docs/com/mxgraph/costfunction/package-tree.html +++ b/java/docs/com/mxgraph/costfunction/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.costfunction Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.costfunction Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.costfunction Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.costfunction Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.costfunction Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -121,7 +121,7 @@ Class Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/costfunction/package-use.html b/java/docs/com/mxgraph/costfunction/package-use.html index 8aedd5e84..670d66a7e 100644 --- a/java/docs/com/mxgraph/costfunction/package-use.html +++ b/java/docs/com/mxgraph/costfunction/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.costfunction (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.costfunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.costfunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.costfunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.costfunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -155,7 +155,7 @@ Classes in
com. -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorConstFunction.html b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorConstFunction.html index 104ca8153..7453e5cca 100644 --- a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorConstFunction.html +++ b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorConstFunction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.generatorfunction.mxGeneratorConstFunction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.generatorfunction.mxGeneratorConstFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.generatorfunction.mxGeneratorConstFunction (mxGraph 2. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorConstFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorConstFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.generatorfunction.mxGeneratorConstFunction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorFunction.html b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorFunction.html index 11fd5992f..20aff54c3 100644 --- a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorFunction.html +++ b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorFunction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.generatorfunction.mxGeneratorFunction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.generatorfunction.mxGeneratorFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.generatorfunction.mxGeneratorFunction (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -217,7 +217,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomFunction.html b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomFunction.html index 2446e5d14..a93127c50 100644 --- a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomFunction.html +++ b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomFunction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomFunction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomFunction (mxGraph 2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.generatorfunction.mxGeneratorRandomFunction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomIntFunction.html b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomIntFunction.html index 09572b340..03c4dcaca 100644 --- a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomIntFunction.html +++ b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomIntFunction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomIntFunction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomIntFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomIntFunction (mxGrap function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomIntFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomIntFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.generatorfunction.mxGeneratorRandomIntFunction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/generatorfunction/mxGeneratorConstFunction.html b/java/docs/com/mxgraph/generatorfunction/mxGeneratorConstFunction.html index 0490f2096..f6fc40ba1 100644 --- a/java/docs/com/mxgraph/generatorfunction/mxGeneratorConstFunction.html +++ b/java/docs/com/mxgraph/generatorfunction/mxGeneratorConstFunction.html @@ -2,12 +2,12 @@ - + -mxGeneratorConstFunction (mxGraph 2.4.0.3 API Specification) +mxGeneratorConstFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGeneratorConstFunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGeneratorConstFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGeneratorConstFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -219,7 +219,7 @@ public double getCost(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/generatorfunction/mxGeneratorFunction.html b/java/docs/com/mxgraph/generatorfunction/mxGeneratorFunction.html index af85ab378..708932963 100644 --- a/java/docs/com/mxgraph/generatorfunction/mxGeneratorFunction.html +++ b/java/docs/com/mxgraph/generatorfunction/mxGeneratorFunction.html @@ -2,12 +2,12 @@ - + -mxGeneratorFunction (mxGraph 2.4.0.3 API Specification) +mxGeneratorFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGeneratorFunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGeneratorFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGeneratorFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -198,7 +198,7 @@ public mxGeneratorFunction() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomFunction.html b/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomFunction.html index 62462645f..7290490b8 100644 --- a/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomFunction.html +++ b/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomFunction.html @@ -2,12 +2,12 @@ - + -mxGeneratorRandomFunction (mxGraph 2.4.0.3 API Specification) +mxGeneratorRandomFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGeneratorRandomFunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGeneratorRandomFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGeneratorRandomFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -320,7 +320,7 @@ public void setRoundToDecimals(int roundToDecimals) -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomIntFunction.html b/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomIntFunction.html index edac03fc9..787f4088b 100644 --- a/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomIntFunction.html +++ b/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomIntFunction.html @@ -2,12 +2,12 @@ - + -mxGeneratorRandomIntFunction (mxGraph 2.4.0.3 API Specification) +mxGeneratorRandomIntFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGeneratorRandomIntFunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGeneratorRandomIntFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGeneratorRandomIntFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -280,7 +280,7 @@ public double getMinWeight() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/generatorfunction/package-frame.html b/java/docs/com/mxgraph/generatorfunction/package-frame.html index 7a538aa47..10d225d3c 100644 --- a/java/docs/com/mxgraph/generatorfunction/package-frame.html +++ b/java/docs/com/mxgraph/generatorfunction/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.generatorfunction (mxGraph 2.4.0.3 API Specification) +com.mxgraph.generatorfunction (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/generatorfunction/package-summary.html b/java/docs/com/mxgraph/generatorfunction/package-summary.html index 64c393e53..0b637a2ea 100644 --- a/java/docs/com/mxgraph/generatorfunction/package-summary.html +++ b/java/docs/com/mxgraph/generatorfunction/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.generatorfunction (mxGraph 2.4.0.3 API Specification) +com.mxgraph.generatorfunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.generatorfunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.generatorfunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.generatorfunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -134,7 +134,7 @@ Package com.mxgraph.generatorfunction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/generatorfunction/package-tree.html b/java/docs/com/mxgraph/generatorfunction/package-tree.html index 7953c2c3a..d20c8ba3d 100644 --- a/java/docs/com/mxgraph/generatorfunction/package-tree.html +++ b/java/docs/com/mxgraph/generatorfunction/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.generatorfunction Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.generatorfunction Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.generatorfunction Class Hierarchy (mxGraph 2.4.0.3 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.generatorfunction Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.generatorfunction Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -121,7 +121,7 @@ Class Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/generatorfunction/package-use.html b/java/docs/com/mxgraph/generatorfunction/package-use.html index 83a35ef4e..46a68f451 100644 --- a/java/docs/com/mxgraph/generatorfunction/package-use.html +++ b/java/docs/com/mxgraph/generatorfunction/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.generatorfunction (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.generatorfunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.generatorfunction (mxGraph 2.4.0.3 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.generatorfunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.generatorfunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -155,7 +155,7 @@ Classes in
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/class-use/mxCellCodec.html b/java/docs/com/mxgraph/io/class-use/mxCellCodec.html index 201ae27e9..93eb55c17 100644 --- a/java/docs/com/mxgraph/io/class-use/mxCellCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxCellCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxCellCodec -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html index 32ece4ba8..5c99d3cc1 100644 --- a/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 2.4.0.3 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxChildChangeCodec -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/class-use/mxCodec.html b/java/docs/com/mxgraph/io/class-use/mxCodec.html index f0968d029..f021a393e 100644 --- a/java/docs/com/mxgraph/io/class-use/mxCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxCodec (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.mxCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -528,7 +528,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html b/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html index 3fe9e7210..bea78cce6 100644 --- a/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html +++ b/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxCodecRegistry -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/class-use/mxGdCodec.html b/java/docs/com/mxgraph/io/class-use/mxGdCodec.html index 98ced6997..e6e3ab7eb 100644 --- a/java/docs/com/mxgraph/io/class-use/mxGdCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxGdCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxGdCodec -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/class-use/mxGdCodec.mxGDParseState.html b/java/docs/com/mxgraph/io/class-use/mxGdCodec.mxGDParseState.html index a12046913..01562f790 100644 --- a/java/docs/com/mxgraph/io/class-use/mxGdCodec.mxGDParseState.html +++ b/java/docs/com/mxgraph/io/class-use/mxGdCodec.mxGDParseState.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxGdCodec.mxGDParseState (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.mxGdCodec.mxGDParseState (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGdCodec.mxGDParseState (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec.mxGDParseState (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec.mxGDParseState (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -154,7 +154,7 @@ the order they are declared. -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html index 290a6b146..baf1e26ce 100644 --- a/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 2.4.0.3 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxGenericChangeCodec -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/class-use/mxGraphMlCodec.html b/java/docs/com/mxgraph/io/class-use/mxGraphMlCodec.html index cf352d3f7..5e3a8b3b7 100644 --- a/java/docs/com/mxgraph/io/class-use/mxGraphMlCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxGraphMlCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxGraphMlCodec -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/class-use/mxModelCodec.html b/java/docs/com/mxgraph/io/class-use/mxModelCodec.html index 01cb5cf30..4c93352c3 100644 --- a/java/docs/com/mxgraph/io/class-use/mxModelCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxModelCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxModelCodec -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html b/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html index 37b1eaaf4..80bb1923e 100644 --- a/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -252,7 +252,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html index f7a90dc0b..2667b31ce 100644 --- a/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxRootChangeCodec -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html b/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html index d2bd1aafb..4f1d4fbe0 100644 --- a/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxStylesheetCodec -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html index 98b89a2d8..f020f80b7 100644 --- a/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxTerminalChangeCodec -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlConstants.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlConstants.html index 7130016ef..efb815ccb 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlConstants.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlConstants.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 2.4.0.3 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.graphml.mxGraphMlConstants -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlData.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlData.html index 161e74aac..2c187b173 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlData.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlData.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -274,7 +274,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlEdge.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlEdge.html index 64ecf9ae8..302a735db 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlEdge.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlEdge.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -208,7 +208,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlGraph.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlGraph.html index 9ee97e5a7..3cd4d0cc3 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlGraph.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlGraph.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -218,7 +218,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.html index d22b9d2ef..ad7a81e0b 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 2.4.0.3 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -161,7 +161,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyForValues.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyForValues.html index 46ddae71b..cd8c6a3b5 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyForValues.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyForValues.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -213,7 +213,7 @@ the order they are declared. -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyTypeValues.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyTypeValues.html index 6cffd0632..85c779954 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyTypeValues.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyTypeValues.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -213,7 +213,7 @@ the order they are declared. -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKeyManager.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKeyManager.html index 237a233ad..74fb6fd0e 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKeyManager.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKeyManager.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 2.4.0.3 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlNode.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlNode.html index a9f118c54..b29e61a56 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlNode.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlNode.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -216,7 +216,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlPort.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlPort.html index e6b453137..43fdb4a5a 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlPort.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlPort.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -161,7 +161,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeEdge.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeEdge.html index a3c9ff8db..b7ea87fcc 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeEdge.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeEdge.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 2.4.0.3 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -179,7 +179,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeNode.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeNode.html index d29a54bc7..b5d89224c 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeNode.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeNode.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 2.4.0.3 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -179,7 +179,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlUtils.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlUtils.html index 042c0cee4..32114cc68 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlUtils.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlUtils.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.graphml.mxGraphMlUtils -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlConstants.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlConstants.html index 873c2b5ff..8f7bebb80 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlConstants.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlConstants.html @@ -2,12 +2,12 @@ - + -mxGraphMlConstants (mxGraph 2.4.0.3 API Specification) +mxGraphMlConstants (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlConstants (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlConstants (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlConstants (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -979,7 +979,7 @@ public mxGraphMlConstants() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlData.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlData.html index e5822346e..8b4b6fd09 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlData.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlData.html @@ -2,12 +2,12 @@ - + -mxGraphMlData (mxGraph 2.4.0.3 API Specification) +mxGraphMlData (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlData (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlData (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlData (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -476,7 +476,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlEdge.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlEdge.html index 1f71885bc..298c218ae 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlEdge.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlEdge.html @@ -2,12 +2,12 @@ - + -mxGraphMlEdge (mxGraph 2.4.0.3 API Specification) +mxGraphMlEdge (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlEdge (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlEdge (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlEdge (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -572,7 +572,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlGraph.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlGraph.html index 9bb5e3018..8fff471d8 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlGraph.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlGraph.html @@ -2,12 +2,12 @@ - + -mxGraphMlGraph (mxGraph 2.4.0.3 API Specification) +mxGraphMlGraph (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlGraph (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlGraph (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlGraph (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -525,7 +525,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.html index 084905170..5c636b316 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.html @@ -2,12 +2,12 @@ - + -mxGraphMlKey (mxGraph 2.4.0.3 API Specification) +mxGraphMlKey (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlKey (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlKey (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlKey (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -557,7 +557,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyForValues.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyForValues.html index 325e779aa..7f1cafa3b 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyForValues.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyForValues.html @@ -2,12 +2,12 @@ - + -mxGraphMlKey.keyForValues (mxGraph 2.4.0.3 API Specification) +mxGraphMlKey.keyForValues (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlKey.keyForValues (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlKey.keyForValues (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlKey.keyForValues (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -368,7 +368,7 @@ with the specified name -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyTypeValues.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyTypeValues.html index 461aa4fb7..e365798f4 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyTypeValues.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyTypeValues.html @@ -2,12 +2,12 @@ - + -mxGraphMlKey.keyTypeValues (mxGraph 2.4.0.3 API Specification) +mxGraphMlKey.keyTypeValues (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlKey.keyTypeValues (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlKey.keyTypeValues (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlKey.keyTypeValues (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -352,7 +352,7 @@ with the specified name -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlKeyManager.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlKeyManager.html index 0bf4de8cc..40cb16715 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlKeyManager.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlKeyManager.html @@ -2,12 +2,12 @@ - + -mxGraphMlKeyManager (mxGraph 2.4.0.3 API Specification) +mxGraphMlKeyManager (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlKeyManager (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlKeyManager (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlKeyManager (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -251,7 +251,7 @@ public void setKeyMap(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlNode.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlNode.html index 712a062e5..25cd3007e 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlNode.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlNode.html @@ -2,12 +2,12 @@ - + -mxGraphMlNode (mxGraph 2.4.0.3 API Specification) +mxGraphMlNode (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlNode (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlNode (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlNode (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -432,7 +432,7 @@ public void setNodeData(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlPort.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlPort.html index 78930adff..9e8cd3588 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlPort.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlPort.html @@ -2,12 +2,12 @@ - + -mxGraphMlPort (mxGraph 2.4.0.3 API Specification) +mxGraphMlPort (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlPort (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlPort (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlPort (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -316,7 +316,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeEdge.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeEdge.html index 4be409a93..1fbd51ff3 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeEdge.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeEdge.html @@ -2,12 +2,12 @@ - + -mxGraphMlShapeEdge (mxGraph 2.4.0.3 API Specification) +mxGraphMlShapeEdge (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlShapeEdge (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlShapeEdge (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlShapeEdge (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -410,7 +410,7 @@ public void setEdgeTarget(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeNode.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeNode.html index 66b566ac9..97e33a9d5 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeNode.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeNode.html @@ -2,12 +2,12 @@ - + -mxGraphMlShapeNode (mxGraph 2.4.0.3 API Specification) +mxGraphMlShapeNode (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlShapeNode (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlShapeNode (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlShapeNode (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -488,7 +488,7 @@ public void setDataStyle(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlUtils.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlUtils.html index d364d2f9d..3cc646b5d 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlUtils.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlUtils.html @@ -2,12 +2,12 @@ - + -mxGraphMlUtils (mxGraph 2.4.0.3 API Specification) +mxGraphMlUtils (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlUtils (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlUtils (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlUtils (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -412,7 +412,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/package-frame.html b/java/docs/com/mxgraph/io/graphml/package-frame.html index 40d6cc4ef..6180bded5 100644 --- a/java/docs/com/mxgraph/io/graphml/package-frame.html +++ b/java/docs/com/mxgraph/io/graphml/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io.graphml (mxGraph 2.4.0.3 API Specification) +com.mxgraph.io.graphml (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/io/graphml/package-summary.html b/java/docs/com/mxgraph/io/graphml/package-summary.html index 3a92a05ac..5611bc968 100644 --- a/java/docs/com/mxgraph/io/graphml/package-summary.html +++ b/java/docs/com/mxgraph/io/graphml/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io.graphml (mxGraph 2.4.0.3 API Specification) +com.mxgraph.io.graphml (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io.graphml (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io.graphml (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.io.graphml (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -181,7 +181,7 @@ Package com.mxgraph.io.graphml -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/package-tree.html b/java/docs/com/mxgraph/io/graphml/package-tree.html index 9975deeda..09f09d106 100644 --- a/java/docs/com/mxgraph/io/graphml/package-tree.html +++ b/java/docs/com/mxgraph/io/graphml/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io.graphml Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.io.graphml Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io.graphml Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io.graphml Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.io.graphml Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -128,7 +128,7 @@ Enum Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/graphml/package-use.html b/java/docs/com/mxgraph/io/graphml/package-use.html index 12098a047..deb60117c 100644 --- a/java/docs/com/mxgraph/io/graphml/package-use.html +++ b/java/docs/com/mxgraph/io/graphml/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.io.graphml (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.io.graphml (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.io.graphml (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.io.graphml (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.io.graphml (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -227,7 +227,7 @@ Classes in
com -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/mxCellCodec.html b/java/docs/com/mxgraph/io/mxCellCodec.html index 8134eb1f8..1cce0b5a9 100644 --- a/java/docs/com/mxgraph/io/mxCellCodec.html +++ b/java/docs/com/mxgraph/io/mxCellCodec.html @@ -2,12 +2,12 @@ - + -mxCellCodec (mxGraph 2.4.0.3 API Specification) +mxCellCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCellCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCellCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -361,7 +361,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/mxChildChangeCodec.html b/java/docs/com/mxgraph/io/mxChildChangeCodec.html index 11e653c46..cd0b0088c 100644 --- a/java/docs/com/mxgraph/io/mxChildChangeCodec.html +++ b/java/docs/com/mxgraph/io/mxChildChangeCodec.html @@ -2,12 +2,12 @@ - + -mxChildChangeCodec (mxGraph 2.4.0.3 API Specification) +mxChildChangeCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxChildChangeCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxChildChangeCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxChildChangeCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -387,7 +387,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/mxCodec.html b/java/docs/com/mxgraph/io/mxCodec.html index 6889e0568..b48626b46 100644 --- a/java/docs/com/mxgraph/io/mxCodec.html +++ b/java/docs/com/mxgraph/io/mxCodec.html @@ -2,12 +2,12 @@ - + -mxCodec (mxGraph 2.4.0.3 API Specification) +mxCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -764,7 +764,7 @@ public static void setAttribute(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/mxCodecRegistry.html b/java/docs/com/mxgraph/io/mxCodecRegistry.html index 839b0c9ef..dffeb2ba3 100644 --- a/java/docs/com/mxgraph/io/mxCodecRegistry.html +++ b/java/docs/com/mxgraph/io/mxCodecRegistry.html @@ -2,12 +2,12 @@ - + -mxCodecRegistry (mxGraph 2.4.0.3 API Specification) +mxCodecRegistry (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCodecRegistry (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCodecRegistry (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCodecRegistry (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -439,7 +439,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/mxGdCodec.html b/java/docs/com/mxgraph/io/mxGdCodec.html index 23118261c..5fbf203bd 100644 --- a/java/docs/com/mxgraph/io/mxGdCodec.html +++ b/java/docs/com/mxgraph/io/mxGdCodec.html @@ -2,12 +2,12 @@ - + -mxGdCodec (mxGraph 2.4.0.3 API Specification) +mxGdCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGdCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGdCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGdCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -299,7 +299,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/mxGdCodec.mxGDParseState.html b/java/docs/com/mxgraph/io/mxGdCodec.mxGDParseState.html index 589035e02..5ab4c43d9 100644 --- a/java/docs/com/mxgraph/io/mxGdCodec.mxGDParseState.html +++ b/java/docs/com/mxgraph/io/mxGdCodec.mxGDParseState.html @@ -2,12 +2,12 @@ - + -mxGdCodec.mxGDParseState (mxGraph 2.4.0.3 API Specification) +mxGdCodec.mxGDParseState (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGdCodec.mxGDParseState (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGdCodec.mxGDParseState (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGdCodec.mxGDParseState (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -320,7 +320,7 @@ with the specified name -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/mxGenericChangeCodec.html b/java/docs/com/mxgraph/io/mxGenericChangeCodec.html index 7c6ee4e23..dcd255c65 100644 --- a/java/docs/com/mxgraph/io/mxGenericChangeCodec.html +++ b/java/docs/com/mxgraph/io/mxGenericChangeCodec.html @@ -2,12 +2,12 @@ - + -mxGenericChangeCodec (mxGraph 2.4.0.3 API Specification) +mxGenericChangeCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGenericChangeCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGenericChangeCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGenericChangeCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -314,7 +314,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/mxGraphMlCodec.html b/java/docs/com/mxgraph/io/mxGraphMlCodec.html index 4d2de40a8..1801b0162 100644 --- a/java/docs/com/mxgraph/io/mxGraphMlCodec.html +++ b/java/docs/com/mxgraph/io/mxGraphMlCodec.html @@ -2,12 +2,12 @@ - + -mxGraphMlCodec (mxGraph 2.4.0.3 API Specification) +mxGraphMlCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphMlCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -340,7 +340,7 @@ public static void addEdgeData(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/mxModelCodec.html b/java/docs/com/mxgraph/io/mxModelCodec.html index 0ca5c3ee9..000123818 100644 --- a/java/docs/com/mxgraph/io/mxModelCodec.html +++ b/java/docs/com/mxgraph/io/mxModelCodec.html @@ -2,12 +2,12 @@ - + -mxModelCodec (mxGraph 2.4.0.3 API Specification) +mxModelCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxModelCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxModelCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxModelCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -327,7 +327,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/mxObjectCodec.html b/java/docs/com/mxgraph/io/mxObjectCodec.html index ccee32dfe..b9825ace4 100644 --- a/java/docs/com/mxgraph/io/mxObjectCodec.html +++ b/java/docs/com/mxgraph/io/mxObjectCodec.html @@ -2,12 +2,12 @@ - + -mxObjectCodec (mxGraph 2.4.0.3 API Specification) +mxObjectCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxObjectCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxObjectCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxObjectCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1504,7 +1504,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/mxRootChangeCodec.html b/java/docs/com/mxgraph/io/mxRootChangeCodec.html index aa7f30889..a7ecef670 100644 --- a/java/docs/com/mxgraph/io/mxRootChangeCodec.html +++ b/java/docs/com/mxgraph/io/mxRootChangeCodec.html @@ -2,12 +2,12 @@ - + -mxRootChangeCodec (mxGraph 2.4.0.3 API Specification) +mxRootChangeCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxRootChangeCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRootChangeCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxRootChangeCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -349,7 +349,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/mxStylesheetCodec.html b/java/docs/com/mxgraph/io/mxStylesheetCodec.html index 050014097..c872036df 100644 --- a/java/docs/com/mxgraph/io/mxStylesheetCodec.html +++ b/java/docs/com/mxgraph/io/mxStylesheetCodec.html @@ -2,12 +2,12 @@ - + -mxStylesheetCodec (mxGraph 2.4.0.3 API Specification) +mxStylesheetCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxStylesheetCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStylesheetCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxStylesheetCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -344,7 +344,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/mxTerminalChangeCodec.html b/java/docs/com/mxgraph/io/mxTerminalChangeCodec.html index 52588d65c..9ff62ebc7 100644 --- a/java/docs/com/mxgraph/io/mxTerminalChangeCodec.html +++ b/java/docs/com/mxgraph/io/mxTerminalChangeCodec.html @@ -2,12 +2,12 @@ - + -mxTerminalChangeCodec (mxGraph 2.4.0.3 API Specification) +mxTerminalChangeCodec (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxTerminalChangeCodec (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxTerminalChangeCodec (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxTerminalChangeCodec (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -283,7 +283,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/package-frame.html b/java/docs/com/mxgraph/io/package-frame.html index 8eb0efafe..eee2f8b77 100644 --- a/java/docs/com/mxgraph/io/package-frame.html +++ b/java/docs/com/mxgraph/io/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io (mxGraph 2.4.0.3 API Specification) +com.mxgraph.io (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/io/package-summary.html b/java/docs/com/mxgraph/io/package-summary.html index 05afeb0c6..14dbe713d 100644 --- a/java/docs/com/mxgraph/io/package-summary.html +++ b/java/docs/com/mxgraph/io/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io (mxGraph 2.4.0.3 API Specification) +com.mxgraph.io (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.io (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -199,7 +199,7 @@ This package contains all classes for input/output. -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/package-tree.html b/java/docs/com/mxgraph/io/package-tree.html index 17e6a7b24..c6cfec450 100644 --- a/java/docs/com/mxgraph/io/package-tree.html +++ b/java/docs/com/mxgraph/io/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.io Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.io Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -130,7 +130,7 @@ Enum Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/io/package-use.html b/java/docs/com/mxgraph/io/package-use.html index cc967b51c..cf311e332 100644 --- a/java/docs/com/mxgraph/io/package-use.html +++ b/java/docs/com/mxgraph/io/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.io (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.io (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.io (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.io (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.io (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -167,7 +167,7 @@ Classes in
com.mxgraph.io -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html b/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html index 1d7535f1f..bbf1623a9 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 2.4.0.3 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxCircleLayout -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html index b7de149dc..3d20d791b 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 2.4.0.3 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -162,7 +162,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html index 48fea27e4..e651ed69a 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 2.4.0.3 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -255,7 +255,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html index a971c71d3..40d733939 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 2.4.0.3 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -302,7 +302,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html index f936deda0..9c4867776 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html index d93543f62..7b79ac50c 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 2.4.0.3 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxCompactTreeLayout -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html b/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html index 125131ed3..2abc5f581 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxEdgeLabelLayout -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html b/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html index 801ada371..6133fee2e 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 2.4.0.3 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxFastOrganicLayout -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html b/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html index c72c67321..5b6cb8b17 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -260,7 +260,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html b/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html index d52137046..f2388cf0d 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -315,7 +315,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html index 19cf4e099..946a8bd81 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html +++ b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 2.4.0.3 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -153,7 +153,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html index b742bb59a..ee426cb07 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 2.4.0.3 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxOrganicLayout -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html b/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html index 27ee92864..4eda60640 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxParallelEdgeLayout -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html b/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html index e1d307151..f24d5bdab 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxPartitionLayout -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html b/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html index ea0973eba..55b3abd71 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxStackLayout -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html b/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html index 394d43c96..8b6aa71bb 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html +++ b/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 2.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -240,7 +240,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html index 2265c2950..c6859e159 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -314,7 +314,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html index ef8686ce0..359860c0a 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGrap function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -297,7 +297,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html index 003e612dd..ff272c8ab 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.Ce function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -176,7 +176,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html index 7d1923ef2..9c4b1708e 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGra function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -259,7 +259,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html index 9f7e86c06..b5a99d6b6 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGrap function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -318,7 +318,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html index 89681e34a..70840c950 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGrap function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html index 74ba430f5..5b3c40cc5 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html @@ -2,12 +2,12 @@ - + -mxGraphAbstractHierarchyCell (mxGraph 2.4.0.3 API Specification) +mxGraphAbstractHierarchyCell (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphAbstractHierarchyCell (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphAbstractHierarchyCell (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphAbstractHierarchyCell (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -599,7 +599,7 @@ public void setY(int layer, -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html index 77a3ef1b8..ef1c9d6b5 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html @@ -2,12 +2,12 @@ - + -mxGraphHierarchyEdge (mxGraph 2.4.0.3 API Specification) +mxGraphHierarchyEdge (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyEdge (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyEdge (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphHierarchyEdge (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -527,7 +527,7 @@ public void setGeneralPurposeVariable(int layer, -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html index 49c5ba96d..1aadcd3fc 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html @@ -2,12 +2,12 @@ - + -mxGraphHierarchyModel.CellVisitor (mxGraph 2.4.0.3 API Specification) +mxGraphHierarchyModel.CellVisitor (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyModel.CellVisitor (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyModel.CellVisitor (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphHierarchyModel.CellVisitor (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -187,7 +187,7 @@ void visit(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html index c61751548..193b91c86 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html @@ -2,12 +2,12 @@ - + -mxGraphHierarchyModel (mxGraph 2.4.0.3 API Specification) +mxGraphHierarchyModel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyModel (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyModel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphHierarchyModel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -680,7 +680,7 @@ public void setDfsCount(int dfsCount) -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html index ad1d30eae..8518960af 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html @@ -2,12 +2,12 @@ - + -mxGraphHierarchyNode (mxGraph 2.4.0.3 API Specification) +mxGraphHierarchyNode (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyNode (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyNode (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphHierarchyNode (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -526,7 +526,7 @@ public boolean isAncestor(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html index 90eb95571..5bd3f1a4e 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html @@ -2,12 +2,12 @@ - + -mxGraphHierarchyRank (mxGraph 2.4.0.3 API Specification) +mxGraphHierarchyRank (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyRank (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyRank (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphHierarchyRank (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -233,7 +233,7 @@ public mxGraphHierarchyRank() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/package-frame.html b/java/docs/com/mxgraph/layout/hierarchical/model/package-frame.html index 145965ee8..fd7ee9edc 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-frame.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.model (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.hierarchical.model (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html b/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html index d1db80ab3..263cfd936 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.model (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.hierarchical.model (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.model (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.model (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.model (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -154,7 +154,7 @@ Package com.mxgraph.layout.hierarchical.model -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html b/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html index cec60e044..e5bbc44c3 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -137,7 +137,7 @@ Interface Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html b/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html index 33144d1b0..ea10f55a6 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -211,7 +211,7 @@ Classes in
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html b/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html index cc0c51af0..482434de3 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html +++ b/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html @@ -2,12 +2,12 @@ - + -mxHierarchicalLayout (mxGraph 2.4.0.3 API Specification) +mxHierarchicalLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxHierarchicalLayout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHierarchicalLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxHierarchicalLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1290,7 +1290,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-frame.html b/java/docs/com/mxgraph/layout/hierarchical/package-frame.html index 10a1eae86..b4e44e2d3 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/package-frame.html +++ b/java/docs/com/mxgraph/layout/hierarchical/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.hierarchical (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-summary.html b/java/docs/com/mxgraph/layout/hierarchical/package-summary.html index a6c8cf5e1..01a86f570 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/package-summary.html +++ b/java/docs/com/mxgraph/layout/hierarchical/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.hierarchical (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -122,7 +122,7 @@ Package com.mxgraph.layout.hierarchical -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-tree.html b/java/docs/com/mxgraph/layout/hierarchical/package-tree.html index 4d9ad22d7..d9ca57a74 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/package-tree.html +++ b/java/docs/com/mxgraph/layout/hierarchical/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 2.4.0.3 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -121,7 +121,7 @@ Class Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-use.html b/java/docs/com/mxgraph/layout/hierarchical/package-use.html index cad0adb4d..328c3128c 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/package-use.html +++ b/java/docs/com/mxgraph/layout/hierarchical/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout.hierarchical (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.layout.hierarchical (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical (mxGraph 2.4.0.3 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.hierarchical (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -154,7 +154,7 @@ Classes in
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html index 7acd5b4a8..987928b74 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaS function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpa -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html index f8c948494..90af61095 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.Weigh function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.Weighte -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html index 43243949a..19e13bfe6 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGr function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html index 514184102..b464ba513 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStag function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -161,7 +161,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html index 1b69fa312..f1d8f98ba 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduct function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReductio -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html index e88edd5d9..fe83c29b3 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduct function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReductio -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html index c5bb5908e..096f4469f 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGra function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html index 58535b2a8..02fb3158c 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html @@ -2,12 +2,12 @@ - + -mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.4.0.3 API Specification) +mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -301,7 +301,7 @@ protected mxCoordinateAssignment.AreaSpatialCache() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html index 83bb5e7e5..a7e2f00ce 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html @@ -2,12 +2,12 @@ - + -mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.4.0.3 API Specification) +mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -364,7 +364,7 @@ public int compareTo(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html index ecaa8d135..0bdb0d466 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html @@ -2,12 +2,12 @@ - + -mxCoordinateAssignment (mxGraph 2.4.0.3 API Specification) +mxCoordinateAssignment (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCoordinateAssignment (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCoordinateAssignment (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCoordinateAssignment (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1408,7 +1408,7 @@ public void setLoggerLevel(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html index 7a6bab0e6..73f0a3a6d 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html @@ -2,12 +2,12 @@ - + -mxHierarchicalLayoutStage (mxGraph 2.4.0.3 API Specification) +mxHierarchicalLayoutStage (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxHierarchicalLayoutStage (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHierarchicalLayoutStage (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxHierarchicalLayoutStage (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -180,7 +180,7 @@ void execute(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html index 3653ff30d..a1c341b84 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html @@ -2,12 +2,12 @@ - + -mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.4.0.3 API Specification) +mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.4.0.3 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -269,7 +269,7 @@ public int compareTo(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html index 5e338e05f..a3bed1f77 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html @@ -2,12 +2,12 @@ - + -mxMedianHybridCrossingReduction (mxGraph 2.4.0.3 API Specification) +mxMedianHybridCrossingReduction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxMedianHybridCrossingReduction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMedianHybridCrossingReduction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxMedianHybridCrossingReduction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -412,7 +412,7 @@ protected int calculateRankCrossing(int i, -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html index 4a36f9bf2..268538512 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html @@ -2,12 +2,12 @@ - + -mxMinimumCycleRemover (mxGraph 2.4.0.3 API Specification) +mxMinimumCycleRemover (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxMinimumCycleRemover (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMinimumCycleRemover (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxMinimumCycleRemover (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -264,7 +264,7 @@ public void execute(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/package-frame.html b/java/docs/com/mxgraph/layout/hierarchical/stage/package-frame.html index 850c71dee..4a364b8c4 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-frame.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.stage (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.hierarchical.stage (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html b/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html index 11b2fbc36..23171fdb8 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.stage (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.hierarchical.stage (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.stage (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.stage (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.stage (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -144,7 +144,7 @@ Package com.mxgraph.layout.hierarchical.stage -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html b/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html index a94bfa4fe..9db5d809f 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -136,7 +136,7 @@ Interface Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html b/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html index 15cf87de5..e85ce6d0d 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -135,7 +135,7 @@ Classes in
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxCircleLayout.html b/java/docs/com/mxgraph/layout/mxCircleLayout.html index abe53495a..d2afe025d 100644 --- a/java/docs/com/mxgraph/layout/mxCircleLayout.html +++ b/java/docs/com/mxgraph/layout/mxCircleLayout.html @@ -2,12 +2,12 @@ - + -mxCircleLayout (mxGraph 2.4.0.3 API Specification) +mxCircleLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCircleLayout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCircleLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCircleLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -671,7 +671,7 @@ public void circle(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html index f21048d6f..76df69b37 100644 --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html @@ -2,12 +2,12 @@ - + -mxCompactTreeLayout.Polygon (mxGraph 2.4.0.3 API Specification) +mxCompactTreeLayout.Polygon (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout.Polygon (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout.Polygon (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCompactTreeLayout.Polygon (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -278,7 +278,7 @@ protected mxCompactTreeLayout.Polygon() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html index 67eb48466..4650a2dad 100644 --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html @@ -2,12 +2,12 @@ - + -mxCompactTreeLayout.Polyline (mxGraph 2.4.0.3 API Specification) +mxCompactTreeLayout.Polyline (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout.Polyline (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout.Polyline (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCompactTreeLayout.Polyline (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -264,7 +264,7 @@ protected mxCompactTreeLayout.Polyline(double dx, -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html index 29a77002a..0fa793a58 100644 --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html @@ -2,12 +2,12 @@ - + -mxCompactTreeLayout.TreeNode (mxGraph 2.4.0.3 API Specification) +mxCompactTreeLayout.TreeNode (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout.TreeNode (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout.TreeNode (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCompactTreeLayout.TreeNode (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -384,7 +384,7 @@ public mxCompactTreeLayout.TreeNode(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html index 56656e5dd..d3ac4e4d9 100644 --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html @@ -2,12 +2,12 @@ - + -mxCompactTreeLayout.WeightedCellSorter (mxGraph 2.4.0.3 API Specification) +mxCompactTreeLayout.WeightedCellSorter (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout.WeightedCellSorter (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout.WeightedCellSorter (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCompactTreeLayout.WeightedCellSorter (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -344,7 +344,7 @@ public int compareTo(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.html index fe41c0bc4..3f0b9ad90 100644 --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.html +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.html @@ -2,12 +2,12 @@ - + -mxCompactTreeLayout (mxGraph 2.4.0.3 API Specification) +mxCompactTreeLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCompactTreeLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1455,7 +1455,7 @@ protected void processNodeOutgoing(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html b/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html index 5a7feecfa..8bf8a2533 100644 --- a/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html +++ b/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html @@ -2,12 +2,12 @@ - + -mxEdgeLabelLayout (mxGraph 2.4.0.3 API Specification) +mxEdgeLabelLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeLabelLayout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeLabelLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxEdgeLabelLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -294,7 +294,7 @@ protected void avoid(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html b/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html index 73acb0cbf..10526e6c8 100644 --- a/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html +++ b/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html @@ -2,12 +2,12 @@ - + -mxFastOrganicLayout (mxGraph 2.4.0.3 API Specification) +mxFastOrganicLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxFastOrganicLayout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxFastOrganicLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxFastOrganicLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1171,7 +1171,7 @@ protected void calcRepulsion() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxGraphLayout.html b/java/docs/com/mxgraph/layout/mxGraphLayout.html index 557cc898d..49ddbc65e 100644 --- a/java/docs/com/mxgraph/layout/mxGraphLayout.html +++ b/java/docs/com/mxgraph/layout/mxGraphLayout.html @@ -2,12 +2,12 @@ - + -mxGraphLayout (mxGraph 2.4.0.3 API Specification) +mxGraphLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphLayout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -747,7 +747,7 @@ public void arrangeGroups(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxIGraphLayout.html b/java/docs/com/mxgraph/layout/mxIGraphLayout.html index 24d9c0ae7..f0bd61f3d 100644 --- a/java/docs/com/mxgraph/layout/mxIGraphLayout.html +++ b/java/docs/com/mxgraph/layout/mxIGraphLayout.html @@ -2,12 +2,12 @@ - + -mxIGraphLayout (mxGraph 2.4.0.3 API Specification) +mxIGraphLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxIGraphLayout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxIGraphLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxIGraphLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -203,7 +203,7 @@ void moveCell(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html b/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html index 44dad7df2..aba026d04 100644 --- a/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html +++ b/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html @@ -2,12 +2,12 @@ - + -mxOrganicLayout.CellWrapper (mxGraph 2.4.0.3 API Specification) +mxOrganicLayout.CellWrapper (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxOrganicLayout.CellWrapper (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxOrganicLayout.CellWrapper (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxOrganicLayout.CellWrapper (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -741,7 +741,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxOrganicLayout.html b/java/docs/com/mxgraph/layout/mxOrganicLayout.html index 61117186b..0836b3c86 100644 --- a/java/docs/com/mxgraph/layout/mxOrganicLayout.html +++ b/java/docs/com/mxgraph/layout/mxOrganicLayout.html @@ -2,12 +2,12 @@ - + -mxOrganicLayout (mxGraph 2.4.0.3 API Specification) +mxOrganicLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxOrganicLayout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxOrganicLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxOrganicLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -2547,7 +2547,7 @@ public void setResetEdges(boolean resetEdges) -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html b/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html index 258a61592..38aaa529c 100644 --- a/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html +++ b/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html @@ -2,12 +2,12 @@ - + -mxParallelEdgeLayout (mxGraph 2.4.0.3 API Specification) +mxParallelEdgeLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxParallelEdgeLayout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxParallelEdgeLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxParallelEdgeLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -381,7 +381,7 @@ protected void route(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxPartitionLayout.html b/java/docs/com/mxgraph/layout/mxPartitionLayout.html index 1f5f9f880..4dac643a2 100644 --- a/java/docs/com/mxgraph/layout/mxPartitionLayout.html +++ b/java/docs/com/mxgraph/layout/mxPartitionLayout.html @@ -2,12 +2,12 @@ - + -mxPartitionLayout (mxGraph 2.4.0.3 API Specification) +mxPartitionLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPartitionLayout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPartitionLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPartitionLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -466,7 +466,7 @@ public void execute(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/mxStackLayout.html b/java/docs/com/mxgraph/layout/mxStackLayout.html index ada805833..448835840 100644 --- a/java/docs/com/mxgraph/layout/mxStackLayout.html +++ b/java/docs/com/mxgraph/layout/mxStackLayout.html @@ -2,12 +2,12 @@ - + -mxStackLayout (mxGraph 2.4.0.3 API Specification) +mxStackLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxStackLayout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStackLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxStackLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -568,7 +568,7 @@ public void execute(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html b/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html index 3744f70ea..75a1c146c 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html +++ b/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.orthogonal.mxOrthogonalLayout -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html index 63a20c581..0fb7bcbb9 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 2.4 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html index 561c96d96..67db94b65 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 2.4.0.3 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.orthogonal.model.mxPointPair -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html index fe7b06faa..161b7ea09 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 2.4.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.orthogonal.model.mxPointSequence -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html index 9a82ad7a5..b85114c40 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 2.4.0.3 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.orthogonal.model.mxSegment -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html index 5ac49c7d0..cb708a41d 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html @@ -2,12 +2,12 @@ - + -mxOrthogonalModel (mxGraph 2.4.0.3 API Specification) +mxOrthogonalModel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxOrthogonalModel (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxOrthogonalModel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxOrthogonalModel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -187,7 +187,7 @@ public mxOrthogonalModel(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html index e029802d7..8b8babb68 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html @@ -2,12 +2,12 @@ - + -mxPointPair (mxGraph 2.4.0.3 API Specification) +mxPointPair (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPointPair (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPointPair (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPointPair (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -183,7 +183,7 @@ public mxPointPair() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html index bc1594132..847230310 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html @@ -2,12 +2,12 @@ - + -mxPointSequence (mxGraph 2.4.0.3 API Specification) +mxPointSequence (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPointSequence (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPointSequence (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPointSequence (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -183,7 +183,7 @@ public mxPointSequence() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html index ec87425e0..ef2848250 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html @@ -2,12 +2,12 @@ - + -mxSegment (mxGraph 2.4.0.3 API Specification) +mxSegment (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSegment (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSegment (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSegment (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -183,7 +183,7 @@ public mxSegment() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/package-frame.html b/java/docs/com/mxgraph/layout/orthogonal/model/package-frame.html index 4c0a2b567..612c5351a 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-frame.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal.model (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.orthogonal.model (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html b/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html index 4b3df772f..49b4a5347 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal.model (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.orthogonal.model (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal.model (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal.model (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal.model (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -134,7 +134,7 @@ Package com.mxgraph.layout.orthogonal.model -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html b/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html index 701737ebd..f1421c175 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -118,7 +118,7 @@ Class Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html b/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html index 98c2f9328..356caa05f 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -135,7 +135,7 @@ Classes in
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html b/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html index f9d7f3056..6ecb10966 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html +++ b/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html @@ -2,12 +2,12 @@ - + -mxOrthogonalLayout (mxGraph 2.4.0.3 API Specification) +mxOrthogonalLayout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxOrthogonalLayout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxOrthogonalLayout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxOrthogonalLayout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -297,7 +297,7 @@ public void execute(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-frame.html b/java/docs/com/mxgraph/layout/orthogonal/package-frame.html index 658bc1263..7990c4562 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/package-frame.html +++ b/java/docs/com/mxgraph/layout/orthogonal/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.orthogonal (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-summary.html b/java/docs/com/mxgraph/layout/orthogonal/package-summary.html index d13ed8634..3c1488e0a 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/package-summary.html +++ b/java/docs/com/mxgraph/layout/orthogonal/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.orthogonal (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -122,7 +122,7 @@ Package com.mxgraph.layout.orthogonal -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-tree.html b/java/docs/com/mxgraph/layout/orthogonal/package-tree.html index 50956aefb..1c5bbd6b8 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/package-tree.html +++ b/java/docs/com/mxgraph/layout/orthogonal/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 2.4.0.3 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -121,7 +121,7 @@ Class Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-use.html b/java/docs/com/mxgraph/layout/orthogonal/package-use.html index 33d0f2619..8072b7df1 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/package-use.html +++ b/java/docs/com/mxgraph/layout/orthogonal/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout.orthogonal (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.layout.orthogonal (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.orthogonal (mxGraph 2.4.0.3 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.orthogonal (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.orthogonal (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.orthogonal -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/package-frame.html b/java/docs/com/mxgraph/layout/package-frame.html index 0232d1d84..aa3961d76 100644 --- a/java/docs/com/mxgraph/layout/package-frame.html +++ b/java/docs/com/mxgraph/layout/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/package-summary.html b/java/docs/com/mxgraph/layout/package-summary.html index 907196682..b79998efe 100644 --- a/java/docs/com/mxgraph/layout/package-summary.html +++ b/java/docs/com/mxgraph/layout/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.layout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -196,7 +196,7 @@ This package contains various graph layouts. -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/package-tree.html b/java/docs/com/mxgraph/layout/package-tree.html index dd51a4c9a..1a6d805b7 100644 --- a/java/docs/com/mxgraph/layout/package-tree.html +++ b/java/docs/com/mxgraph/layout/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.layout Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.layout Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -127,7 +127,7 @@ Interface Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/layout/package-use.html b/java/docs/com/mxgraph/layout/package-use.html index 7921efc6f..7d37410c2 100644 --- a/java/docs/com/mxgraph/layout/package-use.html +++ b/java/docs/com/mxgraph/layout/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.layout (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -236,7 +236,7 @@ Classes in
com.mxgrap -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxCell.html b/java/docs/com/mxgraph/model/class-use/mxCell.html index 5cb8a13ee..afd8807f5 100644 --- a/java/docs/com/mxgraph/model/class-use/mxCell.html +++ b/java/docs/com/mxgraph/model/class-use/mxCell.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxCell (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.model.mxCell (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxCell (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxCell (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxCell (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -155,7 +155,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxCellPath.html b/java/docs/com/mxgraph/model/class-use/mxCellPath.html index 9f9590c48..ed0b0fed5 100644 --- a/java/docs/com/mxgraph/model/class-use/mxCellPath.html +++ b/java/docs/com/mxgraph/model/class-use/mxCellPath.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxCellPath (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.model.mxCellPath (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxCellPath (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxCellPath (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxCellPath (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxCellPath -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxGeometry.html b/java/docs/com/mxgraph/model/class-use/mxGeometry.html index 80040b6d0..4a7013d5d 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGeometry.html +++ b/java/docs/com/mxgraph/model/class-use/mxGeometry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGeometry (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.model.mxGeometry (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGeometry (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGeometry (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGeometry (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -396,7 +396,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html index 8cb2daac6..1f4d894df 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 2.4.0.3 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -165,7 +165,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.html index 084422a8f..cef4dfb05 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -270,7 +270,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html index bfcd53c62..e2f8d13e2 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 2.4.0.3 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxChildChange -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html index fb9a25785..e307cf636 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 2.4.0.3 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxCollapseChange -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html index 821f206d3..053e4bf6d 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 2.4.0.3 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxGeometryChange -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html index 4d3cef86c..efdd8b7f0 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 2.4.0.3 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxRootChange -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html index 3d82f756d..e12169319 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 2.4.0.3 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxStyleChange -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html index f0b2b4fc0..974c744b1 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 2.4.0.3 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxTerminalChange -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html index 74034de22..6bd27961b 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 2.4.0.3 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxValueChange -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html index fc6a4f9ea..4de4969e3 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 2.4.0.3 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxVisibleChange -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxICell.html b/java/docs/com/mxgraph/model/class-use/mxICell.html index d478a9922..84fcae26c 100644 --- a/java/docs/com/mxgraph/model/class-use/mxICell.html +++ b/java/docs/com/mxgraph/model/class-use/mxICell.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.model.mxICell (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.model.mxICell (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.model.mxICell (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.model.mxICell (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.model.mxICell (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -686,7 +686,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html index 0a6591b62..a623e9263 100644 --- a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html +++ b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 2.4.0.3 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -584,7 +584,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html index c81c4583f..245abcd46 100644 --- a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -265,7 +265,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxCell.html b/java/docs/com/mxgraph/model/mxCell.html index bd049ec69..4a8bbe468 100644 --- a/java/docs/com/mxgraph/model/mxCell.html +++ b/java/docs/com/mxgraph/model/mxCell.html @@ -2,12 +2,12 @@ - + -mxCell (mxGraph 2.4.0.3 API Specification) +mxCell (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCell (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCell (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCell (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1749,7 +1749,7 @@ protected
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxCellPath.html b/java/docs/com/mxgraph/model/mxCellPath.html index e1b2fe598..5188be129 100644 --- a/java/docs/com/mxgraph/model/mxCellPath.html +++ b/java/docs/com/mxgraph/model/mxCellPath.html @@ -2,12 +2,12 @@ - + -mxCellPath (mxGraph 2.4.0.3 API Specification) +mxCellPath (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCellPath (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellPath (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCellPath (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -333,7 +333,7 @@ public static int compare(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxGeometry.html b/java/docs/com/mxgraph/model/mxGeometry.html index a9666b924..3f6eaac02 100644 --- a/java/docs/com/mxgraph/model/mxGeometry.html +++ b/java/docs/com/mxgraph/model/mxGeometry.html @@ -2,12 +2,12 @@ - + -mxGeometry (mxGraph 2.4.0.3 API Specification) +mxGeometry (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGeometry (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGeometry (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGeometry (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -833,7 +833,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.Filter.html b/java/docs/com/mxgraph/model/mxGraphModel.Filter.html index 7e83c65ef..dcd59f020 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.Filter.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.Filter.html @@ -2,12 +2,12 @@ - + -mxGraphModel.Filter (mxGraph 2.4.0.3 API Specification) +mxGraphModel.Filter (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.Filter (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.Filter (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphModel.Filter (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -168,7 +168,7 @@ boolean filter(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.html b/java/docs/com/mxgraph/model/mxGraphModel.html index 2d09037f3..7f160b2d1 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.html @@ -2,12 +2,12 @@ - + -mxGraphModel (mxGraph 2.4.0.3 API Specification) +mxGraphModel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphModel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -2882,7 +2882,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html index 0f3f0133a..84226b8c8 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxChildChange (mxGraph 2.4.0.3 API Specification) +mxGraphModel.mxChildChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxChildChange (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxChildChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphModel.mxChildChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -682,7 +682,7 @@ public void execute() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html index 9bc6d08e3..ef6b2ebe0 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxCollapseChange (mxGraph 2.4.0.3 API Specification) +mxGraphModel.mxCollapseChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxCollapseChange (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxCollapseChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphModel.mxCollapseChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -448,7 +448,7 @@ public void execute() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html index 58162c2ca..5708c321a 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxGeometryChange (mxGraph 2.4.0.3 API Specification) +mxGraphModel.mxGeometryChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxGeometryChange (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxGeometryChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphModel.mxGeometryChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -448,7 +448,7 @@ public void execute() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html index 6884ecd62..30386f703 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxRootChange (mxGraph 2.4.0.3 API Specification) +mxGraphModel.mxRootChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxRootChange (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxRootChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphModel.mxRootChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -393,7 +393,7 @@ public void execute() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html index 7feff8fdd..5b0d8a0ff 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxStyleChange (mxGraph 2.4.0.3 API Specification) +mxGraphModel.mxStyleChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxStyleChange (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxStyleChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphModel.mxStyleChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -448,7 +448,7 @@ public void execute() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html index 2e946b9ae..83ef10914 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxTerminalChange (mxGraph 2.4.0.3 API Specification) +mxGraphModel.mxTerminalChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxTerminalChange (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxTerminalChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphModel.mxTerminalChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -507,7 +507,7 @@ public void execute() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html index 94c58a53e..440cc7a81 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxValueChange (mxGraph 2.4.0.3 API Specification) +mxGraphModel.mxValueChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxValueChange (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxValueChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphModel.mxValueChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -448,7 +448,7 @@ public void execute() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html index e20eced41..1dd05b67d 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxVisibleChange (mxGraph 2.4.0.3 API Specification) +mxGraphModel.mxVisibleChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxVisibleChange (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxVisibleChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphModel.mxVisibleChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -448,7 +448,7 @@ public void execute() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxICell.html b/java/docs/com/mxgraph/model/mxICell.html index a87874cc6..52b8aed93 100644 --- a/java/docs/com/mxgraph/model/mxICell.html +++ b/java/docs/com/mxgraph/model/mxICell.html @@ -2,12 +2,12 @@ - + -mxICell (mxGraph 2.4.0.3 API Specification) +mxICell (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxICell (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICell (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxICell (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -919,7 +919,7 @@ clone -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxIGraphModel.html b/java/docs/com/mxgraph/model/mxIGraphModel.html index e97f27f46..05b49971d 100644 --- a/java/docs/com/mxgraph/model/mxIGraphModel.html +++ b/java/docs/com/mxgraph/model/mxIGraphModel.html @@ -2,12 +2,12 @@ - + -mxIGraphModel (mxGraph 2.4.0.3 API Specification) +mxIGraphModel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxIGraphModel (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxIGraphModel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxIGraphModel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -925,7 +925,7 @@ void removeListener(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html b/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html index 8e79889d4..8594cc426 100644 --- a/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html +++ b/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html @@ -2,12 +2,12 @@ - + -mxIGraphModel.mxAtomicGraphModelChange (mxGraph 2.4.0.3 API Specification) +mxIGraphModel.mxAtomicGraphModelChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxIGraphModel.mxAtomicGraphModelChange (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxIGraphModel.mxAtomicGraphModelChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxIGraphModel.mxAtomicGraphModelChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -333,7 +333,7 @@ public abstract void execute() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/package-frame.html b/java/docs/com/mxgraph/model/package-frame.html index 52998c9bf..d26ad83c0 100644 --- a/java/docs/com/mxgraph/model/package-frame.html +++ b/java/docs/com/mxgraph/model/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.model (mxGraph 2.4.0.3 API Specification) +com.mxgraph.model (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/model/package-summary.html b/java/docs/com/mxgraph/model/package-summary.html index 4e467508b..1e4d59b54 100644 --- a/java/docs/com/mxgraph/model/package-summary.html +++ b/java/docs/com/mxgraph/model/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.model (mxGraph 2.4.0.3 API Specification) +com.mxgraph.model (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.model (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.model (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.model (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -207,7 +207,7 @@ This package contains the classes that define a graph model. -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/package-tree.html b/java/docs/com/mxgraph/model/package-tree.html index dad2c0853..740fd740b 100644 --- a/java/docs/com/mxgraph/model/package-tree.html +++ b/java/docs/com/mxgraph/model/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.model Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.model Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.model Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.model Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.model Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -135,7 +135,7 @@ Interface Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/model/package-use.html b/java/docs/com/mxgraph/model/package-use.html index 62a8816b9..1c9da7541 100644 --- a/java/docs/com/mxgraph/model/package-use.html +++ b/java/docs/com/mxgraph/model/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.model (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.model (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.model (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.model (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.model (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -263,7 +263,7 @@ Classes in
com.mxgraph -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html index 4ec904f78..6ff028869 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html +++ b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html index 012f0933f..f14be9dad 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html +++ b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.reader.mxDomOutputParser -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html b/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html index e91031b65..bb5c2aa1f 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html +++ b/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 2.4.0.3 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -156,7 +156,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html b/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html index 3786f8892..ed465e7f1 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html +++ b/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html index 3649aa49d..9d5e5a749 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html +++ b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html index 8851455f4..e6784d782 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html +++ b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.reader.mxSaxOutputHandler -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html b/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html index e426447f1..35ae95563 100644 --- a/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html +++ b/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html @@ -2,12 +2,12 @@ - + -mxDomOutputParser.IElementHandler (mxGraph 2.4.0.3 API Specification) +mxDomOutputParser.IElementHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxDomOutputParser.IElementHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDomOutputParser.IElementHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxDomOutputParser.IElementHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -168,7 +168,7 @@ void parseElement(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/mxDomOutputParser.html b/java/docs/com/mxgraph/reader/mxDomOutputParser.html index 8d7f5a158..f7389ae70 100644 --- a/java/docs/com/mxgraph/reader/mxDomOutputParser.html +++ b/java/docs/com/mxgraph/reader/mxDomOutputParser.html @@ -2,12 +2,12 @@ - + -mxDomOutputParser (mxGraph 2.4.0.3 API Specification) +mxDomOutputParser (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxDomOutputParser (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDomOutputParser (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxDomOutputParser (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -368,7 +368,7 @@ protected
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html b/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html index ccf8711f8..df0c5118c 100644 --- a/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html +++ b/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html @@ -2,12 +2,12 @@ - + -mxGraphViewImageReader (mxGraph 2.4.0.3 API Specification) +mxGraphViewImageReader (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphViewImageReader (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphViewImageReader (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphViewImageReader (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -730,7 +730,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/mxGraphViewReader.html b/java/docs/com/mxgraph/reader/mxGraphViewReader.html index 292dbaf32..bcdfc0bc8 100644 --- a/java/docs/com/mxgraph/reader/mxGraphViewReader.html +++ b/java/docs/com/mxgraph/reader/mxGraphViewReader.html @@ -2,12 +2,12 @@ - + -mxGraphViewReader (mxGraph 2.4.0.3 API Specification) +mxGraphViewReader (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphViewReader (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphViewReader (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphViewReader (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -480,7 +480,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html index 3ee184016..da16261c2 100644 --- a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html +++ b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html @@ -2,12 +2,12 @@ - + -mxSaxOutputHandler.IElementHandler (mxGraph 2.4.0.3 API Specification) +mxSaxOutputHandler.IElementHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSaxOutputHandler.IElementHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSaxOutputHandler.IElementHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSaxOutputHandler.IElementHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -168,7 +168,7 @@ void parseElement(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html index b3bf9cbac..c4ceefa42 100644 --- a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html +++ b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html @@ -2,12 +2,12 @@ - + -mxSaxOutputHandler (mxGraph 2.4.0.3 API Specification) +mxSaxOutputHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSaxOutputHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSaxOutputHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSaxOutputHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -401,7 +401,7 @@ protected
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/package-frame.html b/java/docs/com/mxgraph/reader/package-frame.html index 2b3b38500..9c1330f33 100644 --- a/java/docs/com/mxgraph/reader/package-frame.html +++ b/java/docs/com/mxgraph/reader/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.reader (mxGraph 2.4.0.3 API Specification) +com.mxgraph.reader (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/reader/package-summary.html b/java/docs/com/mxgraph/reader/package-summary.html index 7b05b0c4e..076a510fe 100644 --- a/java/docs/com/mxgraph/reader/package-summary.html +++ b/java/docs/com/mxgraph/reader/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.reader (mxGraph 2.4.0.3 API Specification) +com.mxgraph.reader (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.reader (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.reader (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.reader (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -211,7 +211,7 @@ This package contains the classes required to turn an encoded mxGraphView -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/package-tree.html b/java/docs/com/mxgraph/reader/package-tree.html index 728894206..249a9096b 100644 --- a/java/docs/com/mxgraph/reader/package-tree.html +++ b/java/docs/com/mxgraph/reader/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.reader Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.reader Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.reader Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.reader Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.reader Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -128,7 +128,7 @@ Interface Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/reader/package-use.html b/java/docs/com/mxgraph/reader/package-use.html index 02e8fbd62..a8c703e1e 100644 --- a/java/docs/com/mxgraph/reader/package-use.html +++ b/java/docs/com/mxgraph/reader/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.reader (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.reader (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.reader (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.reader (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.reader (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -154,7 +154,7 @@ Classes in
com.mxgrap -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxActorShape.html b/java/docs/com/mxgraph/shape/class-use/mxActorShape.html index 7a50d0bc4..654080862 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxActorShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxActorShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxActorShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html b/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html index aa7972ab0..e0854e256 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxArrowShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html b/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html index 0e5aac20e..042e38786 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -274,7 +274,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html b/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html index 521d408cf..6ef6f09a6 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxCloudShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html b/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html index ff4682568..023a5dfd6 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 2.4.0.3 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html index 38d65d2aa..5f4cc4da2 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 2.4.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html index 9d273fb4a..31f298ad5 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html index 7291e2ed8..375ba1635 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 2.4.0.3 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxCurveLabelShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html b/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html index 64e3ed2f8..1ed3a052e 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxCurveShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html b/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html index e52e41350..46388a0ce 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 2.4.0.3 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxCylinderShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html b/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html index d83006724..d8e20f917 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxDefaultTextShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html b/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html index 42415a39e..521509b91 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 2.4.0.3 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxDoubleEllipseShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html b/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html index a63e7512d..22ab3296e 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html b/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html index f2b4b14a0..661def309 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxHexagonShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html b/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html index 750cf6596..66f43f174 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 2.4.0.3 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxHtmlTextShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxIMarker.html b/java/docs/com/mxgraph/shape/class-use/mxIMarker.html index ce5f14b16..dfa3af955 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxIMarker.html +++ b/java/docs/com/mxgraph/shape/class-use/mxIMarker.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 2.4.0.3 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -178,7 +178,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxIShape.html b/java/docs/com/mxgraph/shape/class-use/mxIShape.html index 37a0c93eb..ee22d928a 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxIShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxIShape.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -353,7 +353,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxITextShape.html b/java/docs/com/mxgraph/shape/class-use/mxITextShape.html index c62a34a1d..0c5abbc00 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxITextShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxITextShape.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 2.4.0.3 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -226,7 +226,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxImageShape.html b/java/docs/com/mxgraph/shape/class-use/mxImageShape.html index 608f0b1c1..1550c7161 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxImageShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxImageShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html b/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html index cbca6100a..4fcf53ead 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxLabelShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxLineShape.html b/java/docs/com/mxgraph/shape/class-use/mxLineShape.html index 69f79075c..b0307d0c4 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxLineShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxLineShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxLineShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html b/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html index 17636602f..cb6de075b 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html +++ b/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 2.4.0.3 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxMarkerRegistry -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html b/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html index d3fd497e6..3a8dc2575 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 2.4.0.3 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -153,7 +153,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html b/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html index 916f3e14a..7f421af54 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxRhombusShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencil.html b/java/docs/com/mxgraph/shape/class-use/mxStencil.html index 282532365..d2ae23800 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxStencil.html +++ b/java/docs/com/mxgraph/shape/class-use/mxStencil.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxStencil (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxStencil (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencil (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxStencil (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencil (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -178,7 +178,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html b/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html index ac4e6365b..cfcd76524 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html +++ b/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 2.4.0.3 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxStencilRegistry -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html index a7b9bc008..32af5e891 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxStencilShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html index 8ed9b9a4d..671d7e457 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 2.4.0.3 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -207,7 +207,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html b/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html index c986edb7b..f683a642a 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 2.4.0.3 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxSwimlaneShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html b/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html index 6cd43b284..8b0836399 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 2.4.0.3 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxTriangleShape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxActorShape.html b/java/docs/com/mxgraph/shape/mxActorShape.html index 241c88287..4a0e44649 100644 --- a/java/docs/com/mxgraph/shape/mxActorShape.html +++ b/java/docs/com/mxgraph/shape/mxActorShape.html @@ -2,12 +2,12 @@ - + -mxActorShape (mxGraph 2.4.0.3 API Specification) +mxActorShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxActorShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxActorShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxActorShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -229,7 +229,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxArrowShape.html b/java/docs/com/mxgraph/shape/mxArrowShape.html index ce902d4c2..d0adef9e1 100644 --- a/java/docs/com/mxgraph/shape/mxArrowShape.html +++ b/java/docs/com/mxgraph/shape/mxArrowShape.html @@ -2,12 +2,12 @@ - + -mxArrowShape (mxGraph 2.4.0.3 API Specification) +mxArrowShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxArrowShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxArrowShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxArrowShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -229,7 +229,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxBasicShape.html b/java/docs/com/mxgraph/shape/mxBasicShape.html index 05540ae86..699159999 100644 --- a/java/docs/com/mxgraph/shape/mxBasicShape.html +++ b/java/docs/com/mxgraph/shape/mxBasicShape.html @@ -2,12 +2,12 @@ - + -mxBasicShape (mxGraph 2.4.0.3 API Specification) +mxBasicShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxBasicShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxBasicShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxBasicShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -396,7 +396,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxCloudShape.html b/java/docs/com/mxgraph/shape/mxCloudShape.html index b747b2205..cf6530acc 100644 --- a/java/docs/com/mxgraph/shape/mxCloudShape.html +++ b/java/docs/com/mxgraph/shape/mxCloudShape.html @@ -2,12 +2,12 @@ - + -mxCloudShape (mxGraph 2.4.0.3 API Specification) +mxCloudShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCloudShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCloudShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCloudShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -229,7 +229,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxConnectorShape.html b/java/docs/com/mxgraph/shape/mxConnectorShape.html index b62393e79..035b84afd 100644 --- a/java/docs/com/mxgraph/shape/mxConnectorShape.html +++ b/java/docs/com/mxgraph/shape/mxConnectorShape.html @@ -2,12 +2,12 @@ - + -mxConnectorShape (mxGraph 2.4.0.3 API Specification) +mxConnectorShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxConnectorShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectorShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxConnectorShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -330,7 +330,7 @@ protected
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html index f5055467d..4445a2a8b 100644 --- a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html +++ b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html @@ -2,12 +2,12 @@ - + -mxCurveLabelShape.LabelGlyphCache (mxGraph 2.4.0.3 API Specification) +mxCurveLabelShape.LabelGlyphCache (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCurveLabelShape.LabelGlyphCache (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurveLabelShape.LabelGlyphCache (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCurveLabelShape.LabelGlyphCache (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -334,7 +334,7 @@ public mxCurveLabelShape.LabelGlyphCache() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html index 410d1cc46..d8ad618b1 100644 --- a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html +++ b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html @@ -2,12 +2,12 @@ - + -mxCurveLabelShape.LabelPosition (mxGraph 2.4.0.3 API Specification) +mxCurveLabelShape.LabelPosition (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCurveLabelShape.LabelPosition (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurveLabelShape.LabelPosition (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCurveLabelShape.LabelPosition (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -263,7 +263,7 @@ public mxCurveLabelShape.LabelPosition() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxCurveLabelShape.html b/java/docs/com/mxgraph/shape/mxCurveLabelShape.html index 8d79533ed..95194d7c8 100644 --- a/java/docs/com/mxgraph/shape/mxCurveLabelShape.html +++ b/java/docs/com/mxgraph/shape/mxCurveLabelShape.html @@ -2,12 +2,12 @@ - + -mxCurveLabelShape (mxGraph 2.4.0.3 API Specification) +mxCurveLabelShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCurveLabelShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurveLabelShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCurveLabelShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -866,7 +866,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxCurveShape.html b/java/docs/com/mxgraph/shape/mxCurveShape.html index bcef7531e..9622070d4 100644 --- a/java/docs/com/mxgraph/shape/mxCurveShape.html +++ b/java/docs/com/mxgraph/shape/mxCurveShape.html @@ -2,12 +2,12 @@ - + -mxCurveShape (mxGraph 2.4.0.3 API Specification) +mxCurveShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCurveShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurveShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCurveShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -396,7 +396,7 @@ protected
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxCylinderShape.html b/java/docs/com/mxgraph/shape/mxCylinderShape.html index 09c25d5cd..20598f641 100644 --- a/java/docs/com/mxgraph/shape/mxCylinderShape.html +++ b/java/docs/com/mxgraph/shape/mxCylinderShape.html @@ -2,12 +2,12 @@ - + -mxCylinderShape (mxGraph 2.4.0.3 API Specification) +mxCylinderShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCylinderShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCylinderShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCylinderShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -231,7 +231,7 @@ public void paintShape(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxDefaultTextShape.html b/java/docs/com/mxgraph/shape/mxDefaultTextShape.html index 79b6782ed..f34bcf269 100644 --- a/java/docs/com/mxgraph/shape/mxDefaultTextShape.html +++ b/java/docs/com/mxgraph/shape/mxDefaultTextShape.html @@ -2,12 +2,12 @@ - + -mxDefaultTextShape (mxGraph 2.4.0.3 API Specification) +mxDefaultTextShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxDefaultTextShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDefaultTextShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxDefaultTextShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -257,7 +257,7 @@ protected void postProcessLine(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html b/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html index 897ae0375..1e82d96e0 100644 --- a/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html +++ b/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html @@ -2,12 +2,12 @@ - + -mxDoubleEllipseShape (mxGraph 2.4.0.3 API Specification) +mxDoubleEllipseShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxDoubleEllipseShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDoubleEllipseShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxDoubleEllipseShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -239,7 +239,7 @@ public void paintShape(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxEllipseShape.html b/java/docs/com/mxgraph/shape/mxEllipseShape.html index 3812aeebd..b8ad931f5 100644 --- a/java/docs/com/mxgraph/shape/mxEllipseShape.html +++ b/java/docs/com/mxgraph/shape/mxEllipseShape.html @@ -2,12 +2,12 @@ - + -mxEllipseShape (mxGraph 2.4.0.3 API Specification) +mxEllipseShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxEllipseShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEllipseShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxEllipseShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -232,7 +232,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxHexagonShape.html b/java/docs/com/mxgraph/shape/mxHexagonShape.html index 5ebb745f3..dd8224b76 100644 --- a/java/docs/com/mxgraph/shape/mxHexagonShape.html +++ b/java/docs/com/mxgraph/shape/mxHexagonShape.html @@ -2,12 +2,12 @@ - + -mxHexagonShape (mxGraph 2.4.0.3 API Specification) +mxHexagonShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxHexagonShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHexagonShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxHexagonShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -229,7 +229,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxHtmlTextShape.html b/java/docs/com/mxgraph/shape/mxHtmlTextShape.html index a4f50973c..fa94dc4b1 100644 --- a/java/docs/com/mxgraph/shape/mxHtmlTextShape.html +++ b/java/docs/com/mxgraph/shape/mxHtmlTextShape.html @@ -2,12 +2,12 @@ - + -mxHtmlTextShape (mxGraph 2.4.0.3 API Specification) +mxHtmlTextShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxHtmlTextShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHtmlTextShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxHtmlTextShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -356,7 +356,7 @@ public void paintShape(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxIMarker.html b/java/docs/com/mxgraph/shape/mxIMarker.html index 9a40a67f6..74ceb8cc8 100644 --- a/java/docs/com/mxgraph/shape/mxIMarker.html +++ b/java/docs/com/mxgraph/shape/mxIMarker.html @@ -2,12 +2,12 @@ - + -mxIMarker (mxGraph 2.4.0.3 API Specification) +mxIMarker (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxIMarker (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxIMarker (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxIMarker (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -179,7 +179,7 @@ paintMarker -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxIShape.html b/java/docs/com/mxgraph/shape/mxIShape.html index 7f493a44d..51c5ae5a3 100644 --- a/java/docs/com/mxgraph/shape/mxIShape.html +++ b/java/docs/com/mxgraph/shape/mxIShape.html @@ -2,12 +2,12 @@ - + -mxIShape (mxGraph 2.4.0.3 API Specification) +mxIShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxIShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxIShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxIShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -170,7 +170,7 @@ void paintShape(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxITextShape.html b/java/docs/com/mxgraph/shape/mxITextShape.html index bb510ddbe..044187438 100644 --- a/java/docs/com/mxgraph/shape/mxITextShape.html +++ b/java/docs/com/mxgraph/shape/mxITextShape.html @@ -2,12 +2,12 @@ - + -mxITextShape (mxGraph 2.4.0.3 API Specification) +mxITextShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxITextShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxITextShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxITextShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -174,7 +174,7 @@ void paintShape(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxImageShape.html b/java/docs/com/mxgraph/shape/mxImageShape.html index 509d37d7e..915526a9c 100644 --- a/java/docs/com/mxgraph/shape/mxImageShape.html +++ b/java/docs/com/mxgraph/shape/mxImageShape.html @@ -2,12 +2,12 @@ - + -mxImageShape (mxGraph 2.4.0.3 API Specification) +mxImageShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxImageShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImageShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxImageShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -360,7 +360,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxLabelShape.html b/java/docs/com/mxgraph/shape/mxLabelShape.html index 2f9b7cfa7..fb93a6a1a 100644 --- a/java/docs/com/mxgraph/shape/mxLabelShape.html +++ b/java/docs/com/mxgraph/shape/mxLabelShape.html @@ -2,12 +2,12 @@ - + -mxLabelShape (mxGraph 2.4.0.3 API Specification) +mxLabelShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxLabelShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLabelShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxLabelShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -368,7 +368,7 @@ public boolean hasGradient(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxLineShape.html b/java/docs/com/mxgraph/shape/mxLineShape.html index ca01a48dc..d4688fe03 100644 --- a/java/docs/com/mxgraph/shape/mxLineShape.html +++ b/java/docs/com/mxgraph/shape/mxLineShape.html @@ -2,12 +2,12 @@ - + -mxLineShape (mxGraph 2.4.0.3 API Specification) +mxLineShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxLineShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLineShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxLineShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -250,7 +250,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxMarkerRegistry.html b/java/docs/com/mxgraph/shape/mxMarkerRegistry.html index ed2d9b17c..1e06f5a85 100644 --- a/java/docs/com/mxgraph/shape/mxMarkerRegistry.html +++ b/java/docs/com/mxgraph/shape/mxMarkerRegistry.html @@ -2,12 +2,12 @@ - + -mxMarkerRegistry (mxGraph 2.4.0.3 API Specification) +mxMarkerRegistry (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxMarkerRegistry (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMarkerRegistry (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxMarkerRegistry (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -268,7 +268,7 @@ public static void registerMarker(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxRectangleShape.html b/java/docs/com/mxgraph/shape/mxRectangleShape.html index 704cba2d6..59e619e00 100644 --- a/java/docs/com/mxgraph/shape/mxRectangleShape.html +++ b/java/docs/com/mxgraph/shape/mxRectangleShape.html @@ -2,12 +2,12 @@ - + -mxRectangleShape (mxGraph 2.4.0.3 API Specification) +mxRectangleShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxRectangleShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRectangleShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxRectangleShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -256,7 +256,7 @@ public int getArcSize(int w, -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxRhombusShape.html b/java/docs/com/mxgraph/shape/mxRhombusShape.html index 63da3a691..f064f399b 100644 --- a/java/docs/com/mxgraph/shape/mxRhombusShape.html +++ b/java/docs/com/mxgraph/shape/mxRhombusShape.html @@ -2,12 +2,12 @@ - + -mxRhombusShape (mxGraph 2.4.0.3 API Specification) +mxRhombusShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxRhombusShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRhombusShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxRhombusShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -229,7 +229,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxStencil.html b/java/docs/com/mxgraph/shape/mxStencil.html index a87b24f69..430756808 100644 --- a/java/docs/com/mxgraph/shape/mxStencil.html +++ b/java/docs/com/mxgraph/shape/mxStencil.html @@ -2,12 +2,12 @@ - + -mxStencil (mxGraph 2.4.0.3 API Specification) +mxStencil (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxStencil (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStencil (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxStencil (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -793,7 +793,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxStencilRegistry.html b/java/docs/com/mxgraph/shape/mxStencilRegistry.html index fc8d92e51..cb8f401a5 100644 --- a/java/docs/com/mxgraph/shape/mxStencilRegistry.html +++ b/java/docs/com/mxgraph/shape/mxStencilRegistry.html @@ -2,12 +2,12 @@ - + -mxStencilRegistry (mxGraph 2.4.0.3 API Specification) +mxStencilRegistry (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxStencilRegistry (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStencilRegistry (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxStencilRegistry (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -272,7 +272,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxStencilShape.html b/java/docs/com/mxgraph/shape/mxStencilShape.html index 8133277b4..2aab97570 100644 --- a/java/docs/com/mxgraph/shape/mxStencilShape.html +++ b/java/docs/com/mxgraph/shape/mxStencilShape.html @@ -2,12 +2,12 @@ - + -mxStencilShape (mxGraph 2.4.0.3 API Specification) +mxStencilShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxStencilShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStencilShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxStencilShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -673,7 +673,7 @@ public void setBoundingBox(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html b/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html index 1ebe5fc83..a35a0aae4 100644 --- a/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html +++ b/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html @@ -2,12 +2,12 @@ - + -mxStencilShape.svgShape (mxGraph 2.4.0.3 API Specification) +mxStencilShape.svgShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxStencilShape.svgShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStencilShape.svgShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxStencilShape.svgShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -389,7 +389,7 @@ public void setCurrentYScale(double currentYScale) -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxSwimlaneShape.html b/java/docs/com/mxgraph/shape/mxSwimlaneShape.html index a595c4830..35966411d 100644 --- a/java/docs/com/mxgraph/shape/mxSwimlaneShape.html +++ b/java/docs/com/mxgraph/shape/mxSwimlaneShape.html @@ -2,12 +2,12 @@ - + -mxSwimlaneShape (mxGraph 2.4.0.3 API Specification) +mxSwimlaneShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSwimlaneShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSwimlaneShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSwimlaneShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -253,7 +253,7 @@ protected
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/mxTriangleShape.html b/java/docs/com/mxgraph/shape/mxTriangleShape.html index 90ef001ae..2bcb908fe 100644 --- a/java/docs/com/mxgraph/shape/mxTriangleShape.html +++ b/java/docs/com/mxgraph/shape/mxTriangleShape.html @@ -2,12 +2,12 @@ - + -mxTriangleShape (mxGraph 2.4.0.3 API Specification) +mxTriangleShape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxTriangleShape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxTriangleShape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxTriangleShape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -229,7 +229,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/package-frame.html b/java/docs/com/mxgraph/shape/package-frame.html index 07c165f90..c7f93df88 100644 --- a/java/docs/com/mxgraph/shape/package-frame.html +++ b/java/docs/com/mxgraph/shape/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.shape (mxGraph 2.4.0.3 API Specification) +com.mxgraph.shape (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/shape/package-summary.html b/java/docs/com/mxgraph/shape/package-summary.html index 7da8f53a0..1dde5acd3 100644 --- a/java/docs/com/mxgraph/shape/package-summary.html +++ b/java/docs/com/mxgraph/shape/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.shape (mxGraph 2.4.0.3 API Specification) +com.mxgraph.shape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.shape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.shape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.shape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -238,7 +238,7 @@ Package com.mxgraph.shape -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/package-tree.html b/java/docs/com/mxgraph/shape/package-tree.html index 580044180..7043fd2bd 100644 --- a/java/docs/com/mxgraph/shape/package-tree.html +++ b/java/docs/com/mxgraph/shape/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.shape Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.shape Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.shape Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.shape Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.shape Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -138,7 +138,7 @@ Interface Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/shape/package-use.html b/java/docs/com/mxgraph/shape/package-use.html index 8d1f646d0..5009f3659 100644 --- a/java/docs/com/mxgraph/shape/package-use.html +++ b/java/docs/com/mxgraph/shape/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.shape (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.shape (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.shape (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.shape (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.shape (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -229,7 +229,7 @@ Classes in
com.mxgraph -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSession.html b/java/docs/com/mxgraph/sharing/class-use/mxSession.html index 8960510e8..bc5a10a67 100644 --- a/java/docs/com/mxgraph/sharing/class-use/mxSession.html +++ b/java/docs/com/mxgraph/sharing/class-use/mxSession.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.sharing.mxSession (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.sharing.mxSession (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.sharing.mxSession (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.sharing.mxSession (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.sharing.mxSession (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.sharing.mxSession -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSharedGraphModel.html b/java/docs/com/mxgraph/sharing/class-use/mxSharedGraphModel.html index 337173e65..5d13b4824 100644 --- a/java/docs/com/mxgraph/sharing/class-use/mxSharedGraphModel.html +++ b/java/docs/com/mxgraph/sharing/class-use/mxSharedGraphModel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 2.4.0.3 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.sharing.mxSharedGraphModel -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSharedState.html b/java/docs/com/mxgraph/sharing/class-use/mxSharedState.html index ee282d64f..59ef9431b 100644 --- a/java/docs/com/mxgraph/sharing/class-use/mxSharedState.html +++ b/java/docs/com/mxgraph/sharing/class-use/mxSharedState.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 2.4.0.3 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -177,7 +177,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSharedState.mxDiagramChangeListener.html b/java/docs/com/mxgraph/sharing/class-use/mxSharedState.mxDiagramChangeListener.html index a2e794261..a3f15649e 100644 --- a/java/docs/com/mxgraph/sharing/class-use/mxSharedState.mxDiagramChangeListener.html +++ b/java/docs/com/mxgraph/sharing/class-use/mxSharedState.mxDiagramChangeListener.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxG function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -186,7 +186,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/sharing/mxSession.html b/java/docs/com/mxgraph/sharing/mxSession.html index 346e118ab..885756278 100644 --- a/java/docs/com/mxgraph/sharing/mxSession.html +++ b/java/docs/com/mxgraph/sharing/mxSession.html @@ -2,12 +2,12 @@ - + -mxSession (mxGraph 2.4.0.3 API Specification) +mxSession (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSession (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSession (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSession (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -566,7 +566,7 @@ public void destroy() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/sharing/mxSharedGraphModel.html b/java/docs/com/mxgraph/sharing/mxSharedGraphModel.html index d26518e0c..a2e09a97b 100644 --- a/java/docs/com/mxgraph/sharing/mxSharedGraphModel.html +++ b/java/docs/com/mxgraph/sharing/mxSharedGraphModel.html @@ -2,12 +2,12 @@ - + -mxSharedGraphModel (mxGraph 2.4.0.3 API Specification) +mxSharedGraphModel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSharedGraphModel (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSharedGraphModel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSharedGraphModel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -539,7 +539,7 @@ public void cellRemoved(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/sharing/mxSharedState.html b/java/docs/com/mxgraph/sharing/mxSharedState.html index f2ace2a4e..ce6cfa2fc 100644 --- a/java/docs/com/mxgraph/sharing/mxSharedState.html +++ b/java/docs/com/mxgraph/sharing/mxSharedState.html @@ -2,12 +2,12 @@ - + -mxSharedState (mxGraph 2.4.0.3 API Specification) +mxSharedState (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSharedState (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSharedState (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSharedState (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -499,7 +499,7 @@ public void removeDiagramChangeListener(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/sharing/mxSharedState.mxDiagramChangeListener.html b/java/docs/com/mxgraph/sharing/mxSharedState.mxDiagramChangeListener.html index f3f09df0c..41ddac3c9 100644 --- a/java/docs/com/mxgraph/sharing/mxSharedState.mxDiagramChangeListener.html +++ b/java/docs/com/mxgraph/sharing/mxSharedState.mxDiagramChangeListener.html @@ -2,12 +2,12 @@ - + -mxSharedState.mxDiagramChangeListener (mxGraph 2.4.0.3 API Specification) +mxSharedState.mxDiagramChangeListener (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSharedState.mxDiagramChangeListener (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSharedState.mxDiagramChangeListener (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSharedState.mxDiagramChangeListener (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -180,7 +180,7 @@ void diagramChanged(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/sharing/package-frame.html b/java/docs/com/mxgraph/sharing/package-frame.html index dbcadd092..192049c05 100644 --- a/java/docs/com/mxgraph/sharing/package-frame.html +++ b/java/docs/com/mxgraph/sharing/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.sharing (mxGraph 2.4.0.3 API Specification) +com.mxgraph.sharing (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/sharing/package-summary.html b/java/docs/com/mxgraph/sharing/package-summary.html index c50eebc3b..c204f21d4 100644 --- a/java/docs/com/mxgraph/sharing/package-summary.html +++ b/java/docs/com/mxgraph/sharing/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.sharing (mxGraph 2.4.0.3 API Specification) +com.mxgraph.sharing (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.sharing (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.sharing (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.sharing (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -162,7 +162,7 @@ This package contains all classes required for concurrent diagram editing -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/sharing/package-tree.html b/java/docs/com/mxgraph/sharing/package-tree.html index af07fca45..8b720a6a7 100644 --- a/java/docs/com/mxgraph/sharing/package-tree.html +++ b/java/docs/com/mxgraph/sharing/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.sharing Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.sharing Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.sharing Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.sharing Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.sharing Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -128,7 +128,7 @@ Interface Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/sharing/package-use.html b/java/docs/com/mxgraph/sharing/package-use.html index 8a2b9f808..41513b312 100644 --- a/java/docs/com/mxgraph/sharing/package-use.html +++ b/java/docs/com/mxgraph/sharing/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.sharing (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.sharing (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.sharing (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.sharing (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.sharing (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -143,7 +143,7 @@ Classes in
com.mxgra -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html index 2d289d38d..635daefa9 100644 --- a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 2.4.0.3 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -746,7 +746,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html index 4a4f3a38c..154d1c139 100644 --- a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -171,7 +171,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html index 3eee817b8..da8f21633 100644 --- a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 2.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.mxGraphComponent.mxMouseRedirector -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html index 886d70a5c..0a96f51b1 100644 --- a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 2.4.0.3 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html index 63190ecee..f9bec5aa7 100644 --- a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.mxGraphOutline -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html index 0238126c7..7621a0e2a 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -224,7 +224,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html b/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html index 1281b3749..a366649c6 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 2.4.0.3 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -234,7 +234,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html b/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html index 25a7cc515..f2126e410 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxCellTracker -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html index 3bd1e61f7..63caaaca0 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 2.4.0.3 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -186,7 +186,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html index 240aae566..5a8d36428 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 2.4.0.3 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -170,7 +170,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html index c6aa887f2..ca0bf2c39 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html index ddb7a9928..d6a157466 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 2.4.0.3 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxElbowEdgeHandler -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html index 890c12fcb..97abcd880 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 2.4.0.3 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -170,7 +170,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html index 4d2859c8d..ac66ae3e1 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html index 39faa1a51..94a53eb38 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 2.4.0.3 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxInsertHandler -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html index 4b61e8cac..354e378c9 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 2.4.0.3 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxKeyboardHandler -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html b/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html index 1a1f69097..2068acd3b 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -170,7 +170,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html index f6949a818..f755a29f7 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 2.4.0.3 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -170,7 +170,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html index 6c21a86a2..714018d8b 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 2.4.0.3 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxRotationHandler -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html b/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html index 50d1f8151..f4470ab9d 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 2.4.0.3 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxRubberband -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html index 04a1724bf..5e263e9fe 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -170,7 +170,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html index 5a74be25d..921889e6e 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 2.4.0.3 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxVertexHandler -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxCellHandler.html b/java/docs/com/mxgraph/swing/handler/mxCellHandler.html index 44076421c..cc125a067 100644 --- a/java/docs/com/mxgraph/swing/handler/mxCellHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxCellHandler.html @@ -2,12 +2,12 @@ - + -mxCellHandler (mxGraph 2.4.0.3 API Specification) +mxCellHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCellHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCellHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1038,7 +1038,7 @@ protected void destroy() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxCellMarker.html b/java/docs/com/mxgraph/swing/handler/mxCellMarker.html index 4376cb85c..500bb0506 100644 --- a/java/docs/com/mxgraph/swing/handler/mxCellMarker.html +++ b/java/docs/com/mxgraph/swing/handler/mxCellMarker.html @@ -2,12 +2,12 @@ - + -mxCellMarker (mxGraph 2.4.0.3 API Specification) +mxCellMarker (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCellMarker (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellMarker (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCellMarker (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1492,7 +1492,7 @@ public void paint(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxCellTracker.html b/java/docs/com/mxgraph/swing/handler/mxCellTracker.html index e615b8703..5ea556db7 100644 --- a/java/docs/com/mxgraph/swing/handler/mxCellTracker.html +++ b/java/docs/com/mxgraph/swing/handler/mxCellTracker.html @@ -2,12 +2,12 @@ - + -mxCellTracker (mxGraph 2.4.0.3 API Specification) +mxCellTracker (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCellTracker (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellTracker (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCellTracker (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -505,7 +505,7 @@ public void mouseMoved(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html b/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html index 8a1335ee7..145e37f5a 100644 --- a/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html +++ b/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html @@ -2,12 +2,12 @@ - + -mxConnectPreview (mxGraph 2.4.0.3 API Specification) +mxConnectPreview (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxConnectPreview (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectPreview (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxConnectPreview (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -636,7 +636,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html b/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html index 4657fa9df..c1f7db980 100644 --- a/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html @@ -2,12 +2,12 @@ - + -mxConnectionHandler (mxGraph 2.4.0.3 API Specification) +mxConnectionHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxConnectionHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectionHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxConnectionHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1365,7 +1365,7 @@ public void paint(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html index 64aefe7f2..edce74e04 100644 --- a/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html @@ -2,12 +2,12 @@ - + -mxEdgeHandler (mxGraph 2.4.0.3 API Specification) +mxEdgeHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxEdgeHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1023,7 +1023,7 @@ public void paint(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html index 6189cb33f..900fb18b8 100644 --- a/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html @@ -2,12 +2,12 @@ - + -mxElbowEdgeHandler (mxGraph 2.4.0.3 API Specification) +mxElbowEdgeHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxElbowEdgeHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxElbowEdgeHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxElbowEdgeHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -340,7 +340,7 @@ protected
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html b/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html index ae499b946..a949189c0 100644 --- a/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html @@ -2,12 +2,12 @@ - + -mxGraphHandler (mxGraph 2.4.0.3 API Specification) +mxGraphHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -2002,7 +2002,7 @@ protected static final
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html b/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html index 48e68de9d..e876242fc 100644 --- a/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html @@ -2,12 +2,12 @@ - + -mxGraphTransferHandler (mxGraph 2.4.0.3 API Specification) +mxGraphTransferHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphTransferHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphTransferHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphTransferHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -944,7 +944,7 @@ protected
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html b/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html index 37f660aaf..c1cb6fc42 100644 --- a/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html @@ -2,12 +2,12 @@ - + -mxInsertHandler (mxGraph 2.4.0.3 API Specification) +mxInsertHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxInsertHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxInsertHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxInsertHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -670,7 +670,7 @@ public void removeListener(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html b/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html index 4dd61bd6d..8c92f2b1c 100644 --- a/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html @@ -2,12 +2,12 @@ - + -mxKeyboardHandler (mxGraph 2.4.0.3 API Specification) +mxKeyboardHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxKeyboardHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxKeyboardHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxKeyboardHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -257,7 +257,7 @@ protected
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxMovePreview.html b/java/docs/com/mxgraph/swing/handler/mxMovePreview.html index e4e884912..7f77d7c05 100644 --- a/java/docs/com/mxgraph/swing/handler/mxMovePreview.html +++ b/java/docs/com/mxgraph/swing/handler/mxMovePreview.html @@ -2,12 +2,12 @@ - + -mxMovePreview (mxGraph 2.4.0.3 API Specification) +mxMovePreview (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxMovePreview (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMovePreview (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxMovePreview (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -973,7 +973,7 @@ public void paint(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html b/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html index e075db2bf..e7230dfea 100644 --- a/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html @@ -2,12 +2,12 @@ - + -mxPanningHandler (mxGraph 2.4.0.3 API Specification) +mxPanningHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPanningHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPanningHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPanningHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -405,7 +405,7 @@ public boolean isActive() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html b/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html index 1e06852c8..03036c0dd 100644 --- a/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html @@ -2,12 +2,12 @@ - + -mxRotationHandler (mxGraph 2.4.0.3 API Specification) +mxRotationHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxRotationHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRotationHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxRotationHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -622,7 +622,7 @@ public void paint(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxRubberband.html b/java/docs/com/mxgraph/swing/handler/mxRubberband.html index 6142a3bb5..23a504b23 100644 --- a/java/docs/com/mxgraph/swing/handler/mxRubberband.html +++ b/java/docs/com/mxgraph/swing/handler/mxRubberband.html @@ -2,12 +2,12 @@ - + -mxRubberband (mxGraph 2.4.0.3 API Specification) +mxRubberband (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxRubberband (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRubberband (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxRubberband (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -759,7 +759,7 @@ public void mouseMoved(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html b/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html index 4e61178b5..6a2655cb5 100644 --- a/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html @@ -2,12 +2,12 @@ - + -mxSelectionCellsHandler (mxGraph 2.4.0.3 API Specification) +mxSelectionCellsHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSelectionCellsHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSelectionCellsHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSelectionCellsHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -868,7 +868,7 @@ public void mouseExited(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html b/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html index 60552b2f9..81e8f87cf 100644 --- a/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html @@ -2,12 +2,12 @@ - + -mxVertexHandler (mxGraph 2.4.0.3 API Specification) +mxVertexHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxVertexHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxVertexHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxVertexHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -558,7 +558,7 @@ public void paint(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/package-frame.html b/java/docs/com/mxgraph/swing/handler/package-frame.html index cfc11676e..02b72d35f 100644 --- a/java/docs/com/mxgraph/swing/handler/package-frame.html +++ b/java/docs/com/mxgraph/swing/handler/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.handler (mxGraph 2.4.0.3 API Specification) +com.mxgraph.swing.handler (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/swing/handler/package-summary.html b/java/docs/com/mxgraph/swing/handler/package-summary.html index f217bf7f8..84ee90a50 100644 --- a/java/docs/com/mxgraph/swing/handler/package-summary.html +++ b/java/docs/com/mxgraph/swing/handler/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.handler (mxGraph 2.4.0.3 API Specification) +com.mxgraph.swing.handler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.handler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.handler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.swing.handler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -205,7 +205,7 @@ This package contains all classes required for mouse event handling in -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/package-tree.html b/java/docs/com/mxgraph/swing/handler/package-tree.html index a7865370f..60bee4880 100644 --- a/java/docs/com/mxgraph/swing/handler/package-tree.html +++ b/java/docs/com/mxgraph/swing/handler/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.handler Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.swing.handler Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.handler Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.handler Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.swing.handler Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -144,7 +144,7 @@ Class Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/handler/package-use.html b/java/docs/com/mxgraph/swing/handler/package-use.html index ce8803acb..fbd9e72e4 100644 --- a/java/docs/com/mxgraph/swing/handler/package-use.html +++ b/java/docs/com/mxgraph/swing/handler/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.swing.handler (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.swing.handler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing.handler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.swing.handler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing.handler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -210,7 +210,7 @@ Classes in
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/mxGraphComponent.html b/java/docs/com/mxgraph/swing/mxGraphComponent.html index 81ce63aa5..059a7e88a 100644 --- a/java/docs/com/mxgraph/swing/mxGraphComponent.html +++ b/java/docs/com/mxgraph/swing/mxGraphComponent.html @@ -2,12 +2,12 @@ - + -mxGraphComponent (mxGraph 2.4.0.3 API Specification) +mxGraphComponent (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphComponent (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphComponent (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphComponent (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -6357,7 +6357,7 @@ public void removeListener(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html b/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html index 4f1c8651b..818ebfb42 100644 --- a/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html +++ b/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html @@ -2,12 +2,12 @@ - + -mxGraphComponent.mxGraphControl (mxGraph 2.4.0.3 API Specification) +mxGraphComponent.mxGraphControl (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphComponent.mxGraphControl (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphComponent.mxGraphControl (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphComponent.mxGraphControl (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -715,7 +715,7 @@ protected boolean isCellDisplayable(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html b/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html index 641e2fd1c..a3e7e410c 100644 --- a/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html +++ b/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html @@ -2,12 +2,12 @@ - + -mxGraphComponent.mxMouseRedirector (mxGraph 2.4.0.3 API Specification) +mxGraphComponent.mxMouseRedirector (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphComponent.mxMouseRedirector (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphComponent.mxMouseRedirector (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphComponent.mxMouseRedirector (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -388,7 +388,7 @@ public void mouseMoved(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html b/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html index efb6501e1..65883ad09 100644 --- a/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html +++ b/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html @@ -2,12 +2,12 @@ - + -mxGraphOutline.MouseTracker (mxGraph 2.4.0.3 API Specification) +mxGraphOutline.MouseTracker (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphOutline.MouseTracker (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphOutline.MouseTracker (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphOutline.MouseTracker (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -412,7 +412,7 @@ public void mouseExited(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/mxGraphOutline.html b/java/docs/com/mxgraph/swing/mxGraphOutline.html index 337df5fd4..4760c55f3 100644 --- a/java/docs/com/mxgraph/swing/mxGraphOutline.html +++ b/java/docs/com/mxgraph/swing/mxGraphOutline.html @@ -2,12 +2,12 @@ - + -mxGraphOutline (mxGraph 2.4.0.3 API Specification) +mxGraphOutline (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphOutline (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphOutline (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphOutline (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1256,7 +1256,7 @@ public boolean updateScaleAndTranslate() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/package-frame.html b/java/docs/com/mxgraph/swing/package-frame.html index 6c8c8d2bd..54c8eabaf 100644 --- a/java/docs/com/mxgraph/swing/package-frame.html +++ b/java/docs/com/mxgraph/swing/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing (mxGraph 2.4.0.3 API Specification) +com.mxgraph.swing (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/swing/package-summary.html b/java/docs/com/mxgraph/swing/package-summary.html index 02dee85a2..170324197 100644 --- a/java/docs/com/mxgraph/swing/package-summary.html +++ b/java/docs/com/mxgraph/swing/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing (mxGraph 2.4.0.3 API Specification) +com.mxgraph.swing (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.swing (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -148,7 +148,7 @@ This package contains the main component for JFC/Swing, namely the graph -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/package-tree.html b/java/docs/com/mxgraph/swing/package-tree.html index 08df8a0db..3837e6eb1 100644 --- a/java/docs/com/mxgraph/swing/package-tree.html +++ b/java/docs/com/mxgraph/swing/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.swing Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.swing Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -132,7 +132,7 @@ Class Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/package-use.html b/java/docs/com/mxgraph/swing/package-use.html index 8ed9442df..1db08e94a 100644 --- a/java/docs/com/mxgraph/swing/package-use.html +++ b/java/docs/com/mxgraph/swing/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.swing (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.swing (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.swing (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -213,7 +213,7 @@ Classes in
com.mxgraph -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html b/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html index 3d2bc9026..2b91eef44 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 2.4.0.3 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html b/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html index c54432d85..e82c2337a 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxCellOverlay -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html index ec812140f..8217c46ab 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 2.4.0. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.DeleteAction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html index e5d676f5c..002364db2 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.DrillAction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html index 633dc22e1..63395639a 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.EditAction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html index 49072569f..85423f2fb 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.FoldAction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html index 8ea0e58eb..d1cfae4a2 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.GroupAction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html index 6b7882879..841d2d426 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.LayerAction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html index 2816208c3..2af8a7d57 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGr function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html index 4e3735a26..175010d61 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 2.4.0. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.SelectAction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html index 582496558..d62e777f6 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 2.4.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.UngroupAction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html index 8e717ec6a..2816541c6 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxG function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html index 655ad531d..dc6e0e2c2 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.ZoomAction -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html index b99097be4..3422503c6 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html index 465f997c2..f397c2d68 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 2.4.0.3 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -199,7 +199,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html b/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html index 8337bfbb8..31b0cd9e3 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 2.4.0.3 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -280,7 +280,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html b/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html index 2da580e6e..f6b8a9431 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 2.4.0.3 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxMorphing -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html b/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html index c4b082f24..241bc481a 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -178,7 +178,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html b/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html index 4c0ed28e6..64ba2b683 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxSwingConstants -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxAnimation.html b/java/docs/com/mxgraph/swing/util/mxAnimation.html index c1b9245b6..d71c07f13 100644 --- a/java/docs/com/mxgraph/swing/util/mxAnimation.html +++ b/java/docs/com/mxgraph/swing/util/mxAnimation.html @@ -2,12 +2,12 @@ - + -mxAnimation (mxGraph 2.4.0.3 API Specification) +mxAnimation (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxAnimation (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxAnimation (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxAnimation (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -442,7 +442,7 @@ public void stopAnimation() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxCellOverlay.html b/java/docs/com/mxgraph/swing/util/mxCellOverlay.html index d4c90a324..a6b69d58d 100644 --- a/java/docs/com/mxgraph/swing/util/mxCellOverlay.html +++ b/java/docs/com/mxgraph/swing/util/mxCellOverlay.html @@ -2,12 +2,12 @@ - + -mxCellOverlay (mxGraph 2.4.0.3 API Specification) +mxCellOverlay (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCellOverlay (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellOverlay (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCellOverlay (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -533,7 +533,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html index d33ea2dec..a19c53498 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.DeleteAction (mxGraph 2.4.0.3 API Specification) +mxGraphActions.DeleteAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.DeleteAction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.DeleteAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphActions.DeleteAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html index 3be6593c2..087dee409 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.DrillAction (mxGraph 2.4.0.3 API Specification) +mxGraphActions.DrillAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.DrillAction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.DrillAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphActions.DrillAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html index 08883795e..7221ce11c 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.EditAction (mxGraph 2.4.0.3 API Specification) +mxGraphActions.EditAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.EditAction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.EditAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphActions.EditAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html index 1368b99f6..25bb65496 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.FoldAction (mxGraph 2.4.0.3 API Specification) +mxGraphActions.FoldAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.FoldAction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.FoldAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphActions.FoldAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html index 0ac22297f..627d2dbd3 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.GroupAction (mxGraph 2.4.0.3 API Specification) +mxGraphActions.GroupAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.GroupAction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.GroupAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphActions.GroupAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -277,7 +277,7 @@ public void actionPerformed(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html index a31ccba1f..e351350f0 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.LayerAction (mxGraph 2.4.0.3 API Specification) +mxGraphActions.LayerAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.LayerAction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.LayerAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphActions.LayerAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html index 42682a6c5..6ae96c68f 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.RemoveFromParentAction (mxGraph 2.4.0.3 API Specification) +mxGraphActions.RemoveFromParentAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.RemoveFromParentAction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.RemoveFromParentAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphActions.RemoveFromParentAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html index 4bdacc391..5eec8bdd7 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.SelectAction (mxGraph 2.4.0.3 API Specification) +mxGraphActions.SelectAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.SelectAction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.SelectAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphActions.SelectAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html index b27875c0a..23b2cecb9 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.UngroupAction (mxGraph 2.4.0.3 API Specification) +mxGraphActions.UngroupAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.UngroupAction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.UngroupAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphActions.UngroupAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html index 934beda85..417087ecd 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.4.0.3 API Specification) +mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -277,7 +277,7 @@ public void actionPerformed(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html index 8f45fcb81..b275af8b5 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.ZoomAction (mxGraph 2.4.0.3 API Specification) +mxGraphActions.ZoomAction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.ZoomAction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.ZoomAction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphActions.ZoomAction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.html index 5c0bbe035..b8fdbf352 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.html @@ -2,12 +2,12 @@ - + -mxGraphActions (mxGraph 2.4.0.3 API Specification) +mxGraphActions (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphActions (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -789,7 +789,7 @@ public static final
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html b/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html index 49bced734..e386a74f7 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html @@ -2,12 +2,12 @@ - + -mxGraphTransferable (mxGraph 2.4.0.3 API Specification) +mxGraphTransferable (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphTransferable (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphTransferable (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphTransferable (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -801,7 +801,7 @@ protected boolean isStringFlavor(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxICellOverlay.html b/java/docs/com/mxgraph/swing/util/mxICellOverlay.html index b46718d68..0aecf9246 100644 --- a/java/docs/com/mxgraph/swing/util/mxICellOverlay.html +++ b/java/docs/com/mxgraph/swing/util/mxICellOverlay.html @@ -2,12 +2,12 @@ - + -mxICellOverlay (mxGraph 2.4.0.3 API Specification) +mxICellOverlay (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxICellOverlay (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICellOverlay (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxICellOverlay (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -168,7 +168,7 @@ getBounds -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxMorphing.html b/java/docs/com/mxgraph/swing/util/mxMorphing.html index f11cd4ade..4aa8c3bda 100644 --- a/java/docs/com/mxgraph/swing/util/mxMorphing.html +++ b/java/docs/com/mxgraph/swing/util/mxMorphing.html @@ -2,12 +2,12 @@ - + -mxMorphing (mxGraph 2.4.0.3 API Specification) +mxMorphing (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxMorphing (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMorphing (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxMorphing (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -743,7 +743,7 @@ public void paint(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html b/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html index 1248cb91d..0909e5580 100644 --- a/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html +++ b/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html @@ -2,12 +2,12 @@ - + -mxMouseAdapter (mxGraph 2.4.0.3 API Specification) +mxMouseAdapter (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxMouseAdapter (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMouseAdapter (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxMouseAdapter (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -352,7 +352,7 @@ public void mouseExited(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/mxSwingConstants.html b/java/docs/com/mxgraph/swing/util/mxSwingConstants.html index b76f23d95..5615d8f70 100644 --- a/java/docs/com/mxgraph/swing/util/mxSwingConstants.html +++ b/java/docs/com/mxgraph/swing/util/mxSwingConstants.html @@ -2,12 +2,12 @@ - + -mxSwingConstants (mxGraph 2.4.0.3 API Specification) +mxSwingConstants (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSwingConstants (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSwingConstants (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSwingConstants (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -547,7 +547,7 @@ public mxSwingConstants() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/package-frame.html b/java/docs/com/mxgraph/swing/util/package-frame.html index 5b03f8af5..7579ba674 100644 --- a/java/docs/com/mxgraph/swing/util/package-frame.html +++ b/java/docs/com/mxgraph/swing/util/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.util (mxGraph 2.4.0.3 API Specification) +com.mxgraph.swing.util (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/swing/util/package-summary.html b/java/docs/com/mxgraph/swing/util/package-summary.html index 0c8a78c1b..ba836db8c 100644 --- a/java/docs/com/mxgraph/swing/util/package-summary.html +++ b/java/docs/com/mxgraph/swing/util/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.util (mxGraph 2.4.0.3 API Specification) +com.mxgraph.swing.util (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.util (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.util (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.swing.util (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -221,7 +221,7 @@ This package contains all utility classes that require JFC/Swing, namely for -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/package-tree.html b/java/docs/com/mxgraph/swing/util/package-tree.html index bc53166f2..e203361c4 100644 --- a/java/docs/com/mxgraph/swing/util/package-tree.html +++ b/java/docs/com/mxgraph/swing/util/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.util Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.swing.util Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.util Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.util Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.swing.util Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -141,7 +141,7 @@ Interface Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/util/package-use.html b/java/docs/com/mxgraph/swing/util/package-use.html index d11e3e73e..e1e5ba195 100644 --- a/java/docs/com/mxgraph/swing/util/package-use.html +++ b/java/docs/com/mxgraph/swing/util/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.swing.util (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.swing.util (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing.util (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.swing.util (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing.util (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -188,7 +188,7 @@ Classes in
com -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html b/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html index ddabc7258..292349d6a 100644 --- a/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html +++ b/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 2.4.0.3 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.view.mxCellEditor -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html b/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html index 1f9fb84e0..8f97f39ac 100644 --- a/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html +++ b/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 2.4.0.3 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -218,7 +218,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html b/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html index 2e04806c8..c3f74bae4 100644 --- a/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html +++ b/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 2.4.0.3 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -217,7 +217,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html b/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html index 75edd924b..775096a97 100644 --- a/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html +++ b/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 2.4.0.3 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -171,7 +171,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/view/mxCellEditor.html b/java/docs/com/mxgraph/swing/view/mxCellEditor.html index 714f5319f..d2d821ed3 100644 --- a/java/docs/com/mxgraph/swing/view/mxCellEditor.html +++ b/java/docs/com/mxgraph/swing/view/mxCellEditor.html @@ -2,12 +2,12 @@ - + -mxCellEditor (mxGraph 2.4.0.3 API Specification) +mxCellEditor (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCellEditor (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellEditor (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCellEditor (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1074,7 +1074,7 @@ public void setMinimumHeight(int minimumHeight) -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html b/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html index 387cf7cb3..64f7ea58e 100644 --- a/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html +++ b/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html @@ -2,12 +2,12 @@ - + -mxCellStatePreview (mxGraph 2.4.0.3 API Specification) +mxCellStatePreview (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCellStatePreview (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellStatePreview (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCellStatePreview (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -743,7 +743,7 @@ protected void paintPreviewState(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/view/mxICellEditor.html b/java/docs/com/mxgraph/swing/view/mxICellEditor.html index 6f4cd6a15..1484f1842 100644 --- a/java/docs/com/mxgraph/swing/view/mxICellEditor.html +++ b/java/docs/com/mxgraph/swing/view/mxICellEditor.html @@ -2,12 +2,12 @@ - + -mxICellEditor (mxGraph 2.4.0.3 API Specification) +mxICellEditor (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxICellEditor (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICellEditor (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxICellEditor (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -214,7 +214,7 @@ void stopEditing(boolean cancel) -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html b/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html index 28d30f904..fbb4b3c54 100644 --- a/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html +++ b/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html @@ -2,12 +2,12 @@ - + -mxInteractiveCanvas (mxGraph 2.4.0.3 API Specification) +mxInteractiveCanvas (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxInteractiveCanvas (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxInteractiveCanvas (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxInteractiveCanvas (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -450,7 +450,7 @@ public boolean hitSwimlaneContent(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/view/package-frame.html b/java/docs/com/mxgraph/swing/view/package-frame.html index 8642a2af8..5447a132c 100644 --- a/java/docs/com/mxgraph/swing/view/package-frame.html +++ b/java/docs/com/mxgraph/swing/view/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.view (mxGraph 2.4.0.3 API Specification) +com.mxgraph.swing.view (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/swing/view/package-summary.html b/java/docs/com/mxgraph/swing/view/package-summary.html index e517bcf2d..3270f64f8 100644 --- a/java/docs/com/mxgraph/swing/view/package-summary.html +++ b/java/docs/com/mxgraph/swing/view/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.view (mxGraph 2.4.0.3 API Specification) +com.mxgraph.swing.view (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.view (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.view (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.swing.view (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -163,7 +163,7 @@ This package contains all classes required for interaction, namely the -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/view/package-tree.html b/java/docs/com/mxgraph/swing/view/package-tree.html index e465cfc86..d9039b7dc 100644 --- a/java/docs/com/mxgraph/swing/view/package-tree.html +++ b/java/docs/com/mxgraph/swing/view/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.view Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.swing.view Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.view Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.view Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.swing.view Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -129,7 +129,7 @@ Interface Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/swing/view/package-use.html b/java/docs/com/mxgraph/swing/view/package-use.html index f84cb1f20..70e3677a4 100644 --- a/java/docs/com/mxgraph/swing/view/package-use.html +++ b/java/docs/com/mxgraph/swing/view/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.swing.view (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.swing.view (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing.view (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.swing.view (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing.view (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -203,7 +203,7 @@ Classes in
com -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxBase64.html b/java/docs/com/mxgraph/util/class-use/mxBase64.html index ce33940af..516b9d115 100644 --- a/java/docs/com/mxgraph/util/class-use/mxBase64.html +++ b/java/docs/com/mxgraph/util/class-use/mxBase64.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxBase64 (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxBase64 (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxBase64 (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxBase64 (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxBase64 (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxBase64 -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html index 7056e4ba3..a115df230 100644 --- a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html +++ b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 2.4.0.3 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -152,7 +152,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html index 3e6b857cc..6889bf264 100644 --- a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html +++ b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 2.4.0.3 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxCellRenderer -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxConstants.html b/java/docs/com/mxgraph/util/class-use/mxConstants.html index b8568fbec..958869c1e 100644 --- a/java/docs/com/mxgraph/util/class-use/mxConstants.html +++ b/java/docs/com/mxgraph/util/class-use/mxConstants.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxConstants (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxConstants (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxConstants (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxConstants (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxConstants (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxConstants -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxCurve.html b/java/docs/com/mxgraph/util/class-use/mxCurve.html index 540000179..0af24d54b 100644 --- a/java/docs/com/mxgraph/util/class-use/mxCurve.html +++ b/java/docs/com/mxgraph/util/class-use/mxCurve.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxCurve (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxCurve (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCurve (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxCurve (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCurve (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -228,7 +228,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxDomUtils.html b/java/docs/com/mxgraph/util/class-use/mxDomUtils.html index 765b898c3..ac3121f7b 100644 --- a/java/docs/com/mxgraph/util/class-use/mxDomUtils.html +++ b/java/docs/com/mxgraph/util/class-use/mxDomUtils.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxDomUtils -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxEvent.html b/java/docs/com/mxgraph/util/class-use/mxEvent.html index 5c67d28db..694b74585 100644 --- a/java/docs/com/mxgraph/util/class-use/mxEvent.html +++ b/java/docs/com/mxgraph/util/class-use/mxEvent.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxEvent (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxEvent (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEvent (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxEvent (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEvent (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxEvent -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxEventObject.html b/java/docs/com/mxgraph/util/class-use/mxEventObject.html index 6ccb6ef49..4a0c735d6 100644 --- a/java/docs/com/mxgraph/util/class-use/mxEventObject.html +++ b/java/docs/com/mxgraph/util/class-use/mxEventObject.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxEventObject (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxEventObject (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEventObject (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxEventObject (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEventObject (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -166,7 +166,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxEventSource.html b/java/docs/com/mxgraph/util/class-use/mxEventSource.html index 3e0304628..89ae826a2 100644 --- a/java/docs/com/mxgraph/util/class-use/mxEventSource.html +++ b/java/docs/com/mxgraph/util/class-use/mxEventSource.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxEventSource (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxEventSource (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEventSource (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxEventSource (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEventSource (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -426,7 +426,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html b/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html index 55693ee66..f6cfa9386 100644 --- a/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html +++ b/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 2.4.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -518,7 +518,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html b/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html index 552f0db11..97e448046 100644 --- a/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html +++ b/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxHtmlColor -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxImage.html b/java/docs/com/mxgraph/util/class-use/mxImage.html index 850c6fe39..31982b55d 100644 --- a/java/docs/com/mxgraph/util/class-use/mxImage.html +++ b/java/docs/com/mxgraph/util/class-use/mxImage.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxImage (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxImage (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxImage (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxImage (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxImage (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxImage -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxImageBundle.html b/java/docs/com/mxgraph/util/class-use/mxImageBundle.html index 566a31766..22e440d74 100644 --- a/java/docs/com/mxgraph/util/class-use/mxImageBundle.html +++ b/java/docs/com/mxgraph/util/class-use/mxImageBundle.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -202,7 +202,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html b/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html index 6e2ec9826..40663b4b1 100644 --- a/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html +++ b/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 2.4.0.3 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -163,7 +163,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxLine.html b/java/docs/com/mxgraph/util/class-use/mxLine.html index b887d564f..f0c8bdfff 100644 --- a/java/docs/com/mxgraph/util/class-use/mxLine.html +++ b/java/docs/com/mxgraph/util/class-use/mxLine.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxLine (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxLine (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxLine (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxLine (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxLine (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -227,7 +227,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxPoint.html b/java/docs/com/mxgraph/util/class-use/mxPoint.html index a0aad8a50..7153ed69f 100644 --- a/java/docs/com/mxgraph/util/class-use/mxPoint.html +++ b/java/docs/com/mxgraph/util/class-use/mxPoint.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxPoint (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxPoint (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxPoint (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxPoint (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxPoint (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1868,7 +1868,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxRectangle.html b/java/docs/com/mxgraph/util/class-use/mxRectangle.html index f15d621a0..32c4a3879 100644 --- a/java/docs/com/mxgraph/util/class-use/mxRectangle.html +++ b/java/docs/com/mxgraph/util/class-use/mxRectangle.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxRectangle (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxRectangle (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxRectangle (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxRectangle (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxRectangle (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1735,7 +1735,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxResources.html b/java/docs/com/mxgraph/util/class-use/mxResources.html index 87be806ad..a4d3bc3c1 100644 --- a/java/docs/com/mxgraph/util/class-use/mxResources.html +++ b/java/docs/com/mxgraph/util/class-use/mxResources.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxResources (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxResources (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxResources (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxResources (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxResources (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxResources -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxSpline.html b/java/docs/com/mxgraph/util/class-use/mxSpline.html index 9016228a0..a03afbc3c 100644 --- a/java/docs/com/mxgraph/util/class-use/mxSpline.html +++ b/java/docs/com/mxgraph/util/class-use/mxSpline.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxSpline (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxSpline (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxSpline (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxSpline (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxSpline (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxSpline -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxSpline1D.html b/java/docs/com/mxgraph/util/class-use/mxSpline1D.html index d23bcc3b9..ae5c3d2c3 100644 --- a/java/docs/com/mxgraph/util/class-use/mxSpline1D.html +++ b/java/docs/com/mxgraph/util/class-use/mxSpline1D.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -155,7 +155,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html b/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html index f0d5cfd7f..5f436b7b6 100644 --- a/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html +++ b/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxStyleUtils -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoManager.html b/java/docs/com/mxgraph/util/class-use/mxUndoManager.html index f3b9f7c52..3394a94bc 100644 --- a/java/docs/com/mxgraph/util/class-use/mxUndoManager.html +++ b/java/docs/com/mxgraph/util/class-use/mxUndoManager.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxUndoManager -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html index 0ef128312..7be38845d 100644 --- a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html +++ b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 2.4.0.3 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -269,7 +269,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html index aedbdbe50..a0d0ca9ea 100644 --- a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html +++ b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 2.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -389,7 +389,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxUtils.html b/java/docs/com/mxgraph/util/class-use/mxUtils.html index 9e7ad7c42..cce0870a7 100644 --- a/java/docs/com/mxgraph/util/class-use/mxUtils.html +++ b/java/docs/com/mxgraph/util/class-use/mxUtils.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxUtils (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxUtils (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxUtils (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxUtils (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxUtils (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxUtils -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html b/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html index 0454ad1bf..4a40821ae 100644 --- a/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html +++ b/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxXmlUtils -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxBase64.html b/java/docs/com/mxgraph/util/mxBase64.html index 1e49d1fa6..4a56141e0 100644 --- a/java/docs/com/mxgraph/util/mxBase64.html +++ b/java/docs/com/mxgraph/util/mxBase64.html @@ -2,12 +2,12 @@ - + -mxBase64 (mxGraph 2.4.0.3 API Specification) +mxBase64 (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxBase64 (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxBase64 (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxBase64 (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -489,7 +489,7 @@ public static final byte[] decodeFast(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html b/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html index 380800b5c..63465abc9 100644 --- a/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html +++ b/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html @@ -2,12 +2,12 @@ - + -mxCellRenderer.CanvasFactory (mxGraph 2.4.0.3 API Specification) +mxCellRenderer.CanvasFactory (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCellRenderer.CanvasFactory (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellRenderer.CanvasFactory (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCellRenderer.CanvasFactory (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -220,7 +220,7 @@ public abstract
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxCellRenderer.html b/java/docs/com/mxgraph/util/mxCellRenderer.html index 065ea48f0..34bf2db9a 100644 --- a/java/docs/com/mxgraph/util/mxCellRenderer.html +++ b/java/docs/com/mxgraph/util/mxCellRenderer.html @@ -2,12 +2,12 @@ - + -mxCellRenderer (mxGraph 2.4.0.3 API Specification) +mxCellRenderer (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCellRenderer (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellRenderer (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCellRenderer (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -349,7 +349,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxConstants.html b/java/docs/com/mxgraph/util/mxConstants.html index 9f39df107..8d796449b 100644 --- a/java/docs/com/mxgraph/util/mxConstants.html +++ b/java/docs/com/mxgraph/util/mxConstants.html @@ -2,12 +2,12 @@ - + -mxConstants (mxGraph 2.4.0.3 API Specification) +mxConstants (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxConstants (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConstants (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxConstants (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -4175,7 +4175,7 @@ public mxConstants() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxCurve.html b/java/docs/com/mxgraph/util/mxCurve.html index f6a53a0a9..97846bbcb 100644 --- a/java/docs/com/mxgraph/util/mxCurve.html +++ b/java/docs/com/mxgraph/util/mxCurve.html @@ -2,12 +2,12 @@ - + -mxCurve (mxGraph 2.4.0.3 API Specification) +mxCurve (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCurve (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurve (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCurve (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1104,7 +1104,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxDomUtils.html b/java/docs/com/mxgraph/util/mxDomUtils.html index 4d1fb832f..68f50ecd4 100644 --- a/java/docs/com/mxgraph/util/mxDomUtils.html +++ b/java/docs/com/mxgraph/util/mxDomUtils.html @@ -2,12 +2,12 @@ - + -mxDomUtils (mxGraph 2.4.0.3 API Specification) +mxDomUtils (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxDomUtils (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDomUtils (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxDomUtils (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -281,7 +281,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxEvent.html b/java/docs/com/mxgraph/util/mxEvent.html index 65b9c727a..34b4934b6 100644 --- a/java/docs/com/mxgraph/util/mxEvent.html +++ b/java/docs/com/mxgraph/util/mxEvent.html @@ -2,12 +2,12 @@ - + -mxEvent (mxGraph 2.4.0.3 API Specification) +mxEvent (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxEvent (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEvent (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxEvent (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1273,7 +1273,7 @@ public mxEvent() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxEventObject.html b/java/docs/com/mxgraph/util/mxEventObject.html index f1277a94c..c990a9df4 100644 --- a/java/docs/com/mxgraph/util/mxEventObject.html +++ b/java/docs/com/mxgraph/util/mxEventObject.html @@ -2,12 +2,12 @@ - + -mxEventObject (mxGraph 2.4.0.3 API Specification) +mxEventObject (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxEventObject (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventObject (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxEventObject (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -397,7 +397,7 @@ public void consume() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxEventSource.html b/java/docs/com/mxgraph/util/mxEventSource.html index d4fafab40..85ebb23ad 100644 --- a/java/docs/com/mxgraph/util/mxEventSource.html +++ b/java/docs/com/mxgraph/util/mxEventSource.html @@ -2,12 +2,12 @@ - + -mxEventSource (mxGraph 2.4.0.3 API Specification) +mxEventSource (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxEventSource (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventSource (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxEventSource (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -513,7 +513,7 @@ public void fireEvent(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html b/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html index 77a7d4d9b..61aa2abff 100644 --- a/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html +++ b/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html @@ -2,12 +2,12 @@ - + -mxEventSource.mxIEventListener (mxGraph 2.4.0.3 API Specification) +mxEventSource.mxIEventListener (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxEventSource.mxIEventListener (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventSource.mxIEventListener (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxEventSource.mxIEventListener (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -176,7 +176,7 @@ void invoke(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxHtmlColor.html b/java/docs/com/mxgraph/util/mxHtmlColor.html index 77dc73f6e..8a8482078 100644 --- a/java/docs/com/mxgraph/util/mxHtmlColor.html +++ b/java/docs/com/mxgraph/util/mxHtmlColor.html @@ -2,12 +2,12 @@ - + -mxHtmlColor (mxGraph 2.4.0.3 API Specification) +mxHtmlColor (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxHtmlColor (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHtmlColor (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxHtmlColor (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -306,7 +306,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxImage.html b/java/docs/com/mxgraph/util/mxImage.html index d891384a1..0374123ab 100644 --- a/java/docs/com/mxgraph/util/mxImage.html +++ b/java/docs/com/mxgraph/util/mxImage.html @@ -2,12 +2,12 @@ - + -mxImage (mxGraph 2.4.0.3 API Specification) +mxImage (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxImage (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImage (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxImage (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -420,7 +420,7 @@ public void setHeight(int height) -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxImageBundle.html b/java/docs/com/mxgraph/util/mxImageBundle.html index 054bab760..a6ddd1352 100644 --- a/java/docs/com/mxgraph/util/mxImageBundle.html +++ b/java/docs/com/mxgraph/util/mxImageBundle.html @@ -2,12 +2,12 @@ - + -mxImageBundle (mxGraph 2.4.0.3 API Specification) +mxImageBundle (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxImageBundle (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImageBundle (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxImageBundle (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -331,7 +331,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxLightweightLabel.html b/java/docs/com/mxgraph/util/mxLightweightLabel.html index 66af003f9..09d2a8445 100644 --- a/java/docs/com/mxgraph/util/mxLightweightLabel.html +++ b/java/docs/com/mxgraph/util/mxLightweightLabel.html @@ -2,12 +2,12 @@ - + -mxLightweightLabel (mxGraph 2.4.0.3 API Specification) +mxLightweightLabel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxLightweightLabel (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLightweightLabel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxLightweightLabel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -742,7 +742,7 @@ public void firePropertyChange(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxLine.html b/java/docs/com/mxgraph/util/mxLine.html index 52871abb5..fe46eab7e 100644 --- a/java/docs/com/mxgraph/util/mxLine.html +++ b/java/docs/com/mxgraph/util/mxLine.html @@ -2,12 +2,12 @@ - + -mxLine (mxGraph 2.4.0.3 API Specification) +mxLine (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxLine (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLine (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxLine (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -396,7 +396,7 @@ public double ptSegDistSq(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxPoint.html b/java/docs/com/mxgraph/util/mxPoint.html index a8bfda5ea..12c30fe33 100644 --- a/java/docs/com/mxgraph/util/mxPoint.html +++ b/java/docs/com/mxgraph/util/mxPoint.html @@ -2,12 +2,12 @@ - + -mxPoint (mxGraph 2.4.0.3 API Specification) +mxPoint (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPoint (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPoint (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPoint (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -518,7 +518,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxRectangle.html b/java/docs/com/mxgraph/util/mxRectangle.html index 544c27ffe..228ac8f65 100644 --- a/java/docs/com/mxgraph/util/mxRectangle.html +++ b/java/docs/com/mxgraph/util/mxRectangle.html @@ -2,12 +2,12 @@ - + -mxRectangle (mxGraph 2.4.0.3 API Specification) +mxRectangle (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxRectangle (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRectangle (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxRectangle (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -699,7 +699,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxResources.html b/java/docs/com/mxgraph/util/mxResources.html index 93f64f8f8..426fb9101 100644 --- a/java/docs/com/mxgraph/util/mxResources.html +++ b/java/docs/com/mxgraph/util/mxResources.html @@ -2,12 +2,12 @@ - + -mxResources (mxGraph 2.4.0.3 API Specification) +mxResources (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxResources (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxResources (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxResources (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -432,7 +432,7 @@ protected static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxSpline.html b/java/docs/com/mxgraph/util/mxSpline.html index 958c13d8e..a5098370e 100644 --- a/java/docs/com/mxgraph/util/mxSpline.html +++ b/java/docs/com/mxgraph/util/mxSpline.html @@ -2,12 +2,12 @@ - + -mxSpline (mxGraph 2.4.0.3 API Specification) +mxSpline (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSpline (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpline (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSpline (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -371,7 +371,7 @@ public double getLength() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxSpline1D.html b/java/docs/com/mxgraph/util/mxSpline1D.html index 854c42019..6ff899a7a 100644 --- a/java/docs/com/mxgraph/util/mxSpline1D.html +++ b/java/docs/com/mxgraph/util/mxSpline1D.html @@ -2,12 +2,12 @@ - + -mxSpline1D (mxGraph 2.4.0.3 API Specification) +mxSpline1D (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSpline1D (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpline1D (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSpline1D (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -446,7 +446,7 @@ public void solve(double[][] A, -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxStyleUtils.html b/java/docs/com/mxgraph/util/mxStyleUtils.html index 92d0315a3..1334ddc15 100644 --- a/java/docs/com/mxgraph/util/mxStyleUtils.html +++ b/java/docs/com/mxgraph/util/mxStyleUtils.html @@ -2,12 +2,12 @@ - + -mxStyleUtils (mxGraph 2.4.0.3 API Specification) +mxStyleUtils (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxStyleUtils (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStyleUtils (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxStyleUtils (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -468,7 +468,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxUndoManager.html b/java/docs/com/mxgraph/util/mxUndoManager.html index 6cb37f3a1..6f2e9826d 100644 --- a/java/docs/com/mxgraph/util/mxUndoManager.html +++ b/java/docs/com/mxgraph/util/mxUndoManager.html @@ -2,12 +2,12 @@ - + -mxUndoManager (mxGraph 2.4.0.3 API Specification) +mxUndoManager (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxUndoManager (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoManager (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxUndoManager (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -511,7 +511,7 @@ protected void trim() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxUndoableEdit.html b/java/docs/com/mxgraph/util/mxUndoableEdit.html index ae4d042e0..6b7f14bdd 100644 --- a/java/docs/com/mxgraph/util/mxUndoableEdit.html +++ b/java/docs/com/mxgraph/util/mxUndoableEdit.html @@ -2,12 +2,12 @@ - + -mxUndoableEdit (mxGraph 2.4.0.3 API Specification) +mxUndoableEdit (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxUndoableEdit (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoableEdit (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxUndoableEdit (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -578,7 +578,7 @@ public void redo() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html b/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html index a2de7816f..debdfccfb 100644 --- a/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html +++ b/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html @@ -2,12 +2,12 @@ - + -mxUndoableEdit.mxUndoableChange (mxGraph 2.4.0.3 API Specification) +mxUndoableEdit.mxUndoableChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxUndoableEdit.mxUndoableChange (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoableEdit.mxUndoableChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxUndoableEdit.mxUndoableChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -177,7 +177,7 @@ void execute() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxUtils.html b/java/docs/com/mxgraph/util/mxUtils.html index 54655f4df..f8ecda39a 100644 --- a/java/docs/com/mxgraph/util/mxUtils.html +++ b/java/docs/com/mxgraph/util/mxUtils.html @@ -2,12 +2,12 @@ - + -mxUtils (mxGraph 2.4.0.3 API Specification) +mxUtils (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxUtils (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUtils (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxUtils (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -2550,7 +2550,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/mxXmlUtils.html b/java/docs/com/mxgraph/util/mxXmlUtils.html index ee981d32a..3f9071f5f 100644 --- a/java/docs/com/mxgraph/util/mxXmlUtils.html +++ b/java/docs/com/mxgraph/util/mxXmlUtils.html @@ -2,12 +2,12 @@ - + -mxXmlUtils (mxGraph 2.4.0.3 API Specification) +mxXmlUtils (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxXmlUtils (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxXmlUtils (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxXmlUtils (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -240,7 +240,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/package-frame.html b/java/docs/com/mxgraph/util/package-frame.html index c16460f77..b6fd6419f 100644 --- a/java/docs/com/mxgraph/util/package-frame.html +++ b/java/docs/com/mxgraph/util/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util (mxGraph 2.4.0.3 API Specification) +com.mxgraph.util (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/util/package-summary.html b/java/docs/com/mxgraph/util/package-summary.html index 4c1796604..4a38e21c6 100644 --- a/java/docs/com/mxgraph/util/package-summary.html +++ b/java/docs/com/mxgraph/util/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util (mxGraph 2.4.0.3 API Specification) +com.mxgraph.util (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.util (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -258,7 +258,7 @@ This package provides utility classes such as mxConstants, mxUtils, mxPoint -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/package-tree.html b/java/docs/com/mxgraph/util/package-tree.html index 89e629187..3275ad5fe 100644 --- a/java/docs/com/mxgraph/util/package-tree.html +++ b/java/docs/com/mxgraph/util/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.util Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.util Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -140,7 +140,7 @@ Interface Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/package-use.html b/java/docs/com/mxgraph/util/package-use.html index 91462932d..d6b0c83fb 100644 --- a/java/docs/com/mxgraph/util/package-use.html +++ b/java/docs/com/mxgraph/util/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.util (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.util (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.util (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.util (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.util (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -577,7 +577,7 @@ Classes in
com.mxgraph. -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html index dcec8092a..5130c82ae 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 2.4.0.3 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.Gray -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html index bc5ff909a..217324659 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 2.4.0.3 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.Palette -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html index de45b996e..e7bee8a2e 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 2.4.0.3 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.RGB -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html index 552241d15..d44a3cbb4 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -219,7 +219,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html b/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html index cb3943d2c..6de56509c 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 2.4.0.3 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngImageEncoder -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html b/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html index aec99d3e9..f6f176f30 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 2.4.0.3 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html b/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html index 9ab92ab1b..3de45b2b2 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngTextDecoder -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html index 029d10ae6..4c5c58d3f 100644 --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html @@ -2,12 +2,12 @@ - + -mxPngEncodeParam.Gray (mxGraph 2.4.0.3 API Specification) +mxPngEncodeParam.Gray (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.Gray (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.Gray (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPngEncodeParam.Gray (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -542,7 +542,7 @@ public boolean isBitDepthSet() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html index ef455adbe..667a16bf3 100644 --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html @@ -2,12 +2,12 @@ - + -mxPngEncodeParam.Palette (mxGraph 2.4.0.3 API Specification) +mxPngEncodeParam.Palette (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.Palette (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.Palette (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPngEncodeParam.Palette (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -517,7 +517,7 @@ public byte[] getPaletteTransparency() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html index e6fb033d1..5e10ea095 100644 --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html @@ -2,12 +2,12 @@ - + -mxPngEncodeParam.RGB (mxGraph 2.4.0.3 API Specification) +mxPngEncodeParam.RGB (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.RGB (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.RGB (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPngEncodeParam.RGB (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -420,7 +420,7 @@ public int[] getTransparentRGB() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html index 33be8fc03..241a00a77 100644 --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html @@ -2,12 +2,12 @@ - + -mxPngEncodeParam (mxGraph 2.4.0.3 API Specification) +mxPngEncodeParam (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPngEncodeParam (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -2047,7 +2047,7 @@ public int filterRow(byte[] currRow, -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html b/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html index bf4436dda..2b2805df2 100644 --- a/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html +++ b/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html @@ -2,12 +2,12 @@ - + -mxPngImageEncoder (mxGraph 2.4.0.3 API Specification) +mxPngImageEncoder (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPngImageEncoder (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngImageEncoder (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPngImageEncoder (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -326,7 +326,7 @@ public void encode(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html b/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html index 1f22e3280..b5d7a5c88 100644 --- a/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html +++ b/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html @@ -2,12 +2,12 @@ - + -mxPngSuggestedPaletteEntry (mxGraph 2.4.0.3 API Specification) +mxPngSuggestedPaletteEntry (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPngSuggestedPaletteEntry (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngSuggestedPaletteEntry (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPngSuggestedPaletteEntry (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -353,7 +353,7 @@ public mxPngSuggestedPaletteEntry() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html b/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html index 732d9a293..b09423634 100644 --- a/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html +++ b/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html @@ -2,12 +2,12 @@ - + -mxPngTextDecoder (mxGraph 2.4.0.3 API Specification) +mxPngTextDecoder (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPngTextDecoder (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngTextDecoder (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPngTextDecoder (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -271,7 +271,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/package-frame.html b/java/docs/com/mxgraph/util/png/package-frame.html index a26cf77da..ce7464ee7 100644 --- a/java/docs/com/mxgraph/util/png/package-frame.html +++ b/java/docs/com/mxgraph/util/png/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.png (mxGraph 2.4.0.3 API Specification) +com.mxgraph.util.png (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/util/png/package-summary.html b/java/docs/com/mxgraph/util/png/package-summary.html index 274fb6ee3..42e545c95 100644 --- a/java/docs/com/mxgraph/util/png/package-summary.html +++ b/java/docs/com/mxgraph/util/png/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.png (mxGraph 2.4.0.3 API Specification) +com.mxgraph.util.png (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.png (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.png (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.util.png (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -147,7 +147,7 @@ Package com.mxgraph.util.png -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/package-tree.html b/java/docs/com/mxgraph/util/png/package-tree.html index ae5c84e7a..0259833ef 100644 --- a/java/docs/com/mxgraph/util/png/package-tree.html +++ b/java/docs/com/mxgraph/util/png/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.png Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.util.png Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.png Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.png Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.util.png Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -121,7 +121,7 @@ Class Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/png/package-use.html b/java/docs/com/mxgraph/util/png/package-use.html index 912a36437..b178fe65f 100644 --- a/java/docs/com/mxgraph/util/png/package-use.html +++ b/java/docs/com/mxgraph/util/png/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.util.png (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.util.png (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.util.png (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.util.png (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.util.png (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -142,7 +142,7 @@ Classes in
com.m -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/AWTPathProducer.html b/java/docs/com/mxgraph/util/svg/AWTPathProducer.html index 02ed9e35e..75f49ffbe 100644 --- a/java/docs/com/mxgraph/util/svg/AWTPathProducer.html +++ b/java/docs/com/mxgraph/util/svg/AWTPathProducer.html @@ -2,12 +2,12 @@ - + -AWTPathProducer (mxGraph 2.4.0.3 API Specification) +AWTPathProducer (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ AWTPathProducer (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPathProducer (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="AWTPathProducer (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1098,7 +1098,7 @@ public void arcAbs(float rx, -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html b/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html index 064e551fc..477b1e624 100644 --- a/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html +++ b/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html @@ -2,12 +2,12 @@ - + -AWTPolygonProducer (mxGraph 2.4.0.3 API Specification) +AWTPolygonProducer (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ AWTPolygonProducer (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPolygonProducer (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="AWTPolygonProducer (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -281,7 +281,7 @@ public void endPoints() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html b/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html index 8f73a4f05..9f939698d 100644 --- a/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html +++ b/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html @@ -2,12 +2,12 @@ - + -AWTPolylineProducer (mxGraph 2.4.0.3 API Specification) +AWTPolylineProducer (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ AWTPolylineProducer (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPolylineProducer (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="AWTPolylineProducer (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -469,7 +469,7 @@ public void endPoints() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/AbstractParser.html b/java/docs/com/mxgraph/util/svg/AbstractParser.html index dee8f93c8..fd4db17b1 100644 --- a/java/docs/com/mxgraph/util/svg/AbstractParser.html +++ b/java/docs/com/mxgraph/util/svg/AbstractParser.html @@ -2,12 +2,12 @@ - + -AbstractParser (mxGraph 2.4.0.3 API Specification) +AbstractParser (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ AbstractParser (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AbstractParser (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="AbstractParser (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -601,7 +601,7 @@ protected void skipCommaSpaces() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/CSSConstants.html b/java/docs/com/mxgraph/util/svg/CSSConstants.html index 0a9ec17e3..af2fa73c6 100644 --- a/java/docs/com/mxgraph/util/svg/CSSConstants.html +++ b/java/docs/com/mxgraph/util/svg/CSSConstants.html @@ -2,12 +2,12 @@ - + -CSSConstants (mxGraph 2.4.0.3 API Specification) +CSSConstants (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ CSSConstants (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="CSSConstants (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="CSSConstants (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -204,7 +204,7 @@ static final
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html b/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html index fa304e77f..ed24ba3f0 100644 --- a/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html +++ b/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html @@ -2,12 +2,12 @@ - + -DefaultErrorHandler (mxGraph 2.4.0.3 API Specification) +DefaultErrorHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ DefaultErrorHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="DefaultErrorHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="DefaultErrorHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -227,7 +227,7 @@ public void error(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/ErrorHandler.html b/java/docs/com/mxgraph/util/svg/ErrorHandler.html index d26b3da1c..4413c2670 100644 --- a/java/docs/com/mxgraph/util/svg/ErrorHandler.html +++ b/java/docs/com/mxgraph/util/svg/ErrorHandler.html @@ -2,12 +2,12 @@ - + -ErrorHandler (mxGraph 2.4.0.3 API Specification) +ErrorHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ ErrorHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ErrorHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="ErrorHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -178,7 +178,7 @@ void error(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html b/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html index 1d5011bef..0a9fc51af 100644 --- a/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html +++ b/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html @@ -2,12 +2,12 @@ - + -ExtendedGeneralPath (mxGraph 2.4.0.3 API Specification) +ExtendedGeneralPath (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ ExtendedGeneralPath (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ExtendedGeneralPath (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="ExtendedGeneralPath (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1091,7 +1091,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html b/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html index faddca217..22b5259d7 100644 --- a/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html +++ b/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html @@ -2,12 +2,12 @@ - + -ExtendedPathIterator (mxGraph 2.4.0.3 API Specification) +ExtendedPathIterator (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ ExtendedPathIterator (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ExtendedPathIterator (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="ExtendedPathIterator (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -494,7 +494,7 @@ void next() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/NormalizingReader.html b/java/docs/com/mxgraph/util/svg/NormalizingReader.html index ac3941988..49190f350 100644 --- a/java/docs/com/mxgraph/util/svg/NormalizingReader.html +++ b/java/docs/com/mxgraph/util/svg/NormalizingReader.html @@ -2,12 +2,12 @@ - + -NormalizingReader (mxGraph 2.4.0.3 API Specification) +NormalizingReader (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ NormalizingReader (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="NormalizingReader (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="NormalizingReader (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -307,7 +307,7 @@ public abstract int getColumn() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/NumberParser.html b/java/docs/com/mxgraph/util/svg/NumberParser.html index e7b9e8b2a..3bc212a8b 100644 --- a/java/docs/com/mxgraph/util/svg/NumberParser.html +++ b/java/docs/com/mxgraph/util/svg/NumberParser.html @@ -2,12 +2,12 @@ - + -NumberParser (mxGraph 2.4.0.3 API Specification) +NumberParser (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ NumberParser (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="NumberParser (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="NumberParser (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -279,7 +279,7 @@ public static float buildFloat(int mant, -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/ParseException.html b/java/docs/com/mxgraph/util/svg/ParseException.html index 2513349b4..562d97d6e 100644 --- a/java/docs/com/mxgraph/util/svg/ParseException.html +++ b/java/docs/com/mxgraph/util/svg/ParseException.html @@ -2,12 +2,12 @@ - + -ParseException (mxGraph 2.4.0.3 API Specification) +ParseException (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ ParseException (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ParseException (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="ParseException (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -437,7 +437,7 @@ public int getColumnNumber() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/Parser.html b/java/docs/com/mxgraph/util/svg/Parser.html index b3410b256..09ae6124f 100644 --- a/java/docs/com/mxgraph/util/svg/Parser.html +++ b/java/docs/com/mxgraph/util/svg/Parser.html @@ -2,12 +2,12 @@ - + -Parser (mxGraph 2.4.0.3 API Specification) +Parser (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Parser (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Parser (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Parser (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -206,7 +206,7 @@ void setErrorHandler(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/PathHandler.html b/java/docs/com/mxgraph/util/svg/PathHandler.html index 275a5a7cd..cbec61a33 100644 --- a/java/docs/com/mxgraph/util/svg/PathHandler.html +++ b/java/docs/com/mxgraph/util/svg/PathHandler.html @@ -2,12 +2,12 @@ - + -PathHandler (mxGraph 2.4.0.3 API Specification) +PathHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ PathHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PathHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="PathHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -776,7 +776,7 @@ void arcAbs(float rx, -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/PathParser.html b/java/docs/com/mxgraph/util/svg/PathParser.html index 9483489f0..4e6f0a26a 100644 --- a/java/docs/com/mxgraph/util/svg/PathParser.html +++ b/java/docs/com/mxgraph/util/svg/PathParser.html @@ -2,12 +2,12 @@ - + -PathParser (mxGraph 2.4.0.3 API Specification) +PathParser (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ PathParser (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PathParser (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="PathParser (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -941,7 +941,7 @@ protected boolean skipCommaSpaces2() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/PointsHandler.html b/java/docs/com/mxgraph/util/svg/PointsHandler.html index e85b9724f..a7eab7d90 100644 --- a/java/docs/com/mxgraph/util/svg/PointsHandler.html +++ b/java/docs/com/mxgraph/util/svg/PointsHandler.html @@ -2,12 +2,12 @@ - + -PointsHandler (mxGraph 2.4.0.3 API Specification) +PointsHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ PointsHandler (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PointsHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="PointsHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -232,7 +232,7 @@ void endPoints() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/PointsParser.html b/java/docs/com/mxgraph/util/svg/PointsParser.html index 3c74467d2..9c8c5293e 100644 --- a/java/docs/com/mxgraph/util/svg/PointsParser.html +++ b/java/docs/com/mxgraph/util/svg/PointsParser.html @@ -2,12 +2,12 @@ - + -PointsParser (mxGraph 2.4.0.3 API Specification) +PointsParser (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ PointsParser (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PointsParser (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="PointsParser (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -367,7 +367,7 @@ protected void doParse() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/ShapeProducer.html b/java/docs/com/mxgraph/util/svg/ShapeProducer.html index 104907549..2545a697d 100644 --- a/java/docs/com/mxgraph/util/svg/ShapeProducer.html +++ b/java/docs/com/mxgraph/util/svg/ShapeProducer.html @@ -2,12 +2,12 @@ - + -ShapeProducer (mxGraph 2.4.0.3 API Specification) +ShapeProducer (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ ShapeProducer (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ShapeProducer (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="ShapeProducer (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -218,7 +218,7 @@ int getWindingRule() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html b/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html index c8980c04b..8e1e2e8ff 100644 --- a/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html +++ b/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html @@ -2,12 +2,12 @@ - + -StringNormalizingReader (mxGraph 2.4.0.3 API Specification) +StringNormalizingReader (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ StringNormalizingReader (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="StringNormalizingReader (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="StringNormalizingReader (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -454,7 +454,7 @@ public void close() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html b/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html index 1c1005749..fbd4cb792 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html +++ b/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.AWTPathProducer -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html b/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html index 0e8a07c5c..5d9a920b1 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html +++ b/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.AWTPolygonProducer -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html b/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html index 69ff61bb5..415d0704c 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html +++ b/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 2.4.0.3 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html b/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html index 9dbe4d118..11d858f57 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 2.4.0.3 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -163,7 +163,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html b/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html index d62c27b3e..f61e8d15b 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html +++ b/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.CSSConstants -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html b/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html index 90acfec6c..e03dc0161 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html +++ b/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 2.4.0.3 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.DefaultErrorHandler -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html b/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html index d746481e3..ffdfc7c80 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 2.4.0.3 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -185,7 +185,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html b/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html index fc71db9dd..7b5c70814 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 2.4.0.3 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html b/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html index c8f27d1c8..1c7705c0f 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 2.4.0.3 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -162,7 +162,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html b/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html index dc09a6b7c..028902610 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html +++ b/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 2.4.0.3 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -161,7 +161,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html b/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html index 420e23539..72b4c5186 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 2.4.0.3 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -155,7 +155,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/ParseException.html b/java/docs/com/mxgraph/util/svg/class-use/ParseException.html index e6954c55e..239ed66b0 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ParseException.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ParseException.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 2.4.0.3 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -920,7 +920,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/Parser.html b/java/docs/com/mxgraph/util/svg/class-use/Parser.html index 7d886553b..8bda81dc8 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/Parser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/Parser.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 2.4.0.3 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -171,7 +171,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html b/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html index 1298e00ff..6db9bdfd7 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html +++ b/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 2.4.0.3 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -208,7 +208,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/PathParser.html b/java/docs/com/mxgraph/util/svg/class-use/PathParser.html index 031b52ed2..ac461378f 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/PathParser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/PathParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 2.4.0.3 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.PathParser -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html b/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html index 6219f8acb..ecac68729 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html +++ b/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 2.4.0.3 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -215,7 +215,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html b/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html index f6e7a8501..c600b7803 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 2.4.0.3 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.PointsParser -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html b/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html index 6a3ef80c5..873b527e9 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 2.4.0.3 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -162,7 +162,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html b/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html index 7b739ebcd..b245f3c6f 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html +++ b/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 2.4.0.3 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.StringNormalizingReader -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/package-frame.html b/java/docs/com/mxgraph/util/svg/package-frame.html index eeb2992b9..45855a590 100644 --- a/java/docs/com/mxgraph/util/svg/package-frame.html +++ b/java/docs/com/mxgraph/util/svg/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.svg (mxGraph 2.4.0.3 API Specification) +com.mxgraph.util.svg (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/util/svg/package-summary.html b/java/docs/com/mxgraph/util/svg/package-summary.html index 1ba85ac12..6e769c7a5 100644 --- a/java/docs/com/mxgraph/util/svg/package-summary.html +++ b/java/docs/com/mxgraph/util/svg/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.svg (mxGraph 2.4.0.3 API Specification) +com.mxgraph.util.svg (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.svg (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.svg (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.util.svg (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -227,7 +227,7 @@ Package com.mxgraph.util.svg -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/package-tree.html b/java/docs/com/mxgraph/util/svg/package-tree.html index d83d49d24..bc7b8fb20 100644 --- a/java/docs/com/mxgraph/util/svg/package-tree.html +++ b/java/docs/com/mxgraph/util/svg/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.svg Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.util.svg Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.svg Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.svg Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.util.svg Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -146,7 +146,7 @@ Interface Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/util/svg/package-use.html b/java/docs/com/mxgraph/util/svg/package-use.html index e16c853d7..6392d65ab 100644 --- a/java/docs/com/mxgraph/util/svg/package-use.html +++ b/java/docs/com/mxgraph/util/svg/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.util.svg (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.util.svg (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.util.svg (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.util.svg (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.util.svg (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -211,7 +211,7 @@ Classes in
com.m -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxCellState.html b/java/docs/com/mxgraph/view/class-use/mxCellState.html index 60ea28d70..a55096d45 100644 --- a/java/docs/com/mxgraph/view/class-use/mxCellState.html +++ b/java/docs/com/mxgraph/view/class-use/mxCellState.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxCellState (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxCellState (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxCellState (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxCellState (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxCellState (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -2448,7 +2448,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html b/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html index a437b659f..edb57fef6 100644 --- a/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html +++ b/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 2.4.0.3 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -222,7 +222,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html index 0b0fa8f31..92a4ca659 100644 --- a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html +++ b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxEdgeStyle -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html index 04586d24d..7c9a1dd7c 100644 --- a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html +++ b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -249,7 +249,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraph.html b/java/docs/com/mxgraph/view/class-use/mxGraph.html index cd9a9957b..70633fa93 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraph.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraph.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxGraph (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxGraph (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraph (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraph (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraph (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1189,7 +1189,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html b/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html index 376130e51..c83c40488 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 2.4.0.3 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -216,7 +216,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html index 3e47f8e1d..b14416850 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 2.4.0.3 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -194,7 +194,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html index e8b2264a3..5a02937f8 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphView.html b/java/docs/com/mxgraph/view/class-use/mxGraphView.html index 6222d6e5d..da419e06f 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraphView.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraphView.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxGraphView (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxGraphView (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphView (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraphView (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphView (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -279,7 +279,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html b/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html index 5cb3a4343..624778f6b 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 2.4.0.3 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxGraphView.mxCurrentRootChange -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html b/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html index 81aefcaa2..6e663ffa5 100644 --- a/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html +++ b/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxLayoutManager -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html b/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html index 5176e8fe9..a2fcac668 100644 --- a/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html +++ b/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 2.4.0.3 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -178,7 +178,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxPerimeter.html b/java/docs/com/mxgraph/view/class-use/mxPerimeter.html index 6c714bd9b..6c30cd01e 100644 --- a/java/docs/com/mxgraph/view/class-use/mxPerimeter.html +++ b/java/docs/com/mxgraph/view/class-use/mxPerimeter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxPerimeter -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html b/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html index 02a3f9f1d..b9ed82209 100644 --- a/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html +++ b/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 2.4.0.3 API Specification) +Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 2.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -194,7 +194,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html b/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html index 3b9e4ef7e..92414ccee 100644 --- a/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html +++ b/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 2.4.0.3 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxSpaceManager -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html b/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html index fe7716847..a15eb8fe1 100644 --- a/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html +++ b/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 2.4.0.3 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxStyleRegistry -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxStylesheet.html b/java/docs/com/mxgraph/view/class-use/mxStylesheet.html index 6f483d18f..fcf56099d 100644 --- a/java/docs/com/mxgraph/view/class-use/mxStylesheet.html +++ b/java/docs/com/mxgraph/view/class-use/mxStylesheet.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -207,7 +207,7 @@ Uses of
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html b/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html index 05934c665..3ea981b68 100644 --- a/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html +++ b/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 2.4.0.3 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxSwimlaneManager -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html b/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html index d0ad6c20f..7a5afce4c 100644 --- a/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html +++ b/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 2.4.0.3 API Specification) +Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 2.4.0.3 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxTemporaryCellStates -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxCellState.html b/java/docs/com/mxgraph/view/mxCellState.html index ed0c787b8..ea5cd49e2 100644 --- a/java/docs/com/mxgraph/view/mxCellState.html +++ b/java/docs/com/mxgraph/view/mxCellState.html @@ -2,12 +2,12 @@ - + -mxCellState (mxGraph 2.4.0.3 API Specification) +mxCellState (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxCellState (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellState (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxCellState (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1381,7 +1381,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxConnectionConstraint.html b/java/docs/com/mxgraph/view/mxConnectionConstraint.html index dce7403a8..37e5157e9 100644 --- a/java/docs/com/mxgraph/view/mxConnectionConstraint.html +++ b/java/docs/com/mxgraph/view/mxConnectionConstraint.html @@ -2,12 +2,12 @@ - + -mxConnectionConstraint (mxGraph 2.4.0.3 API Specification) +mxConnectionConstraint (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxConnectionConstraint (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectionConstraint (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxConnectionConstraint (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -383,7 +383,7 @@ public void setPerimeter(boolean value) -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxEdgeStyle.html b/java/docs/com/mxgraph/view/mxEdgeStyle.html index d8cadcce4..936e02ead 100644 --- a/java/docs/com/mxgraph/view/mxEdgeStyle.html +++ b/java/docs/com/mxgraph/view/mxEdgeStyle.html @@ -2,12 +2,12 @@ - + -mxEdgeStyle (mxGraph 2.4.0.3 API Specification) +mxEdgeStyle (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeStyle (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeStyle (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxEdgeStyle (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -775,7 +775,7 @@ public mxEdgeStyle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html b/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html index f6872bd94..c7da76262 100644 --- a/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html +++ b/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html @@ -2,12 +2,12 @@ - + -mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.4.0.3 API Specification) +mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -190,7 +190,7 @@ void apply(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxGraph.html b/java/docs/com/mxgraph/view/mxGraph.html index f60ff2a23..205070211 100644 --- a/java/docs/com/mxgraph/view/mxGraph.html +++ b/java/docs/com/mxgraph/view/mxGraph.html @@ -2,12 +2,12 @@ - + -mxGraph (mxGraph 2.4.0.3 API Specification) +mxGraph (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraph (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraph (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraph (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -4104,7 +4104,7 @@ VERSION public static final
String VERSION
Holds the version number of this release. Current version - is 2.4.0.3. + is 2.4.0.4.

See Also:
Constant Field Values
@@ -10327,7 +10327,7 @@ public static void main( -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html b/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html index 8b512597e..baeb8b488 100644 --- a/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html +++ b/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html @@ -2,12 +2,12 @@ - + -mxGraph.mxICellVisitor (mxGraph 2.4.0.3 API Specification) +mxGraph.mxICellVisitor (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraph.mxICellVisitor (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraph.mxICellVisitor (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraph.mxICellVisitor (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -170,7 +170,7 @@ boolean visit(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxGraphSelectionModel.html b/java/docs/com/mxgraph/view/mxGraphSelectionModel.html index 89f8c0292..6492c784d 100644 --- a/java/docs/com/mxgraph/view/mxGraphSelectionModel.html +++ b/java/docs/com/mxgraph/view/mxGraphSelectionModel.html @@ -2,12 +2,12 @@ - + -mxGraphSelectionModel (mxGraph 2.4.0.3 API Specification) +mxGraphSelectionModel (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphSelectionModel (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphSelectionModel (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphSelectionModel (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -721,7 +721,7 @@ protected void cellRemoved(
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html b/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html index 5b1d7bf6a..976ad9741 100644 --- a/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html +++ b/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html @@ -2,12 +2,12 @@ - + -mxGraphSelectionModel.mxSelectionChange (mxGraph 2.4.0.3 API Specification) +mxGraphSelectionModel.mxSelectionChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphSelectionModel.mxSelectionChange (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphSelectionModel.mxSelectionChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphSelectionModel.mxSelectionChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -301,7 +301,7 @@ public void execute() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxGraphView.html b/java/docs/com/mxgraph/view/mxGraphView.html index 1085a9bc4..3d7c2e5f7 100644 --- a/java/docs/com/mxgraph/view/mxGraphView.html +++ b/java/docs/com/mxgraph/view/mxGraphView.html @@ -2,12 +2,12 @@ - + -mxGraphView (mxGraph 2.4.0.3 API Specification) +mxGraphView (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphView (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphView (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphView (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1716,7 +1716,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html b/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html index becb5ccd2..c19a57f6a 100644 --- a/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html +++ b/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html @@ -2,12 +2,12 @@ - + -mxGraphView.mxCurrentRootChange (mxGraph 2.4.0.3 API Specification) +mxGraphView.mxCurrentRootChange (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxGraphView.mxCurrentRootChange (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphView.mxCurrentRootChange (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxGraphView.mxCurrentRootChange (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -416,7 +416,7 @@ public void execute() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxLayoutManager.html b/java/docs/com/mxgraph/view/mxLayoutManager.html index a0215d384..34ce30c67 100644 --- a/java/docs/com/mxgraph/view/mxLayoutManager.html +++ b/java/docs/com/mxgraph/view/mxLayoutManager.html @@ -2,12 +2,12 @@ - + -mxLayoutManager (mxGraph 2.4.0.3 API Specification) +mxLayoutManager (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxLayoutManager (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLayoutManager (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxLayoutManager (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -648,7 +648,7 @@ public void destroy() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxMultiplicity.html b/java/docs/com/mxgraph/view/mxMultiplicity.html index c1930a128..49dfcdfe5 100644 --- a/java/docs/com/mxgraph/view/mxMultiplicity.html +++ b/java/docs/com/mxgraph/view/mxMultiplicity.html @@ -2,12 +2,12 @@ - + -mxMultiplicity (mxGraph 2.4.0.3 API Specification) +mxMultiplicity (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxMultiplicity (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMultiplicity (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxMultiplicity (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -643,7 +643,7 @@ public int getMaxValue() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxPerimeter.html b/java/docs/com/mxgraph/view/mxPerimeter.html index f6cd4d405..04b6d7607 100644 --- a/java/docs/com/mxgraph/view/mxPerimeter.html +++ b/java/docs/com/mxgraph/view/mxPerimeter.html @@ -2,12 +2,12 @@ - + -mxPerimeter (mxGraph 2.4.0.3 API Specification) +mxPerimeter (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPerimeter (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPerimeter (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPerimeter (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -327,7 +327,7 @@ public mxPerimeter() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html b/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html index 0c21ef588..05b749ef2 100644 --- a/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html +++ b/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html @@ -2,12 +2,12 @@ - + -mxPerimeter.mxPerimeterFunction (mxGraph 2.4.0.3 API Specification) +mxPerimeter.mxPerimeterFunction (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxPerimeter.mxPerimeterFunction (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPerimeter.mxPerimeterFunction (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxPerimeter.mxPerimeterFunction (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -186,7 +186,7 @@ apply -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxSpaceManager.html b/java/docs/com/mxgraph/view/mxSpaceManager.html index e4b28d26d..dc4fcac6c 100644 --- a/java/docs/com/mxgraph/view/mxSpaceManager.html +++ b/java/docs/com/mxgraph/view/mxSpaceManager.html @@ -2,12 +2,12 @@ - + -mxSpaceManager (mxGraph 2.4.0.3 API Specification) +mxSpaceManager (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSpaceManager (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpaceManager (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSpaceManager (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -721,7 +721,7 @@ public void destroy() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxStyleRegistry.html b/java/docs/com/mxgraph/view/mxStyleRegistry.html index 977f3de52..13850b2cd 100644 --- a/java/docs/com/mxgraph/view/mxStyleRegistry.html +++ b/java/docs/com/mxgraph/view/mxStyleRegistry.html @@ -2,12 +2,12 @@ - + -mxStyleRegistry (mxGraph 2.4.0.3 API Specification) +mxStyleRegistry (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxStyleRegistry (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStyleRegistry (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxStyleRegistry (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -300,7 +300,7 @@ public static
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxStylesheet.html b/java/docs/com/mxgraph/view/mxStylesheet.html index 5005048c7..8fe872737 100644 --- a/java/docs/com/mxgraph/view/mxStylesheet.html +++ b/java/docs/com/mxgraph/view/mxStylesheet.html @@ -2,12 +2,12 @@ - + -mxStylesheet (mxGraph 2.4.0.3 API Specification) +mxStylesheet (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxStylesheet (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStylesheet (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxStylesheet (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -487,7 +487,7 @@ public
-

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxSwimlaneManager.html b/java/docs/com/mxgraph/view/mxSwimlaneManager.html index 78190027b..ffa145d74 100644 --- a/java/docs/com/mxgraph/view/mxSwimlaneManager.html +++ b/java/docs/com/mxgraph/view/mxSwimlaneManager.html @@ -2,12 +2,12 @@ - + -mxSwimlaneManager (mxGraph 2.4.0.3 API Specification) +mxSwimlaneManager (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxSwimlaneManager (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSwimlaneManager (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxSwimlaneManager (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -753,7 +753,7 @@ public void destroy() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/mxTemporaryCellStates.html b/java/docs/com/mxgraph/view/mxTemporaryCellStates.html index 4d1353d1d..55c24ddf8 100644 --- a/java/docs/com/mxgraph/view/mxTemporaryCellStates.html +++ b/java/docs/com/mxgraph/view/mxTemporaryCellStates.html @@ -2,12 +2,12 @@ - + -mxTemporaryCellStates (mxGraph 2.4.0.3 API Specification) +mxTemporaryCellStates (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ mxTemporaryCellStates (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxTemporaryCellStates (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="mxTemporaryCellStates (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -343,7 +343,7 @@ public void destroy() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/package-frame.html b/java/docs/com/mxgraph/view/package-frame.html index f7aaa4a3e..55f1cf820 100644 --- a/java/docs/com/mxgraph/view/package-frame.html +++ b/java/docs/com/mxgraph/view/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.view (mxGraph 2.4.0.3 API Specification) +com.mxgraph.view (mxGraph 2.4.0.4 API Specification) - + diff --git a/java/docs/com/mxgraph/view/package-summary.html b/java/docs/com/mxgraph/view/package-summary.html index 879792b57..429e19976 100644 --- a/java/docs/com/mxgraph/view/package-summary.html +++ b/java/docs/com/mxgraph/view/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.view (mxGraph 2.4.0.3 API Specification) +com.mxgraph.view (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.view (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.view (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.view (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -232,7 +232,7 @@ This package implements the graph component, represented by the mxGraph -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/package-tree.html b/java/docs/com/mxgraph/view/package-tree.html index 09cecf7d6..a2f41a230 100644 --- a/java/docs/com/mxgraph/view/package-tree.html +++ b/java/docs/com/mxgraph/view/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.view Class Hierarchy (mxGraph 2.4.0.3 API Specification) +com.mxgraph.view Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.view Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.view Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="com.mxgraph.view Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -132,7 +132,7 @@ Interface Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/com/mxgraph/view/package-use.html b/java/docs/com/mxgraph/view/package-use.html index 7cced4d61..970f27143 100644 --- a/java/docs/com/mxgraph/view/package-use.html +++ b/java/docs/com/mxgraph/view/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.view (mxGraph 2.4.0.3 API Specification) +Uses of Package com.mxgraph.view (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.view (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.view (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.view (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -598,7 +598,7 @@ Classes in
com.mxgraph. -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/constant-values.html b/java/docs/constant-values.html index 99eeb39a8..451ed9e7f 100644 --- a/java/docs/constant-values.html +++ b/java/docs/constant-values.html @@ -2,12 +2,12 @@ - + -Constant Field Values (mxGraph 2.4.0.3 API Specification) +Constant Field Values (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Constant Field Values (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Constant Field Values (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Constant Field Values (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -1048,7 +1048,7 @@ com.mxgraph.*
public static final String VERSION -"2.4.0.3" +"2.4.0.4" @@ -1081,7 +1081,7 @@ com.mxgraph.* -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/deprecated-list.html b/java/docs/deprecated-list.html index 16a752240..e96d67fa4 100644 --- a/java/docs/deprecated-list.html +++ b/java/docs/deprecated-list.html @@ -2,12 +2,12 @@ - + -Deprecated List (mxGraph 2.4.0.3 API Specification) +Deprecated List (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Deprecated List (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Deprecated List (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Deprecated List (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -191,7 +191,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/help-doc.html b/java/docs/help-doc.html index eab26c40c..26bcd8bfb 100644 --- a/java/docs/help-doc.html +++ b/java/docs/help-doc.html @@ -2,12 +2,12 @@ - + -API Help (mxGraph 2.4.0.3 API Specification) +API Help (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ API Help (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="API Help (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="API Help (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -188,7 +188,7 @@ This help file applies to API documentation generated using the standard doclet. -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/index-all.html b/java/docs/index-all.html index b5f7e7e6c..7871c7b89 100644 --- a/java/docs/index-all.html +++ b/java/docs/index-all.html @@ -2,12 +2,12 @@ - + -Index (mxGraph 2.4.0.3 API Specification) +Index (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Index (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Index (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Index (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -15045,7 +15045,7 @@ Method in class com.mxgraph.util.svg. -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/index.html b/java/docs/index.html index 3aba1abc6..346095acc 100644 --- a/java/docs/index.html +++ b/java/docs/index.html @@ -2,9 +2,9 @@ - + -mxGraph 2.4.0.3 API Specification +mxGraph 2.4.0.4 API Specification @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -81,7 +81,7 @@ function windowTitle()

-mxGraph 2.4.0.3 API Specification +mxGraph 2.4.0.4 API Specification

@@ -225,7 +225,7 @@ mxGraph 2.4.0.3 API Specification -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/overview-tree.html b/java/docs/overview-tree.html index 61326c509..d7755c557 100644 --- a/java/docs/overview-tree.html +++ b/java/docs/overview-tree.html @@ -2,12 +2,12 @@ - + -Class Hierarchy (mxGraph 2.4.0.3 API Specification) +Class Hierarchy (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Class Hierarchy (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Class Hierarchy (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Class Hierarchy (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -286,7 +286,7 @@ Enum Hierarchy -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/docs/serialized-form.html b/java/docs/serialized-form.html index b512e3414..d4faa3668 100644 --- a/java/docs/serialized-form.html +++ b/java/docs/serialized-form.html @@ -2,12 +2,12 @@ - + -Serialized Form (mxGraph 2.4.0.3 API Specification) +Serialized Form (mxGraph 2.4.0.4 API Specification) - + @@ -15,7 +15,7 @@ Serialized Form (mxGraph 2.4.0.3 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Serialized Form (mxGraph 2.4.0.3 API Specification)"; + parent.document.title="Serialized Form (mxGraph 2.4.0.4 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

@@ -2548,7 +2548,7 @@ visibleTargetState -

mxGraph 2.4.0.3

+

mxGraph 2.4.0.4

diff --git a/java/lib/mxgraph-all.jar b/java/lib/mxgraph-all.jar index 0e6ed6b5b..ca3235d43 100644 Binary files a/java/lib/mxgraph-all.jar and b/java/lib/mxgraph-all.jar differ diff --git a/java/lib/mxgraph-core.jar b/java/lib/mxgraph-core.jar index 1b201a168..68eba6b41 100644 Binary files a/java/lib/mxgraph-core.jar and b/java/lib/mxgraph-core.jar differ diff --git a/java/lib/mxgraph-swing.jar b/java/lib/mxgraph-swing.jar index 94ff69943..5fcb9e73a 100644 Binary files a/java/lib/mxgraph-swing.jar and b/java/lib/mxgraph-swing.jar differ diff --git a/java/src/com/mxgraph/view/mxGraph.java b/java/src/com/mxgraph/view/mxGraph.java index d80259693..3998f711b 100644 --- a/java/src/com/mxgraph/view/mxGraph.java +++ b/java/src/com/mxgraph/view/mxGraph.java @@ -195,9 +195,9 @@ public class mxGraph extends mxEventSource /** * Holds the version number of this release. Current version - * is 2.4.0.3. + * is 2.4.0.4. */ - public static final String VERSION = "2.4.0.3"; + public static final String VERSION = "2.4.0.4"; /** * diff --git a/javascript/examples/grapheditor/www/js/Dialogs.js b/javascript/examples/grapheditor/www/js/Dialogs.js index a7e3b85ed..17a5acc19 100644 --- a/javascript/examples/grapheditor/www/js/Dialogs.js +++ b/javascript/examples/grapheditor/www/js/Dialogs.js @@ -1,5 +1,5 @@ /** - * $Id: Dialogs.js,v 1.24 2014/01/13 01:03:10 gaudenz Exp $ + * $Id: Dialogs.js,v 1.26 2014/01/26 15:48:57 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ /** @@ -578,7 +578,7 @@ function PrintDialog(editorUi) td.style.paddingTop = '40px'; td.setAttribute('align', 'right'); - function preview() + function preview(print) { var pf = graph.pageFormat || mxConstants.PAGE_FORMAT_A4_PORTRAIT; @@ -625,21 +625,19 @@ function PrintDialog(editorUi) } } - var preview = PrintDialog.createPrintPreview(graph, scale, pf, border, x0, y0, autoOrigin); - - return preview.open(); + return PrintDialog.showPreview(PrintDialog.createPrintPreview(graph, scale, pf, border, x0, y0, autoOrigin, print), print); }; td.appendChild(mxUtils.button(mxResources.get('print'), function() { editorUi.hideDialog(); - preview().print(); + preview(true); })); td.appendChild(mxUtils.button(mxResources.get('preview'), function() { editorUi.hideDialog(); - preview(); + preview(false); })); td.appendChild(mxUtils.button(mxResources.get('cancel'), function() @@ -655,6 +653,21 @@ function PrintDialog(editorUi) this.container = table; }; +/** + * Constructs a new print dialog. + */ +PrintDialog.showPreview = function(preview, print) +{ + var result = preview.open(); + + if (print) + { + result.print(); + } + + return result; +}; + /** * Constructs a new print dialog. */ @@ -667,6 +680,9 @@ PrintDialog.createPrintPreview = function(graph, scale, pf, border, x0, y0, auto return preview; }; +/** + * Constructs a new filename dialog. + */ function FilenameDialog(editorUi, filename, buttonText, fn, label) { var row, td; @@ -726,6 +742,9 @@ function FilenameDialog(editorUi, filename, buttonText, fn, label) this.container = table; }; +/** + * Constructs a new textarea dialog. + */ function TextareaDialog(editorUi, title, url, fn, cancelFn) { var row, td; @@ -862,6 +881,9 @@ function EditFileDialog(editorUi) div.appendChild(mxUtils.button(mxResources.get('ok'), function() { + // Removes all illegal control characters before parsing + var data = editorUi.editor.graph.zapGremlins(textarea.value); + if (select.value == 'new') { window.openFile = new OpenFile(function() @@ -870,14 +892,14 @@ function EditFileDialog(editorUi) window.openFile = null; }); - window.openFile.setData(textarea.value, null); + window.openFile.setData(data, null); window.open(editorUi.getUrl()); } else if (select.value == 'replace') { try { - var doc = mxUtils.parseXml(textarea.value); + var doc = mxUtils.parseXml(data); editorUi.editor.setGraphXml(doc.documentElement); editorUi.hideDialog(); } @@ -888,7 +910,7 @@ function EditFileDialog(editorUi) } else if (select.value == 'import') { - var doc = mxUtils.parseXml(textarea.value); + var doc = mxUtils.parseXml(data); var model = new mxGraphModel(); var codec = new mxCodec(doc); codec.decode(doc.documentElement, model); diff --git a/javascript/examples/grapheditor/www/js/Graph.js b/javascript/examples/grapheditor/www/js/Graph.js index 21a1f131b..c694da862 100644 --- a/javascript/examples/grapheditor/www/js/Graph.js +++ b/javascript/examples/grapheditor/www/js/Graph.js @@ -1,5 +1,5 @@ /** - * $Id: Graph.js,v 1.36 2014/01/13 01:03:10 gaudenz Exp $ + * $Id: Graph.js,v 1.37 2014/01/26 15:48:57 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ /** @@ -365,11 +365,36 @@ Graph.prototype.convertValueToString = function(cell) return mxGraph.prototype.convertValueToString.apply(this, arguments); }; +/** + * Removes all illegal control characters with ASCII code <32 except TAB, LF + * and CR. + */ +Graph.prototype.zapGremlins = function(text) +{ + var checked = []; + + for (var i = 0; i < text.length; i++) + { + var code = text.charCodeAt(i); + + // Removes all control chars except TAB, LF and CR + if (code >= 32 || code == 9 || code == 10 || code == 13) + { + checked.push(text.charAt(i)); + } + } + + return checked.join(''); +}; + /** * Handles label changes for XML user objects. */ Graph.prototype.cellLabelChanged = function(cell, value, autoSize) { + // Removes all illegal control characters in user input + value = this.zapGremlins(value); + if (cell.value != null && typeof(cell.value) == 'object') { var tmp = cell.value.cloneNode(true); diff --git a/javascript/examples/grapheditor/www/js/Shapes.js b/javascript/examples/grapheditor/www/js/Shapes.js index 2218128ad..e0597a4d6 100644 --- a/javascript/examples/grapheditor/www/js/Shapes.js +++ b/javascript/examples/grapheditor/www/js/Shapes.js @@ -1,5 +1,5 @@ /** - * $Id: Shapes.js,v 1.24 2013/11/11 18:20:04 gaudenz Exp $ + * $Id: Shapes.js,v 1.26 2014/01/27 20:45:08 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ @@ -262,23 +262,31 @@ }; ProcessShape.prototype.getLabelBounds = function(rect) { - var w = rect.width; - var h = rect.height; - var r = new mxRectangle(rect.x, rect.y, w, h); - - var inset = Math.min(w, Math.min(w, mxUtils.getValue(this.style, 'size', this.size) * w) + this.strokewidth); - - if (this.isRounded) + if (mxUtils.getValue(this.state.style, mxConstants.STYLE_HORIZONTAL, true) == + (this.direction == null || + this.direction == mxConstants.DIRECTION_EAST || + this.direction == mxConstants.DIRECTION_WEST)) { - var f = mxUtils.getValue(this.style, mxConstants.STYLE_ARCSIZE, - mxConstants.RECTANGLE_ROUNDING_FACTOR * 100) / 100; - inset = Math.max(inset, Math.min(w * f, h * f)); + var w = rect.width; + var h = rect.height; + var r = new mxRectangle(rect.x, rect.y, w, h); + + var inset = Math.min(w, Math.min(w, mxUtils.getValue(this.style, 'size', this.size) * w) + this.strokewidth); + + if (this.isRounded) + { + var f = mxUtils.getValue(this.style, mxConstants.STYLE_ARCSIZE, + mxConstants.RECTANGLE_ROUNDING_FACTOR * 100) / 100; + inset = Math.max(inset, Math.min(w * f, h * f)); + } + + r.x += inset; + r.width -= 2 * inset; + + return r; } - r.x += inset; - r.width -= 2 * inset; - - return r; + return rect; }; ProcessShape.prototype.paintForeground = function(c, x, y, w, h) { @@ -962,10 +970,15 @@ mxVertexHandler.prototype.mouseUp.apply(this, arguments); } }; - + + mxExtVertexHandler.prototype.getRotation = function() + { + return this.state.shape.getShapeRotation(); + }; + mxExtVertexHandler.prototype.getSpecialHandleBounds = function(size) { - var rotation = this.state.shape.getShapeRotation(); + var rotation = this.getRotation(); var alpha = mxUtils.toRadians(rotation); var cos = Math.cos(alpha); var sin = Math.sin(alpha); @@ -1041,10 +1054,10 @@ return new mxPoint(x, bounds.y + th); }; - + mxFolderHandler.prototype.updateStyle = function(point) { - var rotation = this.state.shape.getShapeRotation(); + var rotation = this.getRotation(); var alpha = mxUtils.toRadians(rotation); var cos = Math.cos(-alpha); var sin = Math.sin(-alpha); @@ -1132,19 +1145,37 @@ }; mxUtils.extend(mxSwimlaneHandler, mxFolderHandler); - + mxSwimlaneHandler.prototype.getSpecialHandlePoint = function(bounds) { var scale = this.graph.getView().scale; var startSize = mxUtils.getValue(this.state.style, mxConstants.STYLE_STARTSIZE, mxConstants.DEFAULT_STARTSIZE); - return new mxPoint(bounds.x + bounds.width / 2, bounds.y + Math.min(bounds.height, startSize * scale)); + if (mxUtils.getValue(this.state.style, mxConstants.STYLE_HORIZONTAL, true)) + { + return new mxPoint(bounds.x + bounds.width / 2, bounds.y + Math.min(bounds.height, startSize * scale)); + } + else + { + return new mxPoint(bounds.x + Math.min(bounds.width, startSize * scale), bounds.y + bounds.height / 2); + } }; mxSwimlaneHandler.prototype.updateStyleUnrotated = function(point, bounds) { - point.x = bounds.x + bounds.width / 2; - startSize = point.y - bounds.y; + var startSize = 0; + + if (mxUtils.getValue(this.state.style, mxConstants.STYLE_HORIZONTAL, true)) + { + point.x = bounds.x + bounds.width / 2; + startSize = point.y - bounds.y; + } + else + { + point.y = bounds.y + bounds.height / 2; + startSize = point.x - bounds.x; + } + var scale = this.graph.getView().scale; this.state.style['startSize'] = Math.round(Math.max(1, startSize) / scale); @@ -1439,18 +1470,21 @@ // Constraints mxGraph.prototype.getAllConnectionConstraints = function(terminal, source) { - if (terminal != null && terminal.shape != null) + if (mxUtils.getValue(terminal.style, 'fixedPoints', '1') != '0') { - if (terminal.shape.stencil != null) + if (terminal != null && terminal.shape != null) { if (terminal.shape.stencil != null) { - return terminal.shape.stencil.constraints; + if (terminal.shape.stencil != null) + { + return terminal.shape.stencil.constraints; + } + } + else if (terminal.shape.constraints != null) + { + return terminal.shape.constraints; } - } - else if (terminal.shape.constraints != null) - { - return terminal.shape.constraints; } } diff --git a/javascript/examples/grapheditor/www/js/Sidebar.js b/javascript/examples/grapheditor/www/js/Sidebar.js index 35e1bac83..9a00ead22 100644 --- a/javascript/examples/grapheditor/www/js/Sidebar.js +++ b/javascript/examples/grapheditor/www/js/Sidebar.js @@ -1,5 +1,5 @@ /** - * $Id: Sidebar.js,v 1.62 2014/01/17 12:56:03 gaudenz Exp $ + * $Id: Sidebar.js,v 1.63 2014/01/23 17:03:23 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ /** @@ -157,10 +157,20 @@ Sidebar.prototype.sidebarTitles = true; */ Sidebar.prototype.tooltipTitles = true; +/** + * Specifies if titles in the tooltips should be enabled. + */ +Sidebar.prototype.maxTooltipWidth = 400; + +/** + * Specifies if titles in the tooltips should be enabled. + */ +Sidebar.prototype.maxTooltipHeight = 400; + /** * Adds all palettes to the sidebar. */ -Sidebar.prototype.showTooltip = function(elt, cells, title, showLabel) +Sidebar.prototype.showTooltip = function(elt, cells, w, h, title, showLabel) { if (this.enableTooltips && this.showTooltips) { @@ -203,9 +213,19 @@ Sidebar.prototype.showTooltip = function(elt, cells, title, showLabel) document.body.appendChild(this.tooltipImage); } + this.graph2.model.clear(); + + if (w > this.maxTooltipWidth || h > this.maxTooltipHeight) + { + this.graph2.view.scale = Math.round(Math.min(this.maxTooltipWidth / w, this.maxTooltipHeight / h) * 100) / 100; + } + else + { + this.graph2.view.scale = 1; + } + this.tooltip.style.display = 'block'; this.graph2.labelsVisible = (showLabel == null || showLabel); - this.graph2.model.clear(); this.graph2.addCells(cells); var bounds = this.graph2.getGraphBounds(); @@ -820,8 +840,8 @@ Sidebar.prototype.createThumb = function(cells, width, height, parent, title, sh this.graph.addCells(cells); var bounds = this.graph.getGraphBounds(); var corr = this.thumbBorder; - var s = Math.min((width - 2) / (bounds.width - bounds.x + corr), - (height - 2) / (bounds.height - bounds.y + corr)); + var s = Math.round(Math.min((width - 2) / (bounds.width - bounds.x + corr), + (height - 2) / (bounds.height - bounds.y + corr)) * 100) / 100; var x0 = -Math.min(bounds.x, 0); var y0 = -Math.min(bounds.y, 0); this.graph.view.scaleAndTranslate(s, x0, y0); @@ -1094,7 +1114,7 @@ Sidebar.prototype.createVertexTemplateFromCells = function(cells, width, height, { if (mxEvent.isMouseEvent(evt)) { - this.showTooltip(elt, cells, title, showLabel); + this.showTooltip(elt, cells, width, height, title, showLabel); } })); } @@ -1151,7 +1171,7 @@ Sidebar.prototype.createEdgeTemplateFromCells = function(cells, width, height, t { if (mxEvent.isMouseEvent(evt)) { - this.showTooltip(elt, cells, title, showLabel); + this.showTooltip(elt, cells, width, height, title, showLabel); } })); } diff --git a/javascript/mxClient.js b/javascript/mxClient.js index 4eee6b895..9cac6a01c 100644 --- a/javascript/mxClient.js +++ b/javascript/mxClient.js @@ -21,9 +21,9 @@ var mxClient = * * versionMajor.versionMinor.buildNumber.revisionNumber * - * Current version is 2.4.0.3. + * Current version is 2.4.0.4. */ - VERSION: '2.4.0.3', + VERSION: '2.4.0.4', /** * Variable: IS_IE @@ -25468,7 +25468,7 @@ mxConnector.prototype.augmentBoundingBox = function(bbox) bbox.grow(Math.ceil(size * this.scale)); }; /** - * $Id: mxSwimlane.js,v 1.18 2013/10/28 08:45:03 gaudenz Exp $ + * $Id: mxSwimlane.js,v 1.19 2014/01/23 16:27:47 gaudenz Exp $ * Copyright (c) 2006-2013, JGraph Ltd */ /** @@ -25523,51 +25523,71 @@ mxSwimlane.prototype.imageSize = 16; * * Returns the bounding box for the gradient box for this shape. */ -mxSwimlane.prototype.getGradientBounds = function(c, x, y, w, h) +mxSwimlane.prototype.getLabelBounds = function(rect) { - var start = Math.min(h, mxUtils.getValue(this.style, mxConstants.STYLE_STARTSIZE, mxConstants.DEFAULT_STARTSIZE)); + var start = mxUtils.getValue(this.style, mxConstants.STYLE_STARTSIZE, mxConstants.DEFAULT_STARTSIZE); + var bounds = new mxRectangle(rect.x, rect.y, rect.width, rect.height); + var horizontal = this.isHorizontal(); - return new mxRectangle(x, y, w, start); -}; + var flipH = mxUtils.getValue(this.style, mxConstants.STYLE_FLIPH, 0) == 1; + var flipV = mxUtils.getValue(this.style, mxConstants.STYLE_FLIPV, 0) == 1; + + // East is default + var shapeVertical = (this.direction == mxConstants.DIRECTION_NORTH || + this.direction == mxConstants.DIRECTION_SOUTH); + var realHorizontal = horizontal == !shapeVertical; + + var realFlipH = !realHorizontal && flipH != (this.direction == mxConstants.DIRECTION_SOUTH || + this.direction == mxConstants.DIRECTION_WEST); + var realFlipV = realHorizontal && flipV != (this.direction == mxConstants.DIRECTION_SOUTH || + this.direction == mxConstants.DIRECTION_WEST); -/** - * Function: getRotation - * - * Overrides rotation to include the horizontal flag in the shape rotation. - */ -mxSwimlane.prototype.getRotation = function() -{ - var rot = mxShape.prototype.getRotation.apply(this, arguments); - - if (mxUtils.getValue(this.style, mxConstants.STYLE_HORIZONTAL, 1) != 1) + // Shape is horizontal + if (!shapeVertical) { - rot += mxText.prototype.verticalTextRotation; + var tmp = Math.min(bounds.height, start * this.scale); + + if (realFlipH || realFlipV) + { + bounds.y += bounds.height - tmp; + } + + bounds.height = tmp; + } + else + { + var tmp = Math.min(bounds.width, start * this.scale); + + if (realFlipH || realFlipV) + { + bounds.x += bounds.width - tmp; + } + + bounds.width = tmp; } - return rot; + return bounds; }; /** - * Function: getTextRotation + * Function: getGradientBounds * - * Redirect the text rotation to the shape rotation to avoid adding the vertical - * text rotation twice. + * Returns the bounding box for the gradient box for this shape. */ -mxSwimlane.prototype.getTextRotation = function() +mxSwimlane.prototype.getGradientBounds = function(c, x, y, w, h) { - return this.getRotation(); -}; - -/** - * Function: isPaintBoundsInverted - * - * Overrides bounds inversion to maintain the bounds if the shape is rotated - * via the horizontal flag. - */ -mxSwimlane.prototype.isPaintBoundsInverted = function() -{ - return mxShape.prototype.isPaintBoundsInverted.apply(this, arguments) || - mxUtils.getValue(this.style, mxConstants.STYLE_HORIZONTAL, 1) != 1; + var start = mxUtils.getValue(this.style, mxConstants.STYLE_STARTSIZE, mxConstants.DEFAULT_STARTSIZE); + + if (this.isHorizontal()) + { + start = Math.min(start, h); + return new mxRectangle(x, y, w, start); + } + else + { + start = Math.min(start, w); + return new mxRectangle(x, y, start, h); + } }; /** @@ -25582,6 +25602,16 @@ mxSwimlane.prototype.getArcSize = function(w, h, start) return start * f * 3; }; +/** + * Function: paintVertexShape + * + * Paints the swimlane vertex shape. + */ +mxSwimlane.prototype.isHorizontal = function() +{ + return mxUtils.getValue(this.style, mxConstants.STYLE_HORIZONTAL, 1) == 1; +}; + /** * Function: paintVertexShape * @@ -25589,11 +25619,20 @@ mxSwimlane.prototype.getArcSize = function(w, h, start) */ mxSwimlane.prototype.paintVertexShape = function(c, x, y, w, h) { - var start = Math.min(h, mxUtils.getValue(this.style, mxConstants.STYLE_STARTSIZE, mxConstants.DEFAULT_STARTSIZE)); + var start = mxUtils.getValue(this.style, mxConstants.STYLE_STARTSIZE, mxConstants.DEFAULT_STARTSIZE); var fill = mxUtils.getValue(this.style, mxConstants.STYLE_SWIMLANE_FILLCOLOR, mxConstants.NONE); var swimlaneLine = mxUtils.getValue(this.style, mxConstants.STYLE_SWIMLANE_LINE, 1) == 1; var r = 0; - + + if (this.isHorizontal()) + { + start = Math.min(start, h); + } + else + { + start = Math.min(start, w); + } + c.translate(x, y); if (!this.isRounded) @@ -25607,7 +25646,7 @@ mxSwimlane.prototype.paintVertexShape = function(c, x, y, w, h) } var sep = mxUtils.getValue(this.style, mxConstants.STYLE_SEPARATORCOLOR, mxConstants.NONE); - this.paintSeparator(c, w, start, h, sep); + this.paintSeparator(c, x, y, w, h, start, sep); if (this.image != null) { @@ -25639,31 +25678,62 @@ mxSwimlane.prototype.paintSwimlane = function(c, x, y, w, h, start, fill, swimla c.restore(); c.setShadow(false); } - + c.begin(); - c.moveTo(0, start); - c.lineTo(0, 0); - c.lineTo(w, 0); - c.lineTo(w, start); - if (swimlaneLine) + if (this.isHorizontal()) { - c.close(); - } - - c.fillAndStroke(); - - // Transparent content area - if (start < h && fill == mxConstants.NONE) - { - c.pointerEvents = false; - - c.begin(); c.moveTo(0, start); - c.lineTo(0, h); - c.lineTo(w, h); + c.lineTo(0, 0); + c.lineTo(w, 0); c.lineTo(w, start); - c.stroke(); + + if (swimlaneLine) + { + c.close(); + } + + c.fillAndStroke(); + + // Transparent content area + if (start < h && fill == mxConstants.NONE) + { + c.pointerEvents = false; + + c.begin(); + c.moveTo(0, start); + c.lineTo(0, h); + c.lineTo(w, h); + c.lineTo(w, start); + c.stroke(); + } + } + else + { + c.moveTo(start, 0); + c.lineTo(0, 0); + c.lineTo(0, h); + c.lineTo(start, h); + + if (swimlaneLine) + { + c.close(); + } + + c.fillAndStroke(); + + // Transparent content area + if (start < w && fill == mxConstants.NONE) + { + c.pointerEvents = false; + + c.begin(); + c.moveTo(start, 0); + c.lineTo(w, 0); + c.lineTo(w, h); + c.lineTo(start, h); + c.stroke(); + } } }; @@ -25685,33 +25755,68 @@ mxSwimlane.prototype.paintRoundedSwimlane = function(c, x, y, w, h, start, r, fi } c.begin(); - c.moveTo(w, start); - c.lineTo(w, r); - c.quadTo(w, 0, w - Math.min(w / 2, r), 0); - c.lineTo(Math.min(w / 2, r), 0); - c.quadTo(0, 0, 0, r); - c.lineTo(0, start); - if (swimlaneLine) + if (this.isHorizontal()) { - c.close(); - } - - c.fillAndStroke(); - - // Transparent content area - if (start < h && fill == mxConstants.NONE) - { - c.pointerEvents = false; + c.moveTo(w, start); + c.lineTo(w, r); + c.quadTo(w, 0, w - Math.min(w / 2, r), 0); + c.lineTo(Math.min(w / 2, r), 0); + c.quadTo(0, 0, 0, r); + c.lineTo(0, start); - c.begin(); - c.moveTo(0, start); - c.lineTo(0, h - r); - c.quadTo(0, h, Math.min(w / 2, r), h); - c.lineTo(w - Math.min(w / 2, r), h); - c.quadTo(w, h, w, h - r); - c.lineTo(w, start); - c.stroke(); + if (swimlaneLine) + { + c.close(); + } + + c.fillAndStroke(); + + // Transparent content area + if (start < h && fill == mxConstants.NONE) + { + c.pointerEvents = false; + + c.begin(); + c.moveTo(0, start); + c.lineTo(0, h - r); + c.quadTo(0, h, Math.min(w / 2, r), h); + c.lineTo(w - Math.min(w / 2, r), h); + c.quadTo(w, h, w, h - r); + c.lineTo(w, start); + c.stroke(); + } + } + else + { + c.moveTo(start, 0); + c.lineTo(r, 0); + c.quadTo(0, 0, 0, Math.min(h / 2, r)); + c.lineTo(0, h - Math.min(h / 2, r)); + c.quadTo(0, h, r, h); + c.lineTo(start, h); + + if (swimlaneLine) + { + c.close(); + } + + c.fillAndStroke(); + + // Transparent content area + if (start < w && fill == mxConstants.NONE) + { + c.pointerEvents = false; + + c.begin(); + c.moveTo(start, h); + c.lineTo(w - r, h); + c.quadTo(w, h, w, h - Math.min(h / 2, r)); + c.lineTo(w, Math.min(h / 2, r)); + c.quadTo(w, 0, w - r, 0); + c.lineTo(start, 0); + c.stroke(); + } } }; @@ -25720,15 +25825,25 @@ mxSwimlane.prototype.paintRoundedSwimlane = function(c, x, y, w, h, start, r, fi * * Paints the swimlane vertex shape. */ -mxSwimlane.prototype.paintSeparator = function(c, x, y, h, color) +mxSwimlane.prototype.paintSeparator = function(c, x, y, w, h, start, color) { if (color != mxConstants.NONE) { c.setStrokeColor(color); c.setDashed(true); c.begin(); - c.moveTo(x, y); - c.lineTo(x, h); + + if (this.isHorizontal()) + { + c.moveTo(w, start); + c.lineTo(w, h); + } + else + { + c.moveTo(start, 0); + c.lineTo(w, 0); + } + c.stroke(); c.setDashed(false); } @@ -25741,7 +25856,14 @@ mxSwimlane.prototype.paintSeparator = function(c, x, y, h, color) */ mxSwimlane.prototype.getImageBounds = function(x, y, w, h) { - return new mxRectangle(x + w - this.imageSize, y, this.imageSize, this.imageSize); + if (this.isHorizontal()) + { + return new mxRectangle(x + w - this.imageSize, y, this.imageSize, this.imageSize); + } + else + { + return new mxRectangle(x, y, this.imageSize, this.imageSize); + } }; /** * $Id: mxGraphLayout.js,v 1.3 2013/10/28 08:45:05 gaudenz Exp $ @@ -42290,7 +42412,7 @@ mxSelectionChange.prototype.execute = function() 'added', this.added, 'removed', this.removed)); }; /** - * $Id: mxCellEditor.js,v 1.18 2014/01/22 17:09:44 gaudenz Exp $ + * $Id: mxCellEditor.js,v 1.19 2014/01/26 11:55:59 gaudenz Exp $ * Copyright (c) 2006-2013, JGraph Ltd */ /** @@ -42573,29 +42695,6 @@ mxCellEditor.prototype.resize = function() this.bounds.y = bds.y + state.absoluteOffset.y; this.bounds.width = bds.width; this.bounds.height = bds.height; - - // Applies the horizontal and vertical label positions - var horizontal = mxUtils.getValue(state.style, mxConstants.STYLE_LABEL_POSITION, mxConstants.ALIGN_CENTER); - - if (horizontal == mxConstants.ALIGN_LEFT) - { - this.bounds.x -= state.width; - } - else if (horizontal == mxConstants.ALIGN_RIGHT) - { - this.bounds.x += state.width; - } - - var vertical = mxUtils.getValue(state.style, mxConstants.STYLE_VERTICAL_LABEL_POSITION, mxConstants.ALIGN_MIDDLE); - - if (vertical == mxConstants.ALIGN_TOP) - { - this.bounds.y -= state.height; - } - else if (vertical == mxConstants.ALIGN_BOTTOM) - { - this.bounds.y += state.height; - } } var value = this.textarea.value; @@ -43067,7 +43166,7 @@ mxCellEditor.prototype.destroy = function () } }; /** - * $Id: mxCellRenderer.js,v 1.37 2014/01/15 11:32:51 gaudenz Exp $ + * $Id: mxCellRenderer.js,v 1.38 2014/01/23 16:27:47 gaudenz Exp $ * Copyright (c) 2006-2013, JGraph Ltd */ /** @@ -44000,37 +44099,19 @@ mxCellRenderer.prototype.getLabelBounds = function(state) // Minimum of 1 fixes alignment bug in HTML labels bounds.width = Math.max(1, state.width); bounds.height = Math.max(1, state.height); - - // Swimlane is a special case - if (graph.isSwimlane(state.cell)) - { - var size = graph.getStartSize(state.cell); - - if (size.width > 0) - { - var tmp = Math.min(bounds.width, size.width * scale); - - if (state.shape.flipH) - { - bounds.x += bounds.width - tmp; - } - - bounds.width = tmp; - } - else if (size.height > 0) - { - var tmp = Math.min(bounds.height, size.height * scale); - - if (state.shape.flipV) - { - bounds.y += bounds.height - tmp; - } - - bounds.height = tmp; - } - } } + if (state.text.isPaintBoundsInverted()) + { + // Rotates around center of state + var t = (state.width - state.height) / 2; + bounds.x += t; + bounds.y -= t; + var tmp = bounds.width; + bounds.width = bounds.height; + bounds.height = tmp; + } + // Shape can modify its label bounds if (state.shape != null) { @@ -44058,17 +44139,6 @@ mxCellRenderer.prototype.getLabelBounds = function(state) */ mxCellRenderer.prototype.rotateLabelBounds = function(state, bounds) { - if (state.text.isPaintBoundsInverted()) - { - // Rotates around center of state - var t = (state.width - state.height) / 2; - bounds.x += t; - bounds.y -= t; - var tmp = bounds.width; - bounds.width = bounds.height; - bounds.height = tmp; - } - bounds.x -= state.text.margin.x * bounds.width; bounds.y -= state.text.margin.y * bounds.height; @@ -48533,7 +48603,7 @@ mxCurrentRootChange.prototype.execute = function() this.isUp = !this.isUp; }; /** - * $Id: mxGraph.js,v 1.64 2014/01/15 11:32:51 gaudenz Exp $ + * $Id: mxGraph.js,v 1.65 2014/01/23 16:52:17 gaudenz Exp $ * Copyright (c) 2006-2013, JGraph Ltd */ /** @@ -50472,7 +50542,7 @@ mxGraph.prototype.processChange = function(change) var newParent = this.model.getParent(change.child); this.view.invalidate(change.child, true, true); - if (newParent == null) + if (newParent == null || this.isCellCollapsed(newParent)) { this.view.invalidate(change.child, true, true); this.removeStateForCell(change.child); @@ -72459,7 +72529,7 @@ mxCellTracker.prototype.destroy = function() } }; /** - * $Id: mxCellHighlight.js,v 1.9 2013/10/28 08:45:07 gaudenz Exp $ + * $Id: mxCellHighlight.js,v 1.10 2014/01/29 09:23:45 gaudenz Exp $ * Copyright (c) 2006-2013, JGraph Ltd */ /** @@ -72491,14 +72561,15 @@ function mxCellHighlight(graph, highlightColor, strokeWidth, dashed) // Updates reference to state if (this.state != null) { - this.state = this.graph.view.getState(this.state.cell); + var tmp = this.graph.view.getState(this.state.cell); - if (this.state == null) + if (tmp == null) { this.hide(); } else { + this.state = tmp; this.repaint(); } } diff --git a/javascript/mxClient.min.js b/javascript/mxClient.min.js index 691cec06a..1e08462f2 100644 --- a/javascript/mxClient.min.js +++ b/javascript/mxClient.min.js @@ -1,4 +1,4 @@ -var mxClient={VERSION:"2.4.0.3",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE"),IS_OP:0<=navigator.userAgent.indexOf("Opera/"),IS_OT:0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&& +var mxClient={VERSION:"2.4.0.4",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE"),IS_OP:0<=navigator.userAgent.indexOf("Opera/"),IS_OT:0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&& 0>navigator.userAgent.indexOf("Presto/2.1.")&&0>navigator.userAgent.indexOf("Presto/2.0.")&&0>navigator.userAgent.indexOf("Presto/1."),IS_SF:0<=navigator.userAgent.indexOf("AppleWebKit/")&&0>navigator.userAgent.indexOf("Chrome/"),IS_IOS:navigator.userAgent.match(/(iPad|iPhone|iPod)/g)?!0:!1,IS_GC:0<=navigator.userAgent.indexOf("Chrome/"),IS_FF:0<=navigator.userAgent.indexOf("Firefox/"),IS_MT:0<=navigator.userAgent.indexOf("Firefox/")&&0>navigator.userAgent.indexOf("Firefox/1.")&&0>navigator.userAgent.indexOf("Firefox/2.")|| 0<=navigator.userAgent.indexOf("Iceweasel/")&&0>navigator.userAgent.indexOf("Iceweasel/1.")&&0>navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/")&&0>navigator.userAgent.indexOf("SeaMonkey/1.")||0<=navigator.userAgent.indexOf("Iceape/")&&0>navigator.userAgent.indexOf("Iceape/1."),IS_SVG:0<=navigator.userAgent.indexOf("Firefox/")||0<=navigator.userAgent.indexOf("Iceweasel/")||0<=navigator.userAgent.indexOf("Seamonkey/")||0<=navigator.userAgent.indexOf("Iceape/")|| 0<=navigator.userAgent.indexOf("Galeon/")||0<=navigator.userAgent.indexOf("Epiphany/")||0<=navigator.userAgent.indexOf("AppleWebKit/")||0<=navigator.userAgent.indexOf("Gecko/")||0<=navigator.userAgent.indexOf("Opera/")||null!=document.documentMode&&9<=document.documentMode,NO_FO:!document.createElementNS||"[object SVGForeignObjectElement]"!=document.createElementNS("http://www.w3.org/2000/svg","foreignObject")||0<=navigator.userAgent.indexOf("Opera/"),IS_VML:"MICROSOFT INTERNET EXPLORER"==navigator.appName.toUpperCase(), @@ -483,15 +483,19 @@ mxConnector.prototype.paintCurvedLine=function(a,b){a.begin();var c=b[0],d=b.len mxConnector.prototype.createMarker=function(a,b,c){var d=null,e=b.length,f=c?b[1]:b[e-2],g=c?b[0]:b[e-1];if(null!=f&&null!=g){for(d=1;d");this.textDiv.innerHTML=d;d=this.textDiv.offsetWidth+30;g=this.textDiv.offsetHeight+16;d=Math.max(d,40);g=Math.max(g,20);b?(d=Math.min(this.bounds.width,d),g=Math.min(this.bounds.height,g)):c&&(d=Math.max(this.bounds.width,this.textDiv.scrollWidth));b=null!=a.text?a.text.margin:null;null==b&&(b=mxUtils.getValue(a.style,mxConstants.STYLE_ALIGN,mxConstants.ALIGN_CENTER), -a=mxUtils.getValue(a.style,mxConstants.STYLE_VERTICAL_ALIGN,mxConstants.ALIGN_MIDDLE),b=mxUtils.getAlignmentAsPoint(b,a));null!=b&&(this.textarea.style.left=Math.max(0,Math.round(this.bounds.x-b.x*this.bounds.width+b.x*d)-3)+"px",this.textarea.style.top=Math.max(0,Math.round(this.bounds.y-b.y*this.bounds.height+b.y*g)+4)+"px");this.textarea.style.width=d+(this.textarea.offsetWidth-this.textarea.clientWidth+4)+"px";this.textarea.style.height=g+"px"}}};mxCellEditor.prototype.isModified=function(){return this.modified}; -mxCellEditor.prototype.setModified=function(a){this.modified=a};mxCellEditor.prototype.focusLost=function(){this.stopEditing(!this.graph.isInvokesStopCellEditing())}; +g.width,this.bounds.height=g.height);d=this.textarea.value;if("\n"==d.charAt(d.length-1)||""==d)d+=" ";d=mxUtils.htmlEntities(d,!1);c?(this.textDiv.style.whiteSpace="normal",this.textDiv.style.width=this.bounds.width+"px"):d=d.replace(/ /g," ");d=d.replace(/\n/g,"
");this.textDiv.innerHTML=d;d=this.textDiv.offsetWidth+30;g=this.textDiv.offsetHeight+16;d=Math.max(d,40);g=Math.max(g,20);b?(d=Math.min(this.bounds.width,d),g=Math.min(this.bounds.height,g)):c&&(d=Math.max(this.bounds.width, +this.textDiv.scrollWidth));b=null!=a.text?a.text.margin:null;null==b&&(b=mxUtils.getValue(a.style,mxConstants.STYLE_ALIGN,mxConstants.ALIGN_CENTER),a=mxUtils.getValue(a.style,mxConstants.STYLE_VERTICAL_ALIGN,mxConstants.ALIGN_MIDDLE),b=mxUtils.getAlignmentAsPoint(b,a));null!=b&&(this.textarea.style.left=Math.max(0,Math.round(this.bounds.x-b.x*this.bounds.width+b.x*d)-3)+"px",this.textarea.style.top=Math.max(0,Math.round(this.bounds.y-b.y*this.bounds.height+b.y*g)+4)+"px");this.textarea.style.width= +d+(this.textarea.offsetWidth-this.textarea.clientWidth+4)+"px";this.textarea.style.height=g+"px"}}};mxCellEditor.prototype.isModified=function(){return this.modified};mxCellEditor.prototype.setModified=function(a){this.modified=a};mxCellEditor.prototype.focusLost=function(){this.stopEditing(!this.graph.isInvokesStopCellEditing())}; mxCellEditor.prototype.startEditing=function(a,b){null==this.textarea&&this.init();this.stopEditing(!0);var c=this.graph.getView().getState(a);if(null!=c){this.editingCell=a;this.trigger=b;this.textNode=null;null!=c.text&&this.isHideLabel(c)&&(this.textNode=c.text.node,this.textNode.style.visibility="hidden");var d=this.graph.getView().scale,d=mxUtils.getValue(c.style,mxConstants.STYLE_FONTSIZE,mxConstants.DEFAULT_FONTSIZE)*d,e=mxUtils.getValue(c.style,mxConstants.STYLE_FONTFAMILY,mxConstants.DEFAULT_FONTFAMILY), f=mxUtils.getValue(c.style,mxConstants.STYLE_FONTCOLOR,"black"),g=mxUtils.getValue(c.style,mxConstants.STYLE_ALIGN,mxConstants.ALIGN_LEFT),h=(mxUtils.getValue(c.style,mxConstants.STYLE_FONTSTYLE,0)&mxConstants.FONT_BOLD)==mxConstants.FONT_BOLD,k=(mxUtils.getValue(c.style,mxConstants.STYLE_FONTSTYLE,0)&mxConstants.FONT_ITALIC)==mxConstants.FONT_ITALIC,l=(mxUtils.getValue(c.style,mxConstants.STYLE_FONTSTYLE,0)&mxConstants.FONT_UNDERLINE)==mxConstants.FONT_UNDERLINE;this.textarea.style.fontSize=Math.round(d)+ "px";this.textarea.style.lineHeight=Math.round(d*mxConstants.LINE_HEIGHT)+"px";this.textarea.style.fontFamily=e;this.textarea.style.textAlign=g;this.textarea.style.color=f;this.textarea.style.fontWeight=h?"bold":"normal";this.textarea.style.fontStyle=k?"italic":"";this.textarea.style.textDecoration=l?"underline":"";this.textarea.style.overflow="auto";this.textarea.style.outline="none";this.bounds=d=this.getEditorBounds(c);this.textarea.style.left=d.x+"px";this.textarea.style.top=d.y+"px";this.textarea.style.width= @@ -824,10 +827,10 @@ mxCellRenderer.prototype.installListeners=function(a){var b=a.view.graph,c=funct null:c(e))):d&&mxEvent.consume(e)}),mxUtils.bind(this,function(e){this.isShapeEvent(a,e)&&!d?b.fireMouseEvent(mxEvent.MOUSE_UP,new mxMouseEvent(e,null!=a.shape&&mxEvent.getSource(e)==a.shape.content?null:c(e))):d&&mxEvent.consume(e)}));b.nativeDblClickEnabled&&mxEvent.addListener(a.shape.node,"dblclick",mxUtils.bind(this,function(c){this.isShapeEvent(a,c)&&(b.dblClick(c,a.cell),mxEvent.consume(c))}))}; mxCellRenderer.prototype.redrawLabel=function(a,b){var c=this.getLabelValue(a);if(null==a.text&&null!=c&&(mxUtils.isNode(c)||0mxUtils.indexOf(b,e)&&b.push(e)}}return this.getModel().getTopmostCells(b)}; mxGraph.prototype.graphModelChanged=function(a){for(var b=0;b"+b+""),d&&b.addListener(mxEvent.CLICK,mxUtils.bind(this,function(b,c){this.isEnabled()&&this.setSelectionCell(a)})),this.addCellOverlay(a,b);this.removeCellOverlays(a);return null};mxGraph.prototype.startEditing=function(a){this.startEditingAtCell(null,a)}; @@ -1437,7 +1440,7 @@ e,f);this.state=c;this.node=d;this.stateSource=g}}),this.delay)}};mxTooltipHandl mxTooltipHandler.prototype.show=function(a,b,c){if(null!=a&&0");this.div.style.visibility="";mxUtils.fit(this.div)}}; mxTooltipHandler.prototype.destroy=function(){this.graph.removeMouseListener(this);mxEvent.release(this.div);null!=this.div&&null!=this.div.parentNode&&this.div.parentNode.removeChild(this.div);this.div=null};function mxCellTracker(a,b,c){mxCellMarker.call(this,a,b);this.graph.addMouseListener(this);null!=c&&(this.getCell=c);mxClient.IS_IE&&mxEvent.addListener(window,"unload",mxUtils.bind(this,function(){this.destroy()}))}mxUtils.extend(mxCellTracker,mxCellMarker); mxCellTracker.prototype.mouseDown=function(a,b){};mxCellTracker.prototype.mouseMove=function(a,b){this.isEnabled()&&this.process(b)};mxCellTracker.prototype.mouseUp=function(a,b){this.reset()};mxCellTracker.prototype.destroy=function(){this.destroyed||(this.destroyed=!0,this.graph.removeMouseListener(this),mxCellMarker.prototype.destroy.apply(this))}; -function mxCellHighlight(a,b,c,d){null!=a&&(this.graph=a,this.highlightColor=null!=b?b:mxConstants.DEFAULT_VALID_COLOR,this.strokeWidth=null!=c?c:mxConstants.HIGHLIGHT_STROKEWIDTH,this.dashed=null!=d?d:!1,this.repaintHandler=mxUtils.bind(this,function(){null!=this.state&&(this.state=this.graph.view.getState(this.state.cell),null==this.state?this.hide():this.repaint())}),this.graph.getView().addListener(mxEvent.SCALE,this.repaintHandler),this.graph.getView().addListener(mxEvent.TRANSLATE,this.repaintHandler), +function mxCellHighlight(a,b,c,d){null!=a&&(this.graph=a,this.highlightColor=null!=b?b:mxConstants.DEFAULT_VALID_COLOR,this.strokeWidth=null!=c?c:mxConstants.HIGHLIGHT_STROKEWIDTH,this.dashed=null!=d?d:!1,this.repaintHandler=mxUtils.bind(this,function(){if(null!=this.state){var a=this.graph.view.getState(this.state.cell);null==a?this.hide():(this.state=a,this.repaint())}}),this.graph.getView().addListener(mxEvent.SCALE,this.repaintHandler),this.graph.getView().addListener(mxEvent.TRANSLATE,this.repaintHandler), this.graph.getView().addListener(mxEvent.SCALE_AND_TRANSLATE,this.repaintHandler),this.graph.getModel().addListener(mxEvent.CHANGE,this.repaintHandler),this.resetHandler=mxUtils.bind(this,function(){this.hide()}),this.graph.getView().addListener(mxEvent.DOWN,this.resetHandler),this.graph.getView().addListener(mxEvent.UP,this.resetHandler))}mxCellHighlight.prototype.keepOnTop=!1;mxCellHighlight.prototype.graph=!0;mxCellHighlight.prototype.state=null;mxCellHighlight.prototype.spacing=2; mxCellHighlight.prototype.resetHandler=null;mxCellHighlight.prototype.setHighlightColor=function(a){this.highlightColor=a;null!=this.shape&&(this.shape.stroke=a)};mxCellHighlight.prototype.drawHighlight=function(){this.shape=this.createShape();this.repaint();!this.keepOnTop&&this.shape.node.parentNode.firstChild!=this.shape.node&&this.shape.node.parentNode.insertBefore(this.shape.node,this.shape.node.parentNode.firstChild)}; mxCellHighlight.prototype.createShape=function(){var a=null,a=this.graph.model.isEdge(this.state.cell)?new mxPolyline(this.state.absolutePoints,this.highlightColor,this.strokeWidth):new mxRectangleShape(new mxRectangle,null,this.highlightColor,this.strokeWidth);a.dialect=this.graph.dialect!=mxConstants.DIALECT_SVG?mxConstants.DIALECT_VML:mxConstants.DIALECT_SVG;a.init(this.graph.getView().getOverlayPane());mxEvent.redirectMouseEvents(a.node,this.graph,this.state);a.pointerEvents=!1;a.isDashed=this.dashed; diff --git a/javascript/src/js/handler/mxCellHighlight.js b/javascript/src/js/handler/mxCellHighlight.js index 44c4de237..1d6684dd6 100644 --- a/javascript/src/js/handler/mxCellHighlight.js +++ b/javascript/src/js/handler/mxCellHighlight.js @@ -1,5 +1,5 @@ /** - * $Id: mxCellHighlight.js,v 1.9 2013/10/28 08:45:07 gaudenz Exp $ + * $Id: mxCellHighlight.js,v 1.10 2014/01/29 09:23:45 gaudenz Exp $ * Copyright (c) 2006-2013, JGraph Ltd */ /** @@ -31,14 +31,15 @@ function mxCellHighlight(graph, highlightColor, strokeWidth, dashed) // Updates reference to state if (this.state != null) { - this.state = this.graph.view.getState(this.state.cell); + var tmp = this.graph.view.getState(this.state.cell); - if (this.state == null) + if (tmp == null) { this.hide(); } else { + this.state = tmp; this.repaint(); } } diff --git a/javascript/src/js/mxClient.js b/javascript/src/js/mxClient.js index edf82cde6..67d308a38 100644 --- a/javascript/src/js/mxClient.js +++ b/javascript/src/js/mxClient.js @@ -21,9 +21,9 @@ var mxClient = * * versionMajor.versionMinor.buildNumber.revisionNumber * - * Current version is 2.4.0.3. + * Current version is 2.4.0.4. */ - VERSION: '2.4.0.3', + VERSION: '2.4.0.4', /** * Variable: IS_IE diff --git a/javascript/src/js/shape/mxSwimlane.js b/javascript/src/js/shape/mxSwimlane.js index 413cbd722..b19b466d4 100644 --- a/javascript/src/js/shape/mxSwimlane.js +++ b/javascript/src/js/shape/mxSwimlane.js @@ -1,5 +1,5 @@ /** - * $Id: mxSwimlane.js,v 1.18 2013/10/28 08:45:03 gaudenz Exp $ + * $Id: mxSwimlane.js,v 1.19 2014/01/23 16:27:47 gaudenz Exp $ * Copyright (c) 2006-2013, JGraph Ltd */ /** @@ -54,51 +54,71 @@ mxSwimlane.prototype.imageSize = 16; * * Returns the bounding box for the gradient box for this shape. */ -mxSwimlane.prototype.getGradientBounds = function(c, x, y, w, h) +mxSwimlane.prototype.getLabelBounds = function(rect) { - var start = Math.min(h, mxUtils.getValue(this.style, mxConstants.STYLE_STARTSIZE, mxConstants.DEFAULT_STARTSIZE)); + var start = mxUtils.getValue(this.style, mxConstants.STYLE_STARTSIZE, mxConstants.DEFAULT_STARTSIZE); + var bounds = new mxRectangle(rect.x, rect.y, rect.width, rect.height); + var horizontal = this.isHorizontal(); - return new mxRectangle(x, y, w, start); -}; + var flipH = mxUtils.getValue(this.style, mxConstants.STYLE_FLIPH, 0) == 1; + var flipV = mxUtils.getValue(this.style, mxConstants.STYLE_FLIPV, 0) == 1; + + // East is default + var shapeVertical = (this.direction == mxConstants.DIRECTION_NORTH || + this.direction == mxConstants.DIRECTION_SOUTH); + var realHorizontal = horizontal == !shapeVertical; + + var realFlipH = !realHorizontal && flipH != (this.direction == mxConstants.DIRECTION_SOUTH || + this.direction == mxConstants.DIRECTION_WEST); + var realFlipV = realHorizontal && flipV != (this.direction == mxConstants.DIRECTION_SOUTH || + this.direction == mxConstants.DIRECTION_WEST); -/** - * Function: getRotation - * - * Overrides rotation to include the horizontal flag in the shape rotation. - */ -mxSwimlane.prototype.getRotation = function() -{ - var rot = mxShape.prototype.getRotation.apply(this, arguments); - - if (mxUtils.getValue(this.style, mxConstants.STYLE_HORIZONTAL, 1) != 1) + // Shape is horizontal + if (!shapeVertical) { - rot += mxText.prototype.verticalTextRotation; + var tmp = Math.min(bounds.height, start * this.scale); + + if (realFlipH || realFlipV) + { + bounds.y += bounds.height - tmp; + } + + bounds.height = tmp; + } + else + { + var tmp = Math.min(bounds.width, start * this.scale); + + if (realFlipH || realFlipV) + { + bounds.x += bounds.width - tmp; + } + + bounds.width = tmp; } - return rot; + return bounds; }; /** - * Function: getTextRotation + * Function: getGradientBounds * - * Redirect the text rotation to the shape rotation to avoid adding the vertical - * text rotation twice. + * Returns the bounding box for the gradient box for this shape. */ -mxSwimlane.prototype.getTextRotation = function() +mxSwimlane.prototype.getGradientBounds = function(c, x, y, w, h) { - return this.getRotation(); -}; - -/** - * Function: isPaintBoundsInverted - * - * Overrides bounds inversion to maintain the bounds if the shape is rotated - * via the horizontal flag. - */ -mxSwimlane.prototype.isPaintBoundsInverted = function() -{ - return mxShape.prototype.isPaintBoundsInverted.apply(this, arguments) || - mxUtils.getValue(this.style, mxConstants.STYLE_HORIZONTAL, 1) != 1; + var start = mxUtils.getValue(this.style, mxConstants.STYLE_STARTSIZE, mxConstants.DEFAULT_STARTSIZE); + + if (this.isHorizontal()) + { + start = Math.min(start, h); + return new mxRectangle(x, y, w, start); + } + else + { + start = Math.min(start, w); + return new mxRectangle(x, y, start, h); + } }; /** @@ -113,6 +133,16 @@ mxSwimlane.prototype.getArcSize = function(w, h, start) return start * f * 3; }; +/** + * Function: paintVertexShape + * + * Paints the swimlane vertex shape. + */ +mxSwimlane.prototype.isHorizontal = function() +{ + return mxUtils.getValue(this.style, mxConstants.STYLE_HORIZONTAL, 1) == 1; +}; + /** * Function: paintVertexShape * @@ -120,11 +150,20 @@ mxSwimlane.prototype.getArcSize = function(w, h, start) */ mxSwimlane.prototype.paintVertexShape = function(c, x, y, w, h) { - var start = Math.min(h, mxUtils.getValue(this.style, mxConstants.STYLE_STARTSIZE, mxConstants.DEFAULT_STARTSIZE)); + var start = mxUtils.getValue(this.style, mxConstants.STYLE_STARTSIZE, mxConstants.DEFAULT_STARTSIZE); var fill = mxUtils.getValue(this.style, mxConstants.STYLE_SWIMLANE_FILLCOLOR, mxConstants.NONE); var swimlaneLine = mxUtils.getValue(this.style, mxConstants.STYLE_SWIMLANE_LINE, 1) == 1; var r = 0; - + + if (this.isHorizontal()) + { + start = Math.min(start, h); + } + else + { + start = Math.min(start, w); + } + c.translate(x, y); if (!this.isRounded) @@ -138,7 +177,7 @@ mxSwimlane.prototype.paintVertexShape = function(c, x, y, w, h) } var sep = mxUtils.getValue(this.style, mxConstants.STYLE_SEPARATORCOLOR, mxConstants.NONE); - this.paintSeparator(c, w, start, h, sep); + this.paintSeparator(c, x, y, w, h, start, sep); if (this.image != null) { @@ -170,31 +209,62 @@ mxSwimlane.prototype.paintSwimlane = function(c, x, y, w, h, start, fill, swimla c.restore(); c.setShadow(false); } - + c.begin(); - c.moveTo(0, start); - c.lineTo(0, 0); - c.lineTo(w, 0); - c.lineTo(w, start); - if (swimlaneLine) + if (this.isHorizontal()) { - c.close(); - } - - c.fillAndStroke(); - - // Transparent content area - if (start < h && fill == mxConstants.NONE) - { - c.pointerEvents = false; - - c.begin(); c.moveTo(0, start); - c.lineTo(0, h); - c.lineTo(w, h); + c.lineTo(0, 0); + c.lineTo(w, 0); c.lineTo(w, start); - c.stroke(); + + if (swimlaneLine) + { + c.close(); + } + + c.fillAndStroke(); + + // Transparent content area + if (start < h && fill == mxConstants.NONE) + { + c.pointerEvents = false; + + c.begin(); + c.moveTo(0, start); + c.lineTo(0, h); + c.lineTo(w, h); + c.lineTo(w, start); + c.stroke(); + } + } + else + { + c.moveTo(start, 0); + c.lineTo(0, 0); + c.lineTo(0, h); + c.lineTo(start, h); + + if (swimlaneLine) + { + c.close(); + } + + c.fillAndStroke(); + + // Transparent content area + if (start < w && fill == mxConstants.NONE) + { + c.pointerEvents = false; + + c.begin(); + c.moveTo(start, 0); + c.lineTo(w, 0); + c.lineTo(w, h); + c.lineTo(start, h); + c.stroke(); + } } }; @@ -216,33 +286,68 @@ mxSwimlane.prototype.paintRoundedSwimlane = function(c, x, y, w, h, start, r, fi } c.begin(); - c.moveTo(w, start); - c.lineTo(w, r); - c.quadTo(w, 0, w - Math.min(w / 2, r), 0); - c.lineTo(Math.min(w / 2, r), 0); - c.quadTo(0, 0, 0, r); - c.lineTo(0, start); - if (swimlaneLine) + if (this.isHorizontal()) { - c.close(); - } - - c.fillAndStroke(); - - // Transparent content area - if (start < h && fill == mxConstants.NONE) - { - c.pointerEvents = false; + c.moveTo(w, start); + c.lineTo(w, r); + c.quadTo(w, 0, w - Math.min(w / 2, r), 0); + c.lineTo(Math.min(w / 2, r), 0); + c.quadTo(0, 0, 0, r); + c.lineTo(0, start); - c.begin(); - c.moveTo(0, start); - c.lineTo(0, h - r); - c.quadTo(0, h, Math.min(w / 2, r), h); - c.lineTo(w - Math.min(w / 2, r), h); - c.quadTo(w, h, w, h - r); - c.lineTo(w, start); - c.stroke(); + if (swimlaneLine) + { + c.close(); + } + + c.fillAndStroke(); + + // Transparent content area + if (start < h && fill == mxConstants.NONE) + { + c.pointerEvents = false; + + c.begin(); + c.moveTo(0, start); + c.lineTo(0, h - r); + c.quadTo(0, h, Math.min(w / 2, r), h); + c.lineTo(w - Math.min(w / 2, r), h); + c.quadTo(w, h, w, h - r); + c.lineTo(w, start); + c.stroke(); + } + } + else + { + c.moveTo(start, 0); + c.lineTo(r, 0); + c.quadTo(0, 0, 0, Math.min(h / 2, r)); + c.lineTo(0, h - Math.min(h / 2, r)); + c.quadTo(0, h, r, h); + c.lineTo(start, h); + + if (swimlaneLine) + { + c.close(); + } + + c.fillAndStroke(); + + // Transparent content area + if (start < w && fill == mxConstants.NONE) + { + c.pointerEvents = false; + + c.begin(); + c.moveTo(start, h); + c.lineTo(w - r, h); + c.quadTo(w, h, w, h - Math.min(h / 2, r)); + c.lineTo(w, Math.min(h / 2, r)); + c.quadTo(w, 0, w - r, 0); + c.lineTo(start, 0); + c.stroke(); + } } }; @@ -251,15 +356,25 @@ mxSwimlane.prototype.paintRoundedSwimlane = function(c, x, y, w, h, start, r, fi * * Paints the swimlane vertex shape. */ -mxSwimlane.prototype.paintSeparator = function(c, x, y, h, color) +mxSwimlane.prototype.paintSeparator = function(c, x, y, w, h, start, color) { if (color != mxConstants.NONE) { c.setStrokeColor(color); c.setDashed(true); c.begin(); - c.moveTo(x, y); - c.lineTo(x, h); + + if (this.isHorizontal()) + { + c.moveTo(w, start); + c.lineTo(w, h); + } + else + { + c.moveTo(start, 0); + c.lineTo(w, 0); + } + c.stroke(); c.setDashed(false); } @@ -272,5 +387,12 @@ mxSwimlane.prototype.paintSeparator = function(c, x, y, h, color) */ mxSwimlane.prototype.getImageBounds = function(x, y, w, h) { - return new mxRectangle(x + w - this.imageSize, y, this.imageSize, this.imageSize); + if (this.isHorizontal()) + { + return new mxRectangle(x + w - this.imageSize, y, this.imageSize, this.imageSize); + } + else + { + return new mxRectangle(x, y, this.imageSize, this.imageSize); + } }; diff --git a/javascript/src/js/view/mxCellEditor.js b/javascript/src/js/view/mxCellEditor.js index d6915a881..fb8bde37e 100644 --- a/javascript/src/js/view/mxCellEditor.js +++ b/javascript/src/js/view/mxCellEditor.js @@ -1,5 +1,5 @@ /** - * $Id: mxCellEditor.js,v 1.18 2014/01/22 17:09:44 gaudenz Exp $ + * $Id: mxCellEditor.js,v 1.19 2014/01/26 11:55:59 gaudenz Exp $ * Copyright (c) 2006-2013, JGraph Ltd */ /** @@ -282,29 +282,6 @@ mxCellEditor.prototype.resize = function() this.bounds.y = bds.y + state.absoluteOffset.y; this.bounds.width = bds.width; this.bounds.height = bds.height; - - // Applies the horizontal and vertical label positions - var horizontal = mxUtils.getValue(state.style, mxConstants.STYLE_LABEL_POSITION, mxConstants.ALIGN_CENTER); - - if (horizontal == mxConstants.ALIGN_LEFT) - { - this.bounds.x -= state.width; - } - else if (horizontal == mxConstants.ALIGN_RIGHT) - { - this.bounds.x += state.width; - } - - var vertical = mxUtils.getValue(state.style, mxConstants.STYLE_VERTICAL_LABEL_POSITION, mxConstants.ALIGN_MIDDLE); - - if (vertical == mxConstants.ALIGN_TOP) - { - this.bounds.y -= state.height; - } - else if (vertical == mxConstants.ALIGN_BOTTOM) - { - this.bounds.y += state.height; - } } var value = this.textarea.value; diff --git a/javascript/src/js/view/mxCellRenderer.js b/javascript/src/js/view/mxCellRenderer.js index 5dd9a8dab..dcd085aa2 100644 --- a/javascript/src/js/view/mxCellRenderer.js +++ b/javascript/src/js/view/mxCellRenderer.js @@ -1,5 +1,5 @@ /** - * $Id: mxCellRenderer.js,v 1.37 2014/01/15 11:32:51 gaudenz Exp $ + * $Id: mxCellRenderer.js,v 1.38 2014/01/23 16:27:47 gaudenz Exp $ * Copyright (c) 2006-2013, JGraph Ltd */ /** @@ -932,37 +932,19 @@ mxCellRenderer.prototype.getLabelBounds = function(state) // Minimum of 1 fixes alignment bug in HTML labels bounds.width = Math.max(1, state.width); bounds.height = Math.max(1, state.height); - - // Swimlane is a special case - if (graph.isSwimlane(state.cell)) - { - var size = graph.getStartSize(state.cell); - - if (size.width > 0) - { - var tmp = Math.min(bounds.width, size.width * scale); - - if (state.shape.flipH) - { - bounds.x += bounds.width - tmp; - } - - bounds.width = tmp; - } - else if (size.height > 0) - { - var tmp = Math.min(bounds.height, size.height * scale); - - if (state.shape.flipV) - { - bounds.y += bounds.height - tmp; - } - - bounds.height = tmp; - } - } } + if (state.text.isPaintBoundsInverted()) + { + // Rotates around center of state + var t = (state.width - state.height) / 2; + bounds.x += t; + bounds.y -= t; + var tmp = bounds.width; + bounds.width = bounds.height; + bounds.height = tmp; + } + // Shape can modify its label bounds if (state.shape != null) { @@ -990,17 +972,6 @@ mxCellRenderer.prototype.getLabelBounds = function(state) */ mxCellRenderer.prototype.rotateLabelBounds = function(state, bounds) { - if (state.text.isPaintBoundsInverted()) - { - // Rotates around center of state - var t = (state.width - state.height) / 2; - bounds.x += t; - bounds.y -= t; - var tmp = bounds.width; - bounds.width = bounds.height; - bounds.height = tmp; - } - bounds.x -= state.text.margin.x * bounds.width; bounds.y -= state.text.margin.y * bounds.height; diff --git a/javascript/src/js/view/mxGraph.js b/javascript/src/js/view/mxGraph.js index 7b571f6da..6bcc25bf5 100644 --- a/javascript/src/js/view/mxGraph.js +++ b/javascript/src/js/view/mxGraph.js @@ -1,5 +1,5 @@ /** - * $Id: mxGraph.js,v 1.64 2014/01/15 11:32:51 gaudenz Exp $ + * $Id: mxGraph.js,v 1.65 2014/01/23 16:52:17 gaudenz Exp $ * Copyright (c) 2006-2013, JGraph Ltd */ /** @@ -1938,7 +1938,7 @@ mxGraph.prototype.processChange = function(change) var newParent = this.model.getParent(change.child); this.view.invalidate(change.child, true, true); - if (newParent == null) + if (newParent == null || this.isCellCollapsed(newParent)) { this.view.invalidate(change.child, true, true); this.removeStateForCell(change.child); diff --git a/php/src/mxServer.php b/php/src/mxServer.php index f535b234b..14eb75535 100644 --- a/php/src/mxServer.php +++ b/php/src/mxServer.php @@ -5,15 +5,15 @@ * * Class: mxServer * - * Bootstrapping for the PHP backend. This is version 2.4.0.3 + * Bootstrapping for the PHP backend. This is version 2.4.0.4 * of mxGraph. * * Variable: MXGRAPH-VERSION * * Constant that holds the current mxGraph version. The current version - * is 2.4.0.3. + * is 2.4.0.4. */ -define("MXGRAPH-VERSION", "2.4.0.3"); +define("MXGRAPH-VERSION", "2.4.0.4"); include_once("util/mxLog.php"); include_once("util/mxConstants.php");