diff --git a/ChangeLog b/ChangeLog index d65222be8..da4ba9fc3 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +14-FEB-2013: 1.10.4.3 + +- Fixes autoExtend in mxGraph.scrollPointToVisible for SVG [JavaScript] +- Fixes vertical scrollbars for SVG element in standards mode [JavaScript] +- Fixes print preview, missing sidebar cell labels in grapheditor for IE10 [JavaScript] +- Fixes enabled state of curved action in grapheditor example [JavaScript] + 16-JAN-2013: 1.10.4.2 - Adds curved connector shapes, mxConstants.STYLE_CURVED [JavaScript] diff --git a/docs/js-api/files/mxClient-js.html b/docs/js-api/files/mxClient-js.html index 3d3491ca5..8680dde73 100644 --- a/docs/js-api/files/mxClient-js.html +++ b/docs/js-api/files/mxClient-js.html @@ -11,11 +11,11 @@ if (browserType) {document.write("
");if (browserV -

mxClient

Bootstrapping mechanism for the mxGraph thin client.  The production version of this file contains all code required to run the mxGraph thin client, as well as global constants to identify the browser and operating system in use.  You may have to load chrome://global/content/contentAreaUtils.js in your page to disable certain security restrictions in Mozilla.

Summary
mxClientBootstrapping mechanism for the mxGraph thin client.
Variables
VERSIONContains the current version of the mxGraph library.
IS_IETrue if the current browser is Internet Explorer.
IS_IE6True if the current browser is Internet Explorer 6.x.
IS_QUIRKSTrue if the current browser is Internet Explorer and it is in quirks mode.
IS_NSTrue if the current browser is Netscape (including Firefox).
IS_OPTrue if the current browser is Opera.
IS_OTTrue if -o-transform is available as a CSS style.
IS_SFTrue if the current browser is Safari.
IS_GCTrue if the current browser is Google Chrome.
IS_MTTrue if -moz-transform is available as a CSS style.
IS_SVGTrue if the browser supports SVG.
NO_FOTrue if foreignObject support is not available.
IS_VMLTrue if the browser supports VML.
IS_MACTrue if the client is a Mac.
IS_TOUCHTrue if this client uses a touch interface (no mouse).
IS_LOCALTrue if the documents location does not start with http:// or https://.
Functions
isBrowserSupportedReturns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
linkAdds a link node to the head of the document.
includeDynamically adds a script node to the document header.
disposeFrees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
Variables
mxLoadResourcesOptional global config variable to toggle loading of the two resource files in mxGraph and mxEditor.
mxLoadStylesheetsOptional global config variable to toggle loading of the CSS files when the library is initialized.
basePathBasepath for all URLs in the core without trailing slash.
imageBasePathBasepath for all images URLs in the core without trailing slash.
languageDefines the language of the client, eg.
defaultLanguageDefines the default language which is used in the common resource files.
languagesDefines the optional array of all supported language extensions.
+

mxClient

Bootstrapping mechanism for the mxGraph thin client.  The production version of this file contains all code required to run the mxGraph thin client, as well as global constants to identify the browser and operating system in use.  You may have to load chrome://global/content/contentAreaUtils.js in your page to disable certain security restrictions in Mozilla.

Summary
mxClientBootstrapping mechanism for the mxGraph thin client.
Variables
VERSIONContains the current version of the mxGraph library.
IS_IETrue if the current browser is Internet Explorer.
IS_IE6True if the current browser is Internet Explorer 6.x.
IS_QUIRKSTrue if the current browser is Internet Explorer and it is in quirks mode.
IS_NSTrue if the current browser is Netscape (including Firefox).
IS_OPTrue if the current browser is Opera.
IS_OTTrue if -o-transform is available as a CSS style.
IS_SFTrue if the current browser is Safari.
IS_GCTrue if the current browser is Google Chrome.
IS_MTTrue if -moz-transform is available as a CSS style.
IS_SVGTrue if the browser supports SVG.
NO_FOTrue if foreignObject support is not available.
IS_VMLTrue if the browser supports VML.
IS_MACTrue if the client is a Mac.
IS_TOUCHTrue if this client uses a touch interface (no mouse).
IS_LOCALTrue if the documents location does not start with http:// or https://.
Functions
isBrowserSupportedReturns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
linkAdds a link node to the head of the document.
includeDynamically adds a script node to the document header.
disposeFrees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
Variables
mxLoadResourcesOptional global config variable to toggle loading of the two resource files in mxGraph and mxEditor.
mxLoadStylesheetsOptional global config variable to toggle loading of the CSS files when the library is initialized.
basePathBasepath for all URLs in the core without trailing slash.
imageBasePathBasepath for all images URLs in the core without trailing slash.
languageDefines the language of the client, eg.
defaultLanguageDefines the default language which is used in the common resource files.
languagesDefines the optional array of all supported language extensions.

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 1.10.4.2.

+

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 1.10.4.3.

IS_IE

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

True if the current browser is Internet Explorer.

@@ -58,7 +58,7 @@ if (browserType) {document.write("
");if (browserV

include

include: function(src)

Dynamically adds a script node to the document header.

In production environments, the includes are resolved in the mxClient.js file to reduce the number of requests required for client startup.  This function should only be used in development environments, but not in production systems.

-

dispose

dispose: function()

Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.  This is always invoked in IE when the page unloads.

+

dispose

dispose: function()

Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.

Variables

@@ -111,7 +111,7 @@ HideAllBut([1], 13);// -->
-
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.
IS_QUIRKS: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer and it is in quirks mode.
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.
IS_SF: navigator.userAgent.indexOf('AppleWebKit/') >
True if the current browser is Safari.
IS_GC: navigator.userAgent.indexOf('Chrome/') >
True if the current browser is Google Chrome.
IS_SVG: navigator.userAgent.indexOf('Firefox/') >
True if the browser supports SVG.
NO_FO: navigator.userAgent.indexOf('Firefox/1.') >
True if foreignObject support is not available.
IS_VML: navigator.appName.toUpperCase()
True if the browser supports VML.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
link: function(rel,
href,
doc)
Adds a link node to the head of the document.
include: function(src)
Dynamically adds a script node to the document header.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
Extends mxEventSource to implement a graph component for the browser.
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.
Basepath for all URLs in the core without trailing slash.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxEditor.prototype.askZoomResource
Specifies the resource key for the zoom dialog.
mxEditor.prototype.lastSavedResource
Specifies the resource key for the last saved info.
mxEditor.prototype.currentFileResource
Specifies the resource key for the current file info.
mxEditor.prototype.propertiesResource
Specifies the resource key for the properties window title.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.helpResource
Specifies the resource key for the help window title.
mxEditor.prototype.outlineResource
Specifies the resource key for the outline window title.
mxElbowEdgeHandler.prototype.doubleClickOrientationResource
Specifies the resource key for the tooltip to be displayed on the single control point for routed edges.
Specifies the resource key for the title of the error window.
Specifies the resource key for the label of the close button.
mxGraphSelectionModel.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxGraphView.prototype.doneResource
Specifies the resource key for the status message after a long operation.
Specifies the resource key for the status message while the document is being updated.
mxGraph.prototype.containsValidationErrorsResource
Specifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
mxGraph.prototype.alreadyConnectedResource
Specifies the resource key for the error message to be displayed in non-multigraphs when two vertices are already connected.
+
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.
IS_QUIRKS: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer and it is in quirks mode.
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.
IS_SF: navigator.userAgent.indexOf('AppleWebKit/') >
True if the current browser is Safari.
IS_GC: navigator.userAgent.indexOf('Chrome/') >
True if the current browser is Google Chrome.
IS_SVG: navigator.userAgent.indexOf('Firefox/') >
True if the browser supports SVG.
NO_FO: navigator.userAgent.indexOf('Firefox/1.') >
True if foreignObject support is not available.
IS_VML: navigator.appName.toUpperCase()
True if the browser supports VML.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
link: function(rel,
href,
doc)
Adds a link node to the head of the document.
include: function(src)
Dynamically adds a script node to the document header.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
Extends mxEventSource to implement a graph component for the browser.
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.
Basepath for all URLs in the core without trailing slash.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxEditor.prototype.askZoomResource
Specifies the resource key for the zoom dialog.
mxEditor.prototype.lastSavedResource
Specifies the resource key for the last saved info.
mxEditor.prototype.currentFileResource
Specifies the resource key for the current file info.
mxEditor.prototype.propertiesResource
Specifies the resource key for the properties window title.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.helpResource
Specifies the resource key for the help window title.
mxEditor.prototype.outlineResource
Specifies the resource key for the outline window title.
mxElbowEdgeHandler.prototype.doubleClickOrientationResource
Specifies the resource key for the tooltip to be displayed on the single control point for routed edges.
Specifies the resource key for the title of the error window.
Specifies the resource key for the label of the close button.
mxGraphSelectionModel.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxGraphView.prototype.doneResource
Specifies the resource key for the status message after a long operation.
Specifies the resource key for the status message while the document is being updated.
mxGraph.prototype.containsValidationErrorsResource
Specifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
mxGraph.prototype.alreadyConnectedResource
Specifies the resource key for the error message to be displayed in non-multigraphs when two vertices are already connected.
diff --git a/docs/js-api/files/util/mxEvent-js.html b/docs/js-api/files/util/mxEvent-js.html index 07c5fe01d..6d608197d 100644 --- a/docs/js-api/files/util/mxEvent-js.html +++ b/docs/js-api/files/util/mxEvent-js.html @@ -257,7 +257,7 @@ HideAllBut([10], 13);// -->
-
addListener: function()
Binds the function to the specified event on the given element.
removeListener: function()
Removes the specified listener from the given element.
removeAllListeners: function(element)
Removes all listeners from the given element.
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.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
disableContextMenu: function()
Disables the context menu for the given element.
getSource: function(evt)
Returns the event’s target or srcElement depending on the browser.
isConsumed: function(evt)
Returns true if the event has been consumed using consume.
consume: function(evt,
preventDefault,
stopPropagation)
Consumes the given event.
isLeftMouseButton: function(evt)
Returns true if the left mouse button is pressed for the given event.
isRightMouseButton: function(evt)
Returns true if the right mouse button was pressed.
isPopupTrigger: function(evt)
Returns true if the event is a popup trigger.
isShiftDown: function(evt)
Returns true if the shift key is pressed for the given event.
isAltDown: function(evt)
Returns true if the alt key is pressed for the given event.
isControlDown: function(evt)
Returns true if the control key is pressed for the given event.
isMetaDown: function(evt)
Returns true if the meta key is pressed for the given event.
getMainEvent: function(e)
Returns the touch or mouse event that contains the mouse coordinates.
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.
RESET: 'reset' }
Specifies the event name for reset.
Base class for objects that dispatch named events.
Extends mxEventSource to implement a graph component for the browser.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
bind: function(scope,
funct)
Returns a wrapper function that locks the execution scope of the given function to the specified scope.
Represents the current state of a cell in a given mxGraphView.
mxGraph.prototype.isMouseDown
Holds the state of the mouse button.
+
addListener: function()
Binds the function to the specified event on the given element.
removeListener: function()
Removes the specified listener from the given element.
removeAllListeners: function(element)
Removes all listeners from the given element.
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.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
disableContextMenu: function()
Disables the context menu for the given element.
getSource: function(evt)
Returns the event’s target or srcElement depending on the browser.
isConsumed: function(evt)
Returns true if the event has been consumed using consume.
consume: function(evt,
preventDefault,
stopPropagation)
Consumes the given event.
isLeftMouseButton: function(evt)
Returns true if the left mouse button is pressed for the given event.
isRightMouseButton: function(evt)
Returns true if the right mouse button was pressed.
isPopupTrigger: function(evt)
Returns true if the event is a popup trigger.
isShiftDown: function(evt)
Returns true if the shift key is pressed for the given event.
isAltDown: function(evt)
Returns true if the alt key is pressed for the given event.
isControlDown: function(evt)
Returns true if the control key is pressed for the given event.
isMetaDown: function(evt)
Returns true if the meta key is pressed for the given event.
getMainEvent: function(e)
Returns the touch or mouse event that contains the mouse coordinates.
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.
RESET: 'reset' }
Specifies the event name for reset.
Base class for objects that dispatch named events.
Extends mxEventSource to implement a graph component for the browser.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
bind: function(scope,
funct)
Returns a wrapper function that locks the execution scope of the given function to the specified scope.
Represents the current state of a cell in a given mxGraphView.
mxGraph.prototype.isMouseDown
Holds the state of the mouse button.
diff --git a/docs/js-api/index/Functions4.html b/docs/js-api/index/Functions4.html index 12ea2dcea..4277357ba 100644 --- a/docs/js-api/index/Functions4.html +++ b/docs/js-api/index/Functions4.html @@ -13,7 +13,7 @@ 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
D
 dblClick, mxGraph
 debug, mxLog
 decode
 decodeAttribute, mxObjectCodec
 decodeAttributes, mxObjectCodec
 decodeCell, mxCodec
 decodeChange, mxSession
 decodeChanges, mxSession
 decodeChild
 decodeChildren, mxObjectCodec
 decodeNode, mxObjectCodec
 decodeRoot, mxModelCodec
 decodeTemplates, mxEditorCodec
 destroy
 destroyIcons, mxConnectionHandler
 destroyShapes, mxGraphHandler
 dfs
 die, mxUndoableEdit
 disableContextMenu, mxEvent
 disconnect, mxChildChange
 disconnectGraph, mxGraph
 dispose, mxClient
 doResizeContainer, mxGraph
 dragEnter, mxDragSource
 dragExit, mxDragSource
 dragOver, mxDragSource
 drawGlass, mxImageExport
 drawHighlight, mxCellHighlight
 drawImage, mxImageExport
 drawLabel, mxImageExport
 drawLabelBackground, mxImageExport
 drawMarker, mxImageExport
 drawNode, mxStencil
 drawOverlays, mxImageExport
 drawPreview
 drawShape
 drawState, mxImageExport
 drop
-
mxGraph.prototype.dblClick = function(evt,
cell)
Processes a doubleclick on an optional cell and fires a dblclick event.
debug: function()
Adds all arguments to the console if DEBUG is enabled.
mxCodec.prototype.decode = function(node,
into)
Decodes the given XML node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
codec.decode = function(dec,
node,
into)
Uses the given node as the config for mxDefaultPopupMenu.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decode = function(dec,
node,
into)
Parses the given node into the object or returns a new object representing the given node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decodeAttribute = function(dec,
attr,
obj)
Reads the given attribute into the specified object.
mxObjectCodec.prototype.decodeAttributes = function(dec,
node,
obj)
Decodes all attributes of the given node using decodeAttribute.
mxCodec.prototype.decodeCell = function(node,
restoreStructures)
Decodes cells that have been encoded using inversion, ie.
mxSession.prototype.decodeChange = function(node)
Decodes, executes and returns the change object represented by the given XML node.
mxSession.prototype.decodeChanges = function(node)
Decodes and executes the changes represented by the children in the given node.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
mxObjectCodec.prototype.decodeChild = function(dec,
child,
obj)
Reads the specified child into the given object.
mxObjectCodec.prototype.decodeChildren = function(dec,
node,
obj)
Decodec all children of the given node using decodeChild.
mxObjectCodec.prototype.decodeNode = function(dec,
node,
obj)
Calls decodeAttributes and decodeChildren for the given node.
codec.decodeRoot = function(dec,
root,
model)
Reads the cells into the graph model.
Decodes the cells from the given node as templates.
mxAutoSaveManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxCellEditor.prototype.destroy = function ()
Destroys the editor and removes all associated resources.
mxCellHighlight.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellMarker.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellRenderer.prototype.destroy = function(state)
Destroys the shapes associated with the given cell state.
mxCellState.prototype.destroy = function ()
Destroys the state and all associated resources.
mxCellTracker.prototype.destroy = function()
Destroys the object and all its resources and DOM nodes.
mxConnectionHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxConstraintHandler.prototype.destroy = function()
Destroy this handler.
mxDefaultKeyHandler.prototype.destroy = function ()
Destroys the handler associated with this object.
mxDefaultToolbar.prototype.destroy = function ()
Destroys the toolbar associated with this object and removes all installed listeners.
mxEdgeHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxEditor.prototype.destroy = function ()
Removes the editor and all its associated resources.
mxGraph.prototype.destroy = function()
Destroys the graph and all its resources.
mxGraphHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxGraphView.prototype.destroy = function()
Destroys the view and all its resources.
mxGuide.prototype.destroy = function()
Destroys all resources that this object uses.
mxKeyHandler.prototype.destroy = function()
Destroys the handler and all its references into the DOM.
mxLayoutManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxOutline.prototype.destroy = function()
Destroy this outline and removes all listeners from source.
mxPanningHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxPopupMenu.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxRubberband.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxSelectionCellsHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxShape.prototype.destroy = function()
Destroys the shape by removing it from the DOM and releasing the DOM node associated with the shape using mxEvent.release.
mxSpaceManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxSwimlaneManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxTemporaryCellStates.prototype.destroy = function()
Returns the top, left corner as a new mxPoint.
mxText.prototype.destroy = function()
Extends destroy to remove any allocated SVG clips.
mxToolbar.prototype.destroy = function ()
Removes the toolbar and all its associated resources.
mxTooltipHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxVertexHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxWindow.prototype.destroy = function()
Destroys the window and removes all associated resources.
mxConnectionHandler.prototype.destroyIcons = function(icons)
Destroys the given array of mxImageShapes.
mxGraphHandler.prototype.destroyShapes = function()
Destroy the preview and highlight shapes.
mxCompactTreeLayout.prototype.dfs = function(cell,
parent,
visited)
Does a depth first search starting at the specified cell.
mxGraphHierarchyModel.prototype.dfs = function(parent,
root,
connectingEdge,
visitor,
seen,
layer)
Performs a depth first search on the internal hierarchy model
mxUndoableEdit.prototype.die = function()
Hook to free resources after the edit has been removed from the command history.
disableContextMenu: function()
Disables the context menu for the given element.
Disconnects the given cell recursively from its terminals and stores the previous terminal in the cell’s terminals.
mxGraph.prototype.disconnectGraph = function(cells)
Disconnects the given edges from the terminals which are not in the given array.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
mxGraph.prototype.doResizeContainer = function(width,
height)
Resizes the container for the given graph width and height.
mxDragSource.prototype.dragEnter = function(graph)
Actives the given graph as a drop target.
mxDragSource.prototype.dragExit = function(graph)
Deactivates the given graph as a drop target.
mxDragSource.prototype.dragOver = function(graph,
evt)
Implements autoscroll, updates the currentPoint, highlights any drop targets and updates the preview.
Draws the given state to the given canvas.
mxCellHighlight.prototype.drawHighlight = function()
Creates and returns the highlight shape for the given state.
mxImageExport.prototype.drawImage = function(state,
canvas,
bounds,
image)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabel = function(state,
canvas,
bounds,
vert,
str)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabelBackground = function(state,
canvas,
bounds,
vert)
Draws background for the label of the given state to the given canvas.
mxImageExport.prototype.drawMarker = function(canvas,
state,
source)
Initializes the built-in shapes.
mxStencil.prototype.drawNode = function(canvas,
state,
node,
aspect)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawOverlays = function(state,
canvas)
Draws the overlays for the given state.
mxConnectionHandler.prototype.drawPreview = function()
Redraws the preview edge using the color and width returned by getEdgeColor and getEdgeWidth.
mxEdgeHandler.prototype.drawPreview = function()
Redraws the preview.
mxVertexHandler.prototype.drawPreview = function()
Redraws the preview.
mxImageExport.prototype.drawShape = function(state,
canvas,
shape)
Draws the given state to the given canvas.
mxStencil.prototype.drawShape = function(canvas,
state,
bounds,
background)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawState = function(state,
canvas)
Draws the given state and all its descendants to the given canvas.
mxDefaultToolbar.prototype.drop = function(vertex,
evt,
target)
Handles a drop from a toolbar item to the graph.
mxDragSource.prototype.drop = function(graph,
evt,
dropTarget,
x,
y)
Returns the drop target for the given graph and coordinates.
+
mxGraph.prototype.dblClick = function(evt,
cell)
Processes a doubleclick on an optional cell and fires a dblclick event.
debug: function()
Adds all arguments to the console if DEBUG is enabled.
mxCodec.prototype.decode = function(node,
into)
Decodes the given XML node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
codec.decode = function(dec,
node,
into)
Uses the given node as the config for mxDefaultPopupMenu.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decode = function(dec,
node,
into)
Parses the given node into the object or returns a new object representing the given node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decodeAttribute = function(dec,
attr,
obj)
Reads the given attribute into the specified object.
mxObjectCodec.prototype.decodeAttributes = function(dec,
node,
obj)
Decodes all attributes of the given node using decodeAttribute.
mxCodec.prototype.decodeCell = function(node,
restoreStructures)
Decodes cells that have been encoded using inversion, ie.
mxSession.prototype.decodeChange = function(node)
Decodes, executes and returns the change object represented by the given XML node.
mxSession.prototype.decodeChanges = function(node)
Decodes and executes the changes represented by the children in the given node.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
mxObjectCodec.prototype.decodeChild = function(dec,
child,
obj)
Reads the specified child into the given object.
mxObjectCodec.prototype.decodeChildren = function(dec,
node,
obj)
Decodec all children of the given node using decodeChild.
mxObjectCodec.prototype.decodeNode = function(dec,
node,
obj)
Calls decodeAttributes and decodeChildren for the given node.
codec.decodeRoot = function(dec,
root,
model)
Reads the cells into the graph model.
Decodes the cells from the given node as templates.
mxAutoSaveManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxCellEditor.prototype.destroy = function ()
Destroys the editor and removes all associated resources.
mxCellHighlight.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellMarker.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellRenderer.prototype.destroy = function(state)
Destroys the shapes associated with the given cell state.
mxCellState.prototype.destroy = function ()
Destroys the state and all associated resources.
mxCellTracker.prototype.destroy = function()
Destroys the object and all its resources and DOM nodes.
mxConnectionHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxConstraintHandler.prototype.destroy = function()
Destroy this handler.
mxDefaultKeyHandler.prototype.destroy = function ()
Destroys the handler associated with this object.
mxDefaultToolbar.prototype.destroy = function ()
Destroys the toolbar associated with this object and removes all installed listeners.
mxEdgeHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxEditor.prototype.destroy = function ()
Removes the editor and all its associated resources.
mxGraph.prototype.destroy = function()
Destroys the graph and all its resources.
mxGraphHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxGraphView.prototype.destroy = function()
Destroys the view and all its resources.
mxGuide.prototype.destroy = function()
Destroys all resources that this object uses.
mxKeyHandler.prototype.destroy = function()
Destroys the handler and all its references into the DOM.
mxLayoutManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxOutline.prototype.destroy = function()
Destroy this outline and removes all listeners from source.
mxPanningHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxPopupMenu.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxRubberband.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxSelectionCellsHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxShape.prototype.destroy = function()
Destroys the shape by removing it from the DOM and releasing the DOM node associated with the shape using mxEvent.release.
mxSpaceManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxSwimlaneManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxTemporaryCellStates.prototype.destroy = function()
Returns the top, left corner as a new mxPoint.
mxText.prototype.destroy = function()
Extends destroy to remove any allocated SVG clips.
mxToolbar.prototype.destroy = function ()
Removes the toolbar and all its associated resources.
mxTooltipHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxVertexHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxWindow.prototype.destroy = function()
Destroys the window and removes all associated resources.
mxConnectionHandler.prototype.destroyIcons = function(icons)
Destroys the given array of mxImageShapes.
mxGraphHandler.prototype.destroyShapes = function()
Destroy the preview and highlight shapes.
mxCompactTreeLayout.prototype.dfs = function(cell,
parent,
visited)
Does a depth first search starting at the specified cell.
mxGraphHierarchyModel.prototype.dfs = function(parent,
root,
connectingEdge,
visitor,
seen,
layer)
Performs a depth first search on the internal hierarchy model
mxUndoableEdit.prototype.die = function()
Hook to free resources after the edit has been removed from the command history.
disableContextMenu: function()
Disables the context menu for the given element.
Disconnects the given cell recursively from its terminals and stores the previous terminal in the cell’s terminals.
mxGraph.prototype.disconnectGraph = function(cells)
Disconnects the given edges from the terminals which are not in the given array.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
mxGraph.prototype.doResizeContainer = function(width,
height)
Resizes the container for the given graph width and height.
mxDragSource.prototype.dragEnter = function(graph)
Actives the given graph as a drop target.
mxDragSource.prototype.dragExit = function(graph)
Deactivates the given graph as a drop target.
mxDragSource.prototype.dragOver = function(graph,
evt)
Implements autoscroll, updates the currentPoint, highlights any drop targets and updates the preview.
Draws the given state to the given canvas.
mxCellHighlight.prototype.drawHighlight = function()
Creates and returns the highlight shape for the given state.
mxImageExport.prototype.drawImage = function(state,
canvas,
bounds,
image)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabel = function(state,
canvas,
bounds,
vert,
str)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabelBackground = function(state,
canvas,
bounds,
vert)
Draws background for the label of the given state to the given canvas.
mxImageExport.prototype.drawMarker = function(canvas,
state,
source)
Initializes the built-in shapes.
mxStencil.prototype.drawNode = function(canvas,
state,
node,
aspect)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawOverlays = function(state,
canvas)
Draws the overlays for the given state.
mxConnectionHandler.prototype.drawPreview = function()
Redraws the preview edge using the color and width returned by getEdgeColor and getEdgeWidth.
mxEdgeHandler.prototype.drawPreview = function()
Redraws the preview.
mxVertexHandler.prototype.drawPreview = function()
Redraws the preview.
mxImageExport.prototype.drawShape = function(state,
canvas,
shape)
Draws the given state to the given canvas.
mxStencil.prototype.drawShape = function(canvas,
state,
bounds,
background)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawState = function(state,
canvas)
Draws the given state and all its descendants to the given canvas.
mxDefaultToolbar.prototype.drop = function(vertex,
evt,
target)
Handles a drop from a toolbar item to the graph.
mxDragSource.prototype.drop = function(graph,
evt,
dropTarget,
x,
y)
Returns the drop target for the given graph and coordinates.
diff --git a/docs/js-api/index/General4.html b/docs/js-api/index/General4.html index f0b678e0f..7297467b4 100644 --- a/docs/js-api/index/General4.html +++ b/docs/js-api/index/General4.html @@ -13,7 +13,7 @@ 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
D
 damper, mxPanningManager
 dblClick, mxGraph
 dblClickAction, mxEditor
 debug
 DEBUG, mxLog
 decode
 decodeAttribute, mxObjectCodec
 decodeAttributes, mxObjectCodec
 decodeCell, mxCodec
 decodeChange, mxSession
 decodeChanges, mxSession
 decodeChild
 decodeChildren, mxObjectCodec
 decodeNode, mxObjectCodec
 decodeRoot, mxModelCodec
 decodeTemplates, mxEditorCodec
 DEFAULT_FONTFAMILY, mxConstants
 DEFAULT_FONTSIZE, mxConstants
 DEFAULT_HOTSPOT, mxConstants
 DEFAULT_IMAGESIZE, mxConstants
 DEFAULT_INVALID_COLOR, mxConstants
 DEFAULT_MARKERSIZE, mxConstants
 DEFAULT_STARTSIZE, mxConstants
 DEFAULT_VALID_COLOR, mxConstants
 defaultEdge, mxEditor
 defaultEdgeShape, mxCellRenderer
 defaultEdgeStyle, mxEditor
 defaultGroup, mxEditor
 defaultLanguage, mxClient
 defaultLoopStyle, mxGraph
 defaultOpacity, mxRubberband
 defaultOverlap
 defaultParent, mxGraph
 defaultShapes, mxCellRenderer
 defaultVertexShape, mxCellRenderer
 delay
 deltas, mxCellStatePreview
 desc, mxStencil
 destroy
 DESTROY
 destroyIcons, mxConnectionHandler
 destroyOnClose, mxWindow
 destroyShapes, mxGraphHandler
 dfs
 dfsCount, mxGraphHierarchyModel
 dialect
 DIALECT_MIXEDHTML, mxConstants
 DIALECT_PREFERHTML, mxConstants
 DIALECT_STRICTHTML, mxConstants
 DIALECT_SVG, mxConstants
 DIALECT_VML, mxConstants
 die, mxUndoableEdit
 DIRECTION_EAST, mxConstants
 DIRECTION_MASK_ALL, mxConstants
 DIRECTION_MASK_EAST, mxConstants
 DIRECTION_MASK_NONE, mxConstants
 DIRECTION_MASK_NORTH, mxConstants
 DIRECTION_MASK_SOUTH, mxConstants
 DIRECTION_MASK_WEST, mxConstants
 DIRECTION_NORTH, mxConstants
 DIRECTION_SOUTH, mxConstants
 DIRECTION_WEST, mxConstants
 disableContextMenu
 disableEdgeStyle
 disconnect, mxChildChange
 DISCONNECT
 disconnectGraph, mxGraph
 disconnectOnMove, mxGraph
 dispose, mxClient
 dispX, mxFastOrganicLayout
 dispY, mxFastOrganicLayout
 div, mxRubberband
 document, mxCodec
 DONE, mxEvent
 doneResource
 doResizeContainer, mxGraph
 DOUBLE_CLICK
 doubleClickOrientationResource, mxElbowEdgeHandler
 doubleTapEnabled, mxGraph
 doubleTapTimeout, mxGraph
 doubleTapTolerance, mxGraph
 DOWN, mxEvent
 dragElement, mxDragSource
 dragElementOpacity, mxDragSource
 dragElementZIndex, mxDragSource
 dragEnter, mxDragSource
 dragExit, mxDragSource
 dragOffset, mxDragSource
 dragOver, mxDragSource
 drawGlass, mxImageExport
 drawHighlight, mxCellHighlight
 drawImage, mxImageExport
 drawLabel, mxImageExport
 drawLabelBackground, mxImageExport
 drawMarker, mxImageExport
 drawNode, mxStencil
 drawOverlays, mxImageExport
 drawPreview
 drawShape
 drawState, mxImageExport
 Drilldown, mxGraph
 drillHandler, mxConnectionHandler
 drop
 DROP_TARGET_COLOR, mxConstants
 dropEnabled, mxGraph
 dropHandler, mxDragSource
-
mxPanningManager.prototype.damper
Damper value for the panning.
mxGraph.prototype.dblClick = function(evt,
cell)
Processes a doubleclick on an optional cell and fires a dblclick event.
mxEditor.prototype.dblClickAction
Specifies the name of the action to be executed when a cell is double clicked.
debug: function()
Adds all arguments to the console if DEBUG is enabled.
mxSession.prototype.debug
Specifies if the session should run in debug mode.
Specifies if the output for debug should be visible in the console.
mxCodec.prototype.decode = function(node,
into)
Decodes the given XML node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
codec.decode = function(dec,
node,
into)
Uses the given node as the config for mxDefaultPopupMenu.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decode = function(dec,
node,
into)
Parses the given node into the object or returns a new object representing the given node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decodeAttribute = function(dec,
attr,
obj)
Reads the given attribute into the specified object.
mxObjectCodec.prototype.decodeAttributes = function(dec,
node,
obj)
Decodes all attributes of the given node using decodeAttribute.
mxCodec.prototype.decodeCell = function(node,
restoreStructures)
Decodes cells that have been encoded using inversion, ie.
mxSession.prototype.decodeChange = function(node)
Decodes, executes and returns the change object represented by the given XML node.
mxSession.prototype.decodeChanges = function(node)
Decodes and executes the changes represented by the children in the given node.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
mxObjectCodec.prototype.decodeChild = function(dec,
child,
obj)
Reads the specified child into the given object.
mxObjectCodec.prototype.decodeChildren = function(dec,
node,
obj)
Decodec all children of the given node using decodeChild.
mxObjectCodec.prototype.decodeNode = function(dec,
node,
obj)
Calls decodeAttributes and decodeChildren for the given node.
codec.decodeRoot = function(dec,
root,
model)
Reads the cells into the graph model.
Decodes the cells from the given node as templates.
Defines the default family for all fonts in points.
Defines the default size for all fonts in points.
Defines the portion of the cell which is to be used as a connectable region.
Defines the default width and height for images used in the label shape.
Specifies the default invalid color.
Defines the default size for all markers.
Defines the default start size for swimlanes.
Specifies the default valid colorr.
mxEditor.prototype.defaultEdge
Prototype edge cell that is used for creating new edges.
mxCellRenderer.prototype.defaultEdgeShape
Defines the default shape for edges.
mxEditor.prototype.defaultEdgeStyle
Specifies the edge style to be returned in getEdgeStyle.
mxEditor.prototype.defaultGroup
Prototype group cell that is used for creating new groups.
Defines the default language which is used in the common resource files.
mxGraph.prototype.defaultLoopStyle
mxEdgeStyle to be used for loops.
mxRubberband.prototype.defaultOpacity
Specifies the default opacity to be used for the rubberband div.
mxCellOverlay.prototype.defaultOverlap
Defines the overlapping for the overlay, that is, the proportional distance from the origin to the point defined by the alignment.
mxGraph.prototype.defaultOverlap
Value returned by getOverlap if isAllowOverlapParent returns true for the given cell.
mxGraph.prototype.defaultParent
Specifies the default parent to be used to insert new cells.
mxCellRenderer.prototype.defaultShapes
Static array that contains the globally registered shapes which are known to all instances of this class.
mxCellRenderer.prototype.defaultVertexShape
Defines the default shape for vertices.
mxAnimation.prototype.delay
Specifies the delay between the animation steps.
mxPanningManager.prototype.delay
Delay in milliseconds for the panning.
mxTooltipHandler.prototype.delay
Delay to show the tooltip in milliseconds.
mxCellStatePreview.prototype.deltas
Reference to the enclosing mxGraph.
mxStencil.prototype.desc
Holds the XML node with the stencil description.
mxAutoSaveManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxCellEditor.prototype.destroy = function ()
Destroys the editor and removes all associated resources.
mxCellHighlight.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellMarker.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellRenderer.prototype.destroy = function(state)
Destroys the shapes associated with the given cell state.
mxCellState.prototype.destroy = function ()
Destroys the state and all associated resources.
mxCellTracker.prototype.destroy = function()
Destroys the object and all its resources and DOM nodes.
mxConnectionHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxConstraintHandler.prototype.destroy = function()
Destroy this handler.
mxDefaultKeyHandler.prototype.destroy = function ()
Destroys the handler associated with this object.
mxDefaultToolbar.prototype.destroy = function ()
Destroys the toolbar associated with this object and removes all installed listeners.
mxEdgeHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxEditor.prototype.destroy = function ()
Removes the editor and all its associated resources.
mxGraph.prototype.destroy = function()
Destroys the graph and all its resources.
mxGraphHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxGraphView.prototype.destroy = function()
Destroys the view and all its resources.
mxGuide.prototype.destroy = function()
Destroys all resources that this object uses.
mxKeyHandler.prototype.destroy = function()
Destroys the handler and all its references into the DOM.
mxLayoutManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxOutline.prototype.destroy = function()
Destroy this outline and removes all listeners from source.
mxPanningHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxPopupMenu.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxRubberband.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxSelectionCellsHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxShape.prototype.destroy = function()
Destroys the shape by removing it from the DOM and releasing the DOM node associated with the shape using mxEvent.release.
mxSpaceManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxSwimlaneManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxTemporaryCellStates.prototype.destroy = function()
Returns the top, left corner as a new mxPoint.
mxText.prototype.destroy = function()
Extends destroy to remove any allocated SVG clips.
mxToolbar.prototype.destroy = function ()
Removes the toolbar and all its associated resources.
mxTooltipHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxVertexHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxWindow.prototype.destroy = function()
Destroys the window and removes all associated resources.
Specifies the event name for destroy.
Fires before the window is destroyed.
mxConnectionHandler.prototype.destroyIcons = function(icons)
Destroys the given array of mxImageShapes.
mxWindow.prototype.destroyOnClose
Specifies if the window should be destroyed when it is closed.
mxGraphHandler.prototype.destroyShapes = function()
Destroy the preview and highlight shapes.
mxCompactTreeLayout.prototype.dfs = function(cell,
parent,
visited)
Does a depth first search starting at the specified cell.
mxGraphHierarchyModel.prototype.dfs = function(parent,
root,
connectingEdge,
visitor,
seen,
layer)
Performs a depth first search on the internal hierarchy model
mxGraphHierarchyModel.prototype.dfsCount
Count of the number of times the ancestor dfs has been used.
mxGraph.prototype.dialect
Dialect to be used for drawing the graph.
mxShape.prototype.dialect
Holds the dialect in which the shape is to be painted.
Defines the mixed HTML display dialect name.
Defines the preferred HTML display dialect name.
Defines the strict HTML display dialect.
Defines the SVG display dialect name.
Defines the VML display dialect name.
mxUndoableEdit.prototype.die = function()
Hook to free resources after the edit has been removed from the command history.
Constant for direction east.
Bitwise mask for all directions.
Bitwise mask for east direction.
Constant for no direction.
Bitwise mask for north direction.
Bitwise mask for south direction.
Bitwise mask for west direction.
Constant for direction north.
Constant for direction south.
Constant for direction west.
mxEditor.prototype.disableContextMenu
Specifies if the context menu should be disabled in the graph container.
disableContextMenu: function()
Disables the context menu for the given element.
mxCircleLayout.prototype.disableEdgeStyle
Specifies if the STYLE_NOEDGESTYLE flag should be set on edges that are modified by the result.
mxFastOrganicLayout.prototype.disableEdgeStyle
Specifies if the STYLE_NOEDGESTYLE flag should be set on edges that are modified by the result.
mxHierarchicalLayout.prototype.disableEdgeStyle
Specifies if the STYLE_NOEDGESTYLE flag should be set on edges that are modified by the result.
Disconnects the given cell recursively from its terminals and stores the previous terminal in the cell’s terminals.
Specifies the event name for disconnect.
Fires after the session was stopped in stop.
mxGraph.prototype.disconnectGraph = function(cells)
Disconnects the given edges from the terminals which are not in the given array.
mxGraph.prototype.disconnectOnMove
Specifies if edges should be disconnected from their terminals when they are moved.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
mxFastOrganicLayout.prototype.dispX
An array of locally stored X co-ordinate displacements for the vertices.
mxFastOrganicLayout.prototype.dispY
An array of locally stored Y co-ordinate displacements for the vertices.
mxRubberband.prototype.div
Holds the DIV element which is currently visible.
mxCodec.prototype.document
The owner document of the codec.
Specifies the event name for done.
mxGraphSelectionModel.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraphView.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraph.prototype.doResizeContainer = function(width,
height)
Resizes the container for the given graph width and height.
Specifies the event name for doubleClick.
Fires in dblClick after a double click.
mxElbowEdgeHandler.prototype.doubleClickOrientationResource
Specifies the resource key for the tooltip to be displayed on the single control point for routed edges.
mxGraph.prototype.doubleTapEnabled
Specifies if double taps on touch-based devices should be handled.
mxGraph.prototype.doubleTapTimeout
Specifies the timeout for double taps.
mxGraph.prototype.doubleTapTolerance
Specifies the tolerance for double taps.
Specifies the event name for down.
mxDragSource.prototype.dragElement
Holds the DOM node that is used to represent the drag preview.
mxDragSource.prototype.dragElementOpacity
Opacity of the drag element in %.
mxDragSource.prototype.dragElementZIndex
ZIndex for the drag element.
mxDragSource.prototype.dragEnter = function(graph)
Actives the given graph as a drop target.
mxDragSource.prototype.dragExit = function(graph)
Deactivates the given graph as a drop target.
mxDragSource.prototype.dragOffset
mxPoint that specifies the offset of the dragElement.
mxDragSource.prototype.dragOver = function(graph,
evt)
Implements autoscroll, updates the currentPoint, highlights any drop targets and updates the preview.
Draws the given state to the given canvas.
mxCellHighlight.prototype.drawHighlight = function()
Creates and returns the highlight shape for the given state.
mxImageExport.prototype.drawImage = function(state,
canvas,
bounds,
image)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabel = function(state,
canvas,
bounds,
vert,
str)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabelBackground = function(state,
canvas,
bounds,
vert)
Draws background for the label of the given state to the given canvas.
mxImageExport.prototype.drawMarker = function(canvas,
state,
source)
Initializes the built-in shapes.
mxStencil.prototype.drawNode = function(canvas,
state,
node,
aspect)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawOverlays = function(state,
canvas)
Draws the overlays for the given state.
mxConnectionHandler.prototype.drawPreview = function()
Redraws the preview edge using the color and width returned by getEdgeColor and getEdgeWidth.
mxEdgeHandler.prototype.drawPreview = function()
Redraws the preview.
mxVertexHandler.prototype.drawPreview = function()
Redraws the preview.
mxImageExport.prototype.drawShape = function(state,
canvas,
shape)
Draws the given state to the given canvas.
mxStencil.prototype.drawShape = function(canvas,
state,
bounds,
background)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawState = function(state,
canvas)
Draws the given state and all its descendants to the given canvas.
mxConnectionHandler.prototype.drillHandler
Holds the drill event listener for later removal.
mxDefaultToolbar.prototype.drop = function(vertex,
evt,
target)
Handles a drop from a toolbar item to the graph.
mxDragSource.prototype.drop = function(graph,
evt,
dropTarget,
x,
y)
Returns the drop target for the given graph and coordinates.
Defines the color to be used for the highlighting target parent cells (for drag and drop).
mxGraph.prototype.dropEnabled
Specifies the return value for isDropEnabled.
mxDragSource.prototype.dropHandler
Holds the DOM node that is used to represent the drag preview.
+
mxPanningManager.prototype.damper
Damper value for the panning.
mxGraph.prototype.dblClick = function(evt,
cell)
Processes a doubleclick on an optional cell and fires a dblclick event.
mxEditor.prototype.dblClickAction
Specifies the name of the action to be executed when a cell is double clicked.
debug: function()
Adds all arguments to the console if DEBUG is enabled.
mxSession.prototype.debug
Specifies if the session should run in debug mode.
Specifies if the output for debug should be visible in the console.
mxCodec.prototype.decode = function(node,
into)
Decodes the given XML node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
codec.decode = function(dec,
node,
into)
Uses the given node as the config for mxDefaultPopupMenu.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decode = function(dec,
node,
into)
Parses the given node into the object or returns a new object representing the given node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decodeAttribute = function(dec,
attr,
obj)
Reads the given attribute into the specified object.
mxObjectCodec.prototype.decodeAttributes = function(dec,
node,
obj)
Decodes all attributes of the given node using decodeAttribute.
mxCodec.prototype.decodeCell = function(node,
restoreStructures)
Decodes cells that have been encoded using inversion, ie.
mxSession.prototype.decodeChange = function(node)
Decodes, executes and returns the change object represented by the given XML node.
mxSession.prototype.decodeChanges = function(node)
Decodes and executes the changes represented by the children in the given node.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
mxObjectCodec.prototype.decodeChild = function(dec,
child,
obj)
Reads the specified child into the given object.
mxObjectCodec.prototype.decodeChildren = function(dec,
node,
obj)
Decodec all children of the given node using decodeChild.
mxObjectCodec.prototype.decodeNode = function(dec,
node,
obj)
Calls decodeAttributes and decodeChildren for the given node.
codec.decodeRoot = function(dec,
root,
model)
Reads the cells into the graph model.
Decodes the cells from the given node as templates.
Defines the default family for all fonts in points.
Defines the default size for all fonts in points.
Defines the portion of the cell which is to be used as a connectable region.
Defines the default width and height for images used in the label shape.
Specifies the default invalid color.
Defines the default size for all markers.
Defines the default start size for swimlanes.
Specifies the default valid colorr.
mxEditor.prototype.defaultEdge
Prototype edge cell that is used for creating new edges.
mxCellRenderer.prototype.defaultEdgeShape
Defines the default shape for edges.
mxEditor.prototype.defaultEdgeStyle
Specifies the edge style to be returned in getEdgeStyle.
mxEditor.prototype.defaultGroup
Prototype group cell that is used for creating new groups.
Defines the default language which is used in the common resource files.
mxGraph.prototype.defaultLoopStyle
mxEdgeStyle to be used for loops.
mxRubberband.prototype.defaultOpacity
Specifies the default opacity to be used for the rubberband div.
mxCellOverlay.prototype.defaultOverlap
Defines the overlapping for the overlay, that is, the proportional distance from the origin to the point defined by the alignment.
mxGraph.prototype.defaultOverlap
Value returned by getOverlap if isAllowOverlapParent returns true for the given cell.
mxGraph.prototype.defaultParent
Specifies the default parent to be used to insert new cells.
mxCellRenderer.prototype.defaultShapes
Static array that contains the globally registered shapes which are known to all instances of this class.
mxCellRenderer.prototype.defaultVertexShape
Defines the default shape for vertices.
mxAnimation.prototype.delay
Specifies the delay between the animation steps.
mxPanningManager.prototype.delay
Delay in milliseconds for the panning.
mxTooltipHandler.prototype.delay
Delay to show the tooltip in milliseconds.
mxCellStatePreview.prototype.deltas
Reference to the enclosing mxGraph.
mxStencil.prototype.desc
Holds the XML node with the stencil description.
mxAutoSaveManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxCellEditor.prototype.destroy = function ()
Destroys the editor and removes all associated resources.
mxCellHighlight.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellMarker.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellRenderer.prototype.destroy = function(state)
Destroys the shapes associated with the given cell state.
mxCellState.prototype.destroy = function ()
Destroys the state and all associated resources.
mxCellTracker.prototype.destroy = function()
Destroys the object and all its resources and DOM nodes.
mxConnectionHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxConstraintHandler.prototype.destroy = function()
Destroy this handler.
mxDefaultKeyHandler.prototype.destroy = function ()
Destroys the handler associated with this object.
mxDefaultToolbar.prototype.destroy = function ()
Destroys the toolbar associated with this object and removes all installed listeners.
mxEdgeHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxEditor.prototype.destroy = function ()
Removes the editor and all its associated resources.
mxGraph.prototype.destroy = function()
Destroys the graph and all its resources.
mxGraphHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxGraphView.prototype.destroy = function()
Destroys the view and all its resources.
mxGuide.prototype.destroy = function()
Destroys all resources that this object uses.
mxKeyHandler.prototype.destroy = function()
Destroys the handler and all its references into the DOM.
mxLayoutManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxOutline.prototype.destroy = function()
Destroy this outline and removes all listeners from source.
mxPanningHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxPopupMenu.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxRubberband.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxSelectionCellsHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxShape.prototype.destroy = function()
Destroys the shape by removing it from the DOM and releasing the DOM node associated with the shape using mxEvent.release.
mxSpaceManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxSwimlaneManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxTemporaryCellStates.prototype.destroy = function()
Returns the top, left corner as a new mxPoint.
mxText.prototype.destroy = function()
Extends destroy to remove any allocated SVG clips.
mxToolbar.prototype.destroy = function ()
Removes the toolbar and all its associated resources.
mxTooltipHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxVertexHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxWindow.prototype.destroy = function()
Destroys the window and removes all associated resources.
Specifies the event name for destroy.
Fires before the window is destroyed.
mxConnectionHandler.prototype.destroyIcons = function(icons)
Destroys the given array of mxImageShapes.
mxWindow.prototype.destroyOnClose
Specifies if the window should be destroyed when it is closed.
mxGraphHandler.prototype.destroyShapes = function()
Destroy the preview and highlight shapes.
mxCompactTreeLayout.prototype.dfs = function(cell,
parent,
visited)
Does a depth first search starting at the specified cell.
mxGraphHierarchyModel.prototype.dfs = function(parent,
root,
connectingEdge,
visitor,
seen,
layer)
Performs a depth first search on the internal hierarchy model
mxGraphHierarchyModel.prototype.dfsCount
Count of the number of times the ancestor dfs has been used.
mxGraph.prototype.dialect
Dialect to be used for drawing the graph.
mxShape.prototype.dialect
Holds the dialect in which the shape is to be painted.
Defines the mixed HTML display dialect name.
Defines the preferred HTML display dialect name.
Defines the strict HTML display dialect.
Defines the SVG display dialect name.
Defines the VML display dialect name.
mxUndoableEdit.prototype.die = function()
Hook to free resources after the edit has been removed from the command history.
Constant for direction east.
Bitwise mask for all directions.
Bitwise mask for east direction.
Constant for no direction.
Bitwise mask for north direction.
Bitwise mask for south direction.
Bitwise mask for west direction.
Constant for direction north.
Constant for direction south.
Constant for direction west.
mxEditor.prototype.disableContextMenu
Specifies if the context menu should be disabled in the graph container.
disableContextMenu: function()
Disables the context menu for the given element.
mxCircleLayout.prototype.disableEdgeStyle
Specifies if the STYLE_NOEDGESTYLE flag should be set on edges that are modified by the result.
mxFastOrganicLayout.prototype.disableEdgeStyle
Specifies if the STYLE_NOEDGESTYLE flag should be set on edges that are modified by the result.
mxHierarchicalLayout.prototype.disableEdgeStyle
Specifies if the STYLE_NOEDGESTYLE flag should be set on edges that are modified by the result.
Disconnects the given cell recursively from its terminals and stores the previous terminal in the cell’s terminals.
Specifies the event name for disconnect.
Fires after the session was stopped in stop.
mxGraph.prototype.disconnectGraph = function(cells)
Disconnects the given edges from the terminals which are not in the given array.
mxGraph.prototype.disconnectOnMove
Specifies if edges should be disconnected from their terminals when they are moved.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
mxFastOrganicLayout.prototype.dispX
An array of locally stored X co-ordinate displacements for the vertices.
mxFastOrganicLayout.prototype.dispY
An array of locally stored Y co-ordinate displacements for the vertices.
mxRubberband.prototype.div
Holds the DIV element which is currently visible.
mxCodec.prototype.document
The owner document of the codec.
Specifies the event name for done.
mxGraphSelectionModel.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraphView.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraph.prototype.doResizeContainer = function(width,
height)
Resizes the container for the given graph width and height.
Specifies the event name for doubleClick.
Fires in dblClick after a double click.
mxElbowEdgeHandler.prototype.doubleClickOrientationResource
Specifies the resource key for the tooltip to be displayed on the single control point for routed edges.
mxGraph.prototype.doubleTapEnabled
Specifies if double taps on touch-based devices should be handled.
mxGraph.prototype.doubleTapTimeout
Specifies the timeout for double taps.
mxGraph.prototype.doubleTapTolerance
Specifies the tolerance for double taps.
Specifies the event name for down.
mxDragSource.prototype.dragElement
Holds the DOM node that is used to represent the drag preview.
mxDragSource.prototype.dragElementOpacity
Opacity of the drag element in %.
mxDragSource.prototype.dragElementZIndex
ZIndex for the drag element.
mxDragSource.prototype.dragEnter = function(graph)
Actives the given graph as a drop target.
mxDragSource.prototype.dragExit = function(graph)
Deactivates the given graph as a drop target.
mxDragSource.prototype.dragOffset
mxPoint that specifies the offset of the dragElement.
mxDragSource.prototype.dragOver = function(graph,
evt)
Implements autoscroll, updates the currentPoint, highlights any drop targets and updates the preview.
Draws the given state to the given canvas.
mxCellHighlight.prototype.drawHighlight = function()
Creates and returns the highlight shape for the given state.
mxImageExport.prototype.drawImage = function(state,
canvas,
bounds,
image)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabel = function(state,
canvas,
bounds,
vert,
str)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabelBackground = function(state,
canvas,
bounds,
vert)
Draws background for the label of the given state to the given canvas.
mxImageExport.prototype.drawMarker = function(canvas,
state,
source)
Initializes the built-in shapes.
mxStencil.prototype.drawNode = function(canvas,
state,
node,
aspect)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawOverlays = function(state,
canvas)
Draws the overlays for the given state.
mxConnectionHandler.prototype.drawPreview = function()
Redraws the preview edge using the color and width returned by getEdgeColor and getEdgeWidth.
mxEdgeHandler.prototype.drawPreview = function()
Redraws the preview.
mxVertexHandler.prototype.drawPreview = function()
Redraws the preview.
mxImageExport.prototype.drawShape = function(state,
canvas,
shape)
Draws the given state to the given canvas.
mxStencil.prototype.drawShape = function(canvas,
state,
bounds,
background)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawState = function(state,
canvas)
Draws the given state and all its descendants to the given canvas.
mxConnectionHandler.prototype.drillHandler
Holds the drill event listener for later removal.
mxDefaultToolbar.prototype.drop = function(vertex,
evt,
target)
Handles a drop from a toolbar item to the graph.
mxDragSource.prototype.drop = function(graph,
evt,
dropTarget,
x,
y)
Returns the drop target for the given graph and coordinates.
Defines the color to be used for the highlighting target parent cells (for drag and drop).
mxGraph.prototype.dropEnabled
Specifies the return value for isDropEnabled.
mxDragSource.prototype.dropHandler
Holds the DOM node that is used to represent the drag preview.
diff --git a/docs/manual.html b/docs/manual.html index 2ee11d835..854fa15da 100644 --- a/docs/manual.html +++ b/docs/manual.html @@ -9,7 +9,7 @@

mxGraph User Manual – JavaScript Client



-

mxGraph Version 1.10.4.2 – 16. January 2013

+

mxGraph Version 1.10.4.3 – 14. February 2013

Copyright (c) JGraph Ltd 2006-2012


All rights reserved. No part of this publication may be diff --git a/docs/manual_javavis.html b/docs/manual_javavis.html index 0cda498d6..838614ae5 100644 --- a/docs/manual_javavis.html +++ b/docs/manual_javavis.html @@ -9,7 +9,7 @@

JGraphX (JGraph 6) User Manual



-

JGraphX Version 1.10.4.2 – 16. January 2013

+

JGraphX Version 1.10.4.3 – 14. February 2013

Copyright (c) JGraph Ltd 2006-2012


All rights reserved. No part of this publication may be diff --git a/dotnet/docs/html/annotated.html b/dotnet/docs/html/annotated.html index a5d6c7fc8..99054c1e4 100644 --- a/dotnet/docs/html/annotated.html +++ b/dotnet/docs/html/annotated.html @@ -78,7 +78,7 @@ com::mxgraph::mxUtilsContains various helper methods for use with mxGraph

-
Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
Generated on Thu Feb 14 13:10:35 2013 for mxGraph by  doxygen 1.6.3
diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas-members.html index bed15a790..6c971d1fd 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas-members.html @@ -39,7 +39,7 @@ Translatecom::mxgraph::mxBasicCanvas translatecom::mxgraph::mxBasicCanvas [protected]
-
Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas.html index 83a133dc4..5c692745e 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas.html @@ -312,7 +312,7 @@ Inheritance diagram for com::mxgraph::mxBasicCanvas:
  • src/canvas/mxBasicCanvas.cs
  • -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell-members.html index 155a72f7d..c151b1c6a 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell-members.html @@ -76,7 +76,7 @@ visiblecom::mxgraph::mxCell [protected] Visiblecom::mxgraph::mxCell -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell.html index 0a34b5ef8..6d3835e29 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell.html @@ -1256,7 +1256,7 @@ Inheritance diagram for com::mxgraph::mxCell:
  • src/model/mxCell.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec-members.html index d36f963c6..3b2d48997 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec-members.html @@ -69,7 +69,7 @@ WriteComplexAttribute(mxCodec enc, Object obj, string attr, Object value, XmlNode node)com::mxgraph::mxObjectCodec [inline, protected] WritePrimitiveAttribute(mxCodec enc, Object obj, string attr, Object value, XmlNode node)com::mxgraph::mxObjectCodec [inline, protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec.html index 5ab3bd8f8..11aa5a873 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec.html @@ -73,7 +73,7 @@ Inheritance diagram for com::mxgraph::mxCellCodec:
  • src/io/mxCellCodec.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath-members.html index 2c9d8e51f..c306b7f7e 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath-members.html @@ -31,7 +31,7 @@ PATH_SEPARATORcom::mxgraph::mxCellPath [static] Resolve(mxICell root, string path)com::mxgraph::mxCellPath [inline, static] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath.html index a3bb9ce4d..f37993a62 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath.html @@ -157,7 +157,7 @@
  • src/model/mxCellPath.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer-members.html index 861076433..afcb32fc6 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer-members.html @@ -30,7 +30,7 @@ CreateImage(mxGraph graph, Object[] cells, double scale, Color?background, bool antiAlias, mxRectangle clip, mxGdiCanvas graphicsCanvas)com::mxgraph::mxCellRenderer [inline, static] DrawCells(mxGraph graph, Object[] cells, double scale, mxRectangle clip, CanvasFactory factory)com::mxgraph::mxCellRenderer [inline, static] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer.html index fa425e423..34aeb6d17 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer.html @@ -212,7 +212,7 @@
  • src/utils/mxCellRenderer.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory-members.html index 40890cf18..98b8d2d39 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory-members.html @@ -28,7 +28,7 @@

    com::mxgraph::mxCellRenderer::CanvasFactory Member List

    This is the complete list of members for com::mxgraph::mxCellRenderer::CanvasFactory, including all inherited members.
    CreateCanvas(int width, int height)com::mxgraph::mxCellRenderer::CanvasFactory [pure virtual]
    -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html index 6bbe5ce15..c0ee5876f 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html @@ -85,7 +85,7 @@ Inheritance diagram for com::mxgraph::mxCellRenderer::CanvasFactory:
  • src/utils/mxCellRenderer.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory-members.html index 428a50e7b..95d9a4602 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory-members.html @@ -32,7 +32,7 @@ graphicsCanvascom::mxgraph::mxCellRenderer::ImageCanvasFactory [protected] ImageCanvasFactory(mxGdiCanvas graphicsCanvas, Color?background, bool antiAlias)com::mxgraph::mxCellRenderer::ImageCanvasFactory [inline] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html index fa384eb6c..17e6ac71d 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html @@ -184,7 +184,7 @@ Inheritance diagram for com::mxgraph::mxCellRenderer::ImageCanvasFactory:
  • src/utils/mxCellRenderer.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState-members.html index 2cb514e5d..c9b0a2fd8 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState-members.html @@ -81,7 +81,7 @@ Ycom::mxgraph::mxPoint ycom::mxgraph::mxPoint [protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState.html index a581325c4..116abd3d0 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState.html @@ -633,7 +633,7 @@ Inheritance diagram for com::mxgraph::mxCellState:
  • src/view/mxCellState.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec-members.html index 12e70fad2..14c9dd842 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec-members.html @@ -49,7 +49,7 @@ Reference(Object obj)com::mxgraph::mxCodec [inline] SetAttribute(XmlNode node, string attribute, Object value)com::mxgraph::mxCodec [inline, static] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec.html index 8ba82aad0..147091641 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec.html @@ -677,7 +677,7 @@
  • src/io/mxCodec.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry-members.html index 137fc291e..f20fdf368 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry-members.html @@ -37,7 +37,7 @@ namespacescom::mxgraph::mxCodecRegistry [protected, static] Register(mxObjectCodec codec)com::mxgraph::mxCodecRegistry [inline, static] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry.html index 2f0e2a00b..1d25c2c1c 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry.html @@ -293,7 +293,7 @@
  • src/io/mxCodecRegistry.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint-members.html index 4735055fd..432e07a3e 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint-members.html @@ -34,7 +34,7 @@ Pointcom::mxgraph::mxConnectionConstraint pointcom::mxgraph::mxConnectionConstraint [protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint.html index e0ce7033c..16edc6d20 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint.html @@ -195,7 +195,7 @@
  • src/view/mxConnectionConstraint.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants-members.html index 304206cf8..dfa44230b 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants-members.html @@ -175,7 +175,7 @@ STYLE_WHITE_SPACEcom::mxgraph::mxConstants [static] W3C_SHADOWCOLORcom::mxgraph::mxConstants [static] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants.html index 2d715176f..6b1f3ed2b 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants.html @@ -2572,7 +2572,7 @@
  • src/utils/mxConstants.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle-members.html index 5e74f7f8c..392baa3ed 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle-members.html @@ -32,7 +32,7 @@ SideToSidecom::mxgraph::mxEdgeStyle [static] TopToBottomcom::mxgraph::mxEdgeStyle [static] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle.html index 9136afabd..a0e6f5d29 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle.html @@ -127,7 +127,7 @@
  • src/view/mxEdgeStyle.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout-members.html index d83b71136..337bd42d8 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout-members.html @@ -60,7 +60,7 @@ temperaturecom::mxgraph::mxFastOrganicLayout [protected] vertexArraycom::mxgraph::mxFastOrganicLayout [protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout.html index e77f4aea4..a0b6874ff 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout.html @@ -702,7 +702,7 @@ Inheritance diagram for com::mxgraph::mxFastOrganicLayout:
  • src/layout/mxFastOrganicLayout.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas-members.html index 587d0578a..72212cbf1 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas-members.html @@ -65,7 +65,7 @@ Translatecom::mxgraph::mxBasicCanvas translatecom::mxgraph::mxBasicCanvas [protected] -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas.html index e52b82397..96eddef73 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas.html @@ -1434,7 +1434,7 @@ Inheritance diagram for com::mxgraph::mxGdiCanvas:
  • src/canvas/mxGdiCanvas.cs
  • -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D-members.html index 9c75a27eb..6ee41577e 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D-members.html @@ -88,7 +88,7 @@ UpdateFont()com::mxgraph::mxGdiCanvas2D [inline, protected] UpdatePen()com::mxgraph::mxGdiCanvas2D [inline, protected] -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D.html index de685b611..fea8d2ae8 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D.html @@ -1914,7 +1914,7 @@ Inheritance diagram for com::mxgraph::mxGdiCanvas2D:
  • src/canvas/mxGdiCanvas2D.cs
  • -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState-members.html index 5bebf1ead..7d07d9d0b 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState-members.html @@ -28,7 +28,7 @@

    com::mxgraph::mxGdiCanvas2D::CanvasState Member List

    This is the complete list of members for com::mxgraph::mxGdiCanvas2D::CanvasState, including all inherited members.
    Clone()com::mxgraph::mxGdiCanvas2D::CanvasState [inline]
    -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState.html index cfe8f23e8..927a5adec 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState.html @@ -56,7 +56,7 @@
  • src/canvas/mxGdiCanvas2D.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry-members.html index 584a51e96..31c548573 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry-members.html @@ -72,7 +72,7 @@ Ycom::mxgraph::mxPoint ycom::mxgraph::mxPoint [protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry.html index 9b6901f7a..86cea6785 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry.html @@ -511,7 +511,7 @@ Inheritance diagram for com::mxgraph::mxGeometry:
  • src/model/mxGeometry.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph-members.html index 842af6909..bb4795f99 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph-members.html @@ -120,7 +120,7 @@ viewcom::mxgraph::mxGraph [protected] Viewcom::mxgraph::mxGraph -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph.html index 3f2f03367..bf82948b1 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph.html @@ -179,8 +179,8 @@ void GraphModelChanged ()  Called when the graph model has changed to invalidate the view.

    Public Attributes

    -const String VERSION = "1.10.4.2" - Holds the version number of this release. Current version is 1.10.4.2.
    +const String VERSION = "1.10.4.3" + Holds the version number of this release. Current version is 1.10.4.3.

    Protected Member Functions

    mxStylesheet CreateStylesheet ()  Constructs a new stylesheet to be used in this graph.
    @@ -2956,13 +2956,13 @@
    - +
    const String com::mxgraph::mxGraph::VERSION = "1.10.4.2"const String com::mxgraph::mxGraph::VERSION = "1.10.4.3"
    -

    Holds the version number of this release. Current version is 1.10.4.2.

    +

    Holds the version number of this release. Current version is 1.10.4.3.

    @@ -3106,7 +3106,7 @@
  • src/view/mxGraph.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel-members.html index 80d343f8d..91dfb401a 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel-members.html @@ -95,7 +95,7 @@ UpdateEdgeParents(Object cell, Object root)com::mxgraph::mxGraphModel [inline] updateLevelcom::mxgraph::mxGraphModel [protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel.html index 7cf840207..2fd6b3bce 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel.html @@ -2273,7 +2273,7 @@ Inheritance diagram for com::mxgraph::mxGraphModel:
  • src/model/mxGraphModel.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView-members.html index f768fc9c5..4e1135274 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView-members.html @@ -77,7 +77,7 @@ ValidateBounds(mxCellState parentState, Object cell)com::mxgraph::mxGraphView [inline] ValidatePoints(mxCellState parentState, Object cell)com::mxgraph::mxGraphView [inline] -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView.html index 256b33f0b..ef42e96eb 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView.html @@ -1510,7 +1510,7 @@
  • src/view/mxGraphView.cs
  • -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader-members.html index 3128684a7..47d9b52b3 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader-members.html @@ -53,7 +53,7 @@ Read(XmlReader reader)com::mxgraph::mxGraphViewReader [inline] scalecom::mxgraph::mxGraphViewReader [protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader.html index 975407dbc..886e9cb76 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader.html @@ -476,7 +476,7 @@ Inheritance diagram for com::mxgraph::mxGraphViewImageReader:
  • src/reader/mxGraphViewImageReader.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader-members.html index e832aaf62..303cc09b9 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader-members.html @@ -37,7 +37,7 @@ Read(XmlReader reader)com::mxgraph::mxGraphViewReader [inline] scalecom::mxgraph::mxGraphViewReader [protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader.html index 844beaf73..b8cc72171 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader.html @@ -315,7 +315,7 @@ Inheritance diagram for com::mxgraph::mxGraphViewReader:
  • src/reader/mxGraphViewReader.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle-members.html index b03781bc6..e5dfc6059 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle-members.html @@ -31,7 +31,7 @@ imagescom::mxgraph::mxImageBundle [protected] PutImage(String key, String value)com::mxgraph::mxImageBundle [inline] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle.html index 96abdc321..8dbc0042c 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle.html @@ -139,7 +139,7 @@
  • src/utils/mxImageBundle.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas-members.html index 7b17995d4..809372fb4 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas-members.html @@ -38,7 +38,7 @@ Scalecom::mxgraph::mxImageCanvas Translatecom::mxgraph::mxImageCanvas -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas.html index 339243ff6..bf800bb1e 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas.html @@ -320,7 +320,7 @@ Inheritance diagram for com::mxgraph::mxImageCanvas:
  • src/canvas/mxImageCanvas.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec-members.html index 45c622edb..fc9aa7ecb 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec-members.html @@ -71,7 +71,7 @@ WriteComplexAttribute(mxCodec enc, Object obj, string attr, Object value, XmlNode node)com::mxgraph::mxObjectCodec [inline, protected] WritePrimitiveAttribute(mxCodec enc, Object obj, string attr, Object value, XmlNode node)com::mxgraph::mxObjectCodec [inline, protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec.html index b910559f6..936634076 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec.html @@ -218,7 +218,7 @@ Inheritance diagram for com::mxgraph::mxModelCodec:
  • src/io/mxModelCodec.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec-members.html index 042094754..27a6e9b72 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec-members.html @@ -68,7 +68,7 @@ WriteComplexAttribute(mxCodec enc, Object obj, string attr, Object value, XmlNode node)com::mxgraph::mxObjectCodec [inline, protected] WritePrimitiveAttribute(mxCodec enc, Object obj, string attr, Object value, XmlNode node)com::mxgraph::mxObjectCodec [inline, protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec.html index b4bdbfddd..62289c1e0 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec.html @@ -1537,7 +1537,7 @@ void 
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter-members.html index 79d20426b..639306567 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter-members.html @@ -31,7 +31,7 @@ RhombusPerimetercom::mxgraph::mxPerimeter [static] TrianglePerimetercom::mxgraph::mxPerimeter [static] -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter.html index 8b2e43785..cd773830f 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter.html @@ -110,7 +110,7 @@
  • src/view/mxPerimeter.cs
  • -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint-members.html index d14ef2f4a..ad93c041c 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint-members.html @@ -38,7 +38,7 @@ Ycom::mxgraph::mxPoint ycom::mxgraph::mxPoint [protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint.html index b7c8902c8..2f6cb44a2 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint.html @@ -313,7 +313,7 @@ Inheritance diagram for com::mxgraph::mxPoint:
  • src/utils/mxPoint.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle-members.html index 6bf926cc0..238eb6bb6 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle-members.html @@ -53,7 +53,7 @@ Ycom::mxgraph::mxPoint ycom::mxgraph::mxPoint [protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle.html index effca21c3..0f1131e3c 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle.html @@ -505,7 +505,7 @@ Inheritance diagram for com::mxgraph::mxRectangle:
  • src/utils/mxRectangle.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler-members.html index 65cd3a456..55e3b0937 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler-members.html @@ -43,7 +43,7 @@ ParseElement(string tagName, Dictionary< string, string > atts)com::mxgraph::mxSaxOutputHandler [inline] Read(XmlReader reader)com::mxgraph::mxSaxOutputHandler [inline] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler.html index 3503a0d79..5d16182ab 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler.html @@ -239,7 +239,7 @@ ElementHandler > src/reader/mxSaxOutputHandler.cs -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession-members.html index 82a0e86a3..7158113c9 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession-members.html @@ -42,7 +42,7 @@ Poll(int timeout)com::mxgraph::mxSession [inline] Receive(XmlNode message)com::mxgraph::mxSession [inline] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession.html index 02192ca43..e80c58c96 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession.html @@ -390,7 +390,7 @@
  • src/sharing/mxSession.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram-members.html index c862f1659..26a904f92 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram-members.html @@ -37,7 +37,7 @@ statecom::mxgraph::mxSharedDiagram [protected] Statecom::mxgraph::mxSharedDiagram -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram.html index 7d1f4f283..ed01f1808 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram.html @@ -273,7 +273,7 @@
  • src/sharing/mxSharedState.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil-members.html index 20ed56416..dc9f5a32e 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil-members.html @@ -50,7 +50,7 @@ strokewidthcom::mxgraph::mxStencil [protected] w0com::mxgraph::mxStencil [protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil.html index 72536c8d6..3eb7b0db5 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil.html @@ -760,7 +760,7 @@
  • src/canvas/mxStencil.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry-members.html index 12e30363d..c56c9109b 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry-members.html @@ -30,7 +30,7 @@ GetStencil(string name)com::mxgraph::mxStencilRegistry [inline, static] stencils (defined in com::mxgraph::mxStencilRegistry)com::mxgraph::mxStencilRegistry [protected, static] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry.html index 4caca0078..079cc5fe1 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry.html @@ -108,7 +108,7 @@ static Dictionary< string,
  • src/canvas/mxStencilRegistry.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry-members.html index ffad7a1c8..4490e0461 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry-members.html @@ -31,7 +31,7 @@ PutValue(String name, Object value)com::mxgraph::mxStyleRegistry [inline, static] valuescom::mxgraph::mxStyleRegistry [protected, static] -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry.html index dcc2a68a3..d47d3d91b 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry.html @@ -136,7 +136,7 @@
  • src/view/mxStyleRegistry.cs
  • -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet-members.html index 60a3c2d81..6845f9349 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet-members.html @@ -37,7 +37,7 @@ stylescom::mxgraph::mxStylesheet [protected] Stylescom::mxgraph::mxStylesheet -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet.html index c4a75896d..eb4165e9b 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet.html @@ -280,7 +280,7 @@
  • src/view/mxStylesheet.cs
  • -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec-members.html index f3f26b09c..60cfb03ed 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec-members.html @@ -72,7 +72,7 @@ WriteComplexAttribute(mxCodec enc, Object obj, string attr, Object value, XmlNode node)com::mxgraph::mxObjectCodec [inline, protected] WritePrimitiveAttribute(mxCodec enc, Object obj, string attr, Object value, XmlNode node)com::mxgraph::mxObjectCodec [inline, protected] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec.html index a3aa2ce77..0a95f9511 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec.html @@ -234,7 +234,7 @@ Inheritance diagram for com::mxgraph::mxStylesheetCodec:
  • src/io/mxStylesheetCodec.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils-members.html index 9b1103fb1..01a093700 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils-members.html @@ -81,7 +81,7 @@ ToRadians(double deg)com::mxgraph::mxUtils [inline, static] TranslatePoints(List< mxPoint > pts, double dx, double dy)com::mxgraph::mxUtils [inline, static] -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils.html index ac8b7b427..6a6007e12 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils.html @@ -2237,7 +2237,7 @@
  • src/utils/mxUtils.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/classes.html b/dotnet/docs/html/classes.html index 316591844..91423e644 100644 --- a/dotnet/docs/html/classes.html +++ b/dotnet/docs/html/classes.html @@ -32,7 +32,7 @@ mxCodecRegistry (com::mxgraph)   mxGraphView (com::mxgraph)   mxImageCanvas (com::mxgraph)   mxStencil (com::mxgraph)   mxCellRenderer::ImageCanvasFactory (com::mxgraph)   mxConnectionConstraint (com::mxgraph)   mxGraphViewImageReader (com::mxgraph)   mxModelCodec (com::mxgraph)   mxStencilRegistry (com::mxgraph)   
      M  
    mxConstants (com::mxgraph)   mxGraphViewReader (com::mxgraph)   mxObjectCodec (com::mxgraph)   mxStyleRegistry (com::mxgraph)   mxBasicCanvas (com::mxgraph)   mxEdgeStyle (com::mxgraph)   mxICanvas (com::mxgraph)   mxPerimeter (com::mxgraph)   mxStylesheet (com::mxgraph)   mxCell (com::mxgraph)   mxFastOrganicLayout (com::mxgraph)   mxICanvas2D (com::mxgraph)   mxPoint (com::mxgraph)   mxStylesheetCodec (com::mxgraph)   mxCellCodec (com::mxgraph)   mxGdiCanvas (com::mxgraph)   mxICell (com::mxgraph)   mxRectangle (com::mxgraph)   mxUtils (com::mxgraph)   mxCellPath (com::mxgraph)   mxGdiCanvas2D (com::mxgraph)   
    C | I | M
    -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/dir_076bd82ce662d881076a1cef27897574.html b/dotnet/docs/html/dir_076bd82ce662d881076a1cef27897574.html index f1896ca0d..8f38f91e3 100644 --- a/dotnet/docs/html/dir_076bd82ce662d881076a1cef27897574.html +++ b/dotnet/docs/html/dir_076bd82ce662d881076a1cef27897574.html @@ -32,7 +32,7 @@ directory  view -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/dir_33ded66be5e3e8fa9e621cf728f55de8.html b/dotnet/docs/html/dir_33ded66be5e3e8fa9e621cf728f55de8.html index aa1555a62..ac0bebf55 100644 --- a/dotnet/docs/html/dir_33ded66be5e3e8fa9e621cf728f55de8.html +++ b/dotnet/docs/html/dir_33ded66be5e3e8fa9e621cf728f55de8.html @@ -30,7 +30,7 @@ file  mxUtils.cs -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/dir_53079388f6b2f56b0cf96293cbdbd4dd.html b/dotnet/docs/html/dir_53079388f6b2f56b0cf96293cbdbd4dd.html index ed6f5191f..b9522f9af 100644 --- a/dotnet/docs/html/dir_53079388f6b2f56b0cf96293cbdbd4dd.html +++ b/dotnet/docs/html/dir_53079388f6b2f56b0cf96293cbdbd4dd.html @@ -26,7 +26,7 @@ file  mxIGraphLayout.cs -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/dir_5558b9564b742ba2739ce7f04f555d67.html b/dotnet/docs/html/dir_5558b9564b742ba2739ce7f04f555d67.html index cb2d209c2..b41d3925f 100644 --- a/dotnet/docs/html/dir_5558b9564b742ba2739ce7f04f555d67.html +++ b/dotnet/docs/html/dir_5558b9564b742ba2739ce7f04f555d67.html @@ -30,7 +30,7 @@ file  mxIGraphModel.cs -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/dir_7212130a4bc77558633083b9be9f7e18.html b/dotnet/docs/html/dir_7212130a4bc77558633083b9be9f7e18.html index f67e78990..dfc739620 100644 --- a/dotnet/docs/html/dir_7212130a4bc77558633083b9be9f7e18.html +++ b/dotnet/docs/html/dir_7212130a4bc77558633083b9be9f7e18.html @@ -32,7 +32,7 @@ file  mxStylesheet.cs -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/dir_82472a1b8eb52b1af79e1e9c0c794121.html b/dotnet/docs/html/dir_82472a1b8eb52b1af79e1e9c0c794121.html index ac1cfe7d3..214f6d916 100644 --- a/dotnet/docs/html/dir_82472a1b8eb52b1af79e1e9c0c794121.html +++ b/dotnet/docs/html/dir_82472a1b8eb52b1af79e1e9c0c794121.html @@ -26,7 +26,7 @@ file  mxSharedState.cs -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/dir_89fb00df7b0bd6e59270739349fd7e29.html b/dotnet/docs/html/dir_89fb00df7b0bd6e59270739349fd7e29.html index 6d3d583b9..c29ea8d1d 100644 --- a/dotnet/docs/html/dir_89fb00df7b0bd6e59270739349fd7e29.html +++ b/dotnet/docs/html/dir_89fb00df7b0bd6e59270739349fd7e29.html @@ -32,7 +32,7 @@ file  mxStencilRegistry.cs -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/dir_9de224b8d1047b035ff591c383ca5b6c.html b/dotnet/docs/html/dir_9de224b8d1047b035ff591c383ca5b6c.html index f84e4c3dc..6327fbb3e 100644 --- a/dotnet/docs/html/dir_9de224b8d1047b035ff591c383ca5b6c.html +++ b/dotnet/docs/html/dir_9de224b8d1047b035ff591c383ca5b6c.html @@ -30,7 +30,7 @@ file  mxStylesheetCodec.cs -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/dir_cbd2de944759f97f7c6829731ff5b9c6.html b/dotnet/docs/html/dir_cbd2de944759f97f7c6829731ff5b9c6.html index 49cb7d631..344d86627 100644 --- a/dotnet/docs/html/dir_cbd2de944759f97f7c6829731ff5b9c6.html +++ b/dotnet/docs/html/dir_cbd2de944759f97f7c6829731ff5b9c6.html @@ -27,7 +27,7 @@ file  mxSaxOutputHandler.cs -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/dirs.html b/dotnet/docs/html/dirs.html index 8db646710..38284d056 100644 --- a/dotnet/docs/html/dirs.html +++ b/dotnet/docs/html/dirs.html @@ -32,7 +32,7 @@ -
    Generated on Wed Jan 16 08:45:22 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:41 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions.html b/dotnet/docs/html/functions.html index 182c9a92b..961c30df7 100644 --- a/dotnet/docs/html/functions.html +++ b/dotnet/docs/html/functions.html @@ -184,7 +184,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x62.html b/dotnet/docs/html/functions_0x62.html index 27636ca06..2394cbc8e 100644 --- a/dotnet/docs/html/functions_0x62.html +++ b/dotnet/docs/html/functions_0x62.html @@ -106,7 +106,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x63.html b/dotnet/docs/html/functions_0x63.html index 96f1e1046..2d33d37bc 100644 --- a/dotnet/docs/html/functions_0x63.html +++ b/dotnet/docs/html/functions_0x63.html @@ -262,7 +262,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x64.html b/dotnet/docs/html/functions_0x64.html index 6cd681202..2d5b08761 100644 --- a/dotnet/docs/html/functions_0x64.html +++ b/dotnet/docs/html/functions_0x64.html @@ -269,7 +269,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x65.html b/dotnet/docs/html/functions_0x65.html index 0cd4abb47..123a4b760 100644 --- a/dotnet/docs/html/functions_0x65.html +++ b/dotnet/docs/html/functions_0x65.html @@ -171,7 +171,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x66.html b/dotnet/docs/html/functions_0x66.html index c22d59ff2..d4ed58fe1 100644 --- a/dotnet/docs/html/functions_0x66.html +++ b/dotnet/docs/html/functions_0x66.html @@ -130,7 +130,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x67.html b/dotnet/docs/html/functions_0x67.html index a871f0ecb..adf8404bc 100644 --- a/dotnet/docs/html/functions_0x67.html +++ b/dotnet/docs/html/functions_0x67.html @@ -468,7 +468,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x68.html b/dotnet/docs/html/functions_0x68.html index 07a4f2096..b61ec4fb0 100644 --- a/dotnet/docs/html/functions_0x68.html +++ b/dotnet/docs/html/functions_0x68.html @@ -84,7 +84,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x69.html b/dotnet/docs/html/functions_0x69.html index b7a750420..fb2b079f0 100644 --- a/dotnet/docs/html/functions_0x69.html +++ b/dotnet/docs/html/functions_0x69.html @@ -239,7 +239,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x6c.html b/dotnet/docs/html/functions_0x6c.html index 61da2a319..1d434a4d3 100644 --- a/dotnet/docs/html/functions_0x6c.html +++ b/dotnet/docs/html/functions_0x6c.html @@ -131,7 +131,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x6d.html b/dotnet/docs/html/functions_0x6d.html index 5d6ee6aa3..7de9a32d1 100644 --- a/dotnet/docs/html/functions_0x6d.html +++ b/dotnet/docs/html/functions_0x6d.html @@ -189,7 +189,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x6e.html b/dotnet/docs/html/functions_0x6e.html index 6564b974a..dd18095e2 100644 --- a/dotnet/docs/html/functions_0x6e.html +++ b/dotnet/docs/html/functions_0x6e.html @@ -87,7 +87,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x6f.html b/dotnet/docs/html/functions_0x6f.html index cd22311d0..3454e26e9 100644 --- a/dotnet/docs/html/functions_0x6f.html +++ b/dotnet/docs/html/functions_0x6f.html @@ -84,7 +84,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x70.html b/dotnet/docs/html/functions_0x70.html index 531893ef9..516cd3aa6 100644 --- a/dotnet/docs/html/functions_0x70.html +++ b/dotnet/docs/html/functions_0x70.html @@ -163,7 +163,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x71.html b/dotnet/docs/html/functions_0x71.html index 70a907b02..c59cfcf01 100644 --- a/dotnet/docs/html/functions_0x71.html +++ b/dotnet/docs/html/functions_0x71.html @@ -70,7 +70,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x72.html b/dotnet/docs/html/functions_0x72.html index 18d676b80..69b3f413f 100644 --- a/dotnet/docs/html/functions_0x72.html +++ b/dotnet/docs/html/functions_0x72.html @@ -179,7 +179,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x73.html b/dotnet/docs/html/functions_0x73.html index 0b7eb75da..34bc856c4 100644 --- a/dotnet/docs/html/functions_0x73.html +++ b/dotnet/docs/html/functions_0x73.html @@ -526,7 +526,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x74.html b/dotnet/docs/html/functions_0x74.html index 52a26c23e..9a2168e89 100644 --- a/dotnet/docs/html/functions_0x74.html +++ b/dotnet/docs/html/functions_0x74.html @@ -135,7 +135,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x75.html b/dotnet/docs/html/functions_0x75.html index a73510087..8a1268898 100644 --- a/dotnet/docs/html/functions_0x75.html +++ b/dotnet/docs/html/functions_0x75.html @@ -108,7 +108,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x76.html b/dotnet/docs/html/functions_0x76.html index 8ce31c6f9..14ea65fd2 100644 --- a/dotnet/docs/html/functions_0x76.html +++ b/dotnet/docs/html/functions_0x76.html @@ -115,7 +115,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x77.html b/dotnet/docs/html/functions_0x77.html index 94bcda832..e9325e527 100644 --- a/dotnet/docs/html/functions_0x77.html +++ b/dotnet/docs/html/functions_0x77.html @@ -87,7 +87,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x78.html b/dotnet/docs/html/functions_0x78.html index 452b601bf..1e5b89a74 100644 --- a/dotnet/docs/html/functions_0x78.html +++ b/dotnet/docs/html/functions_0x78.html @@ -72,7 +72,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_0x79.html b/dotnet/docs/html/functions_0x79.html index 2128ed140..6c40b86e3 100644 --- a/dotnet/docs/html/functions_0x79.html +++ b/dotnet/docs/html/functions_0x79.html @@ -72,7 +72,7 @@ Here is a list of all documented class members with links to the class documenta -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_evnt.html b/dotnet/docs/html/functions_evnt.html index bcba47569..a64752c12 100644 --- a/dotnet/docs/html/functions_evnt.html +++ b/dotnet/docs/html/functions_evnt.html @@ -44,7 +44,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func.html b/dotnet/docs/html/functions_func.html index e73e842fb..c63544829 100644 --- a/dotnet/docs/html/functions_func.html +++ b/dotnet/docs/html/functions_func.html @@ -100,7 +100,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x62.html b/dotnet/docs/html/functions_func_0x62.html index 2fc284c3f..cd7862d85 100644 --- a/dotnet/docs/html/functions_func_0x62.html +++ b/dotnet/docs/html/functions_func_0x62.html @@ -77,7 +77,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x63.html b/dotnet/docs/html/functions_func_0x63.html index b27240c77..6437effc1 100644 --- a/dotnet/docs/html/functions_func_0x63.html +++ b/dotnet/docs/html/functions_func_0x63.html @@ -191,7 +191,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x64.html b/dotnet/docs/html/functions_func_0x64.html index 118be8a70..4a36a81b0 100644 --- a/dotnet/docs/html/functions_func_0x64.html +++ b/dotnet/docs/html/functions_func_0x64.html @@ -172,7 +172,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x65.html b/dotnet/docs/html/functions_func_0x65.html index dc0b378b2..ca513423d 100644 --- a/dotnet/docs/html/functions_func_0x65.html +++ b/dotnet/docs/html/functions_func_0x65.html @@ -112,7 +112,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x66.html b/dotnet/docs/html/functions_func_0x66.html index 0047c8908..5ebd57b3e 100644 --- a/dotnet/docs/html/functions_func_0x66.html +++ b/dotnet/docs/html/functions_func_0x66.html @@ -79,7 +79,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x67.html b/dotnet/docs/html/functions_func_0x67.html index c650bf09e..d93f1eeb7 100644 --- a/dotnet/docs/html/functions_func_0x67.html +++ b/dotnet/docs/html/functions_func_0x67.html @@ -411,7 +411,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x68.html b/dotnet/docs/html/functions_func_0x68.html index caf55d66a..8bb51a3d4 100644 --- a/dotnet/docs/html/functions_func_0x68.html +++ b/dotnet/docs/html/functions_func_0x68.html @@ -68,7 +68,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x69.html b/dotnet/docs/html/functions_func_0x69.html index b0ae7bf72..da8fa61f3 100644 --- a/dotnet/docs/html/functions_func_0x69.html +++ b/dotnet/docs/html/functions_func_0x69.html @@ -168,7 +168,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x6c.html b/dotnet/docs/html/functions_func_0x6c.html index 79fcf43ac..6e0ea32cd 100644 --- a/dotnet/docs/html/functions_func_0x6c.html +++ b/dotnet/docs/html/functions_func_0x6c.html @@ -77,7 +77,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x6d.html b/dotnet/docs/html/functions_func_0x6d.html index 2e6093bb0..31b5dee5e 100644 --- a/dotnet/docs/html/functions_func_0x6d.html +++ b/dotnet/docs/html/functions_func_0x6d.html @@ -151,7 +151,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x70.html b/dotnet/docs/html/functions_func_0x70.html index 207faa426..84b6abeb4 100644 --- a/dotnet/docs/html/functions_func_0x70.html +++ b/dotnet/docs/html/functions_func_0x70.html @@ -111,7 +111,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x71.html b/dotnet/docs/html/functions_func_0x71.html index a719d7054..1db28b094 100644 --- a/dotnet/docs/html/functions_func_0x71.html +++ b/dotnet/docs/html/functions_func_0x71.html @@ -66,7 +66,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x72.html b/dotnet/docs/html/functions_func_0x72.html index 60ae537fe..281afc647 100644 --- a/dotnet/docs/html/functions_func_0x72.html +++ b/dotnet/docs/html/functions_func_0x72.html @@ -139,7 +139,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x73.html b/dotnet/docs/html/functions_func_0x73.html index 8486f46f7..ccfdc7ac9 100644 --- a/dotnet/docs/html/functions_func_0x73.html +++ b/dotnet/docs/html/functions_func_0x73.html @@ -148,7 +148,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x74.html b/dotnet/docs/html/functions_func_0x74.html index 3077039b1..6a7336d15 100644 --- a/dotnet/docs/html/functions_func_0x74.html +++ b/dotnet/docs/html/functions_func_0x74.html @@ -80,7 +80,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x75.html b/dotnet/docs/html/functions_func_0x75.html index b1f599558..2a7a2db59 100644 --- a/dotnet/docs/html/functions_func_0x75.html +++ b/dotnet/docs/html/functions_func_0x75.html @@ -101,7 +101,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x76.html b/dotnet/docs/html/functions_func_0x76.html index 0b2333010..b57e93f5e 100644 --- a/dotnet/docs/html/functions_func_0x76.html +++ b/dotnet/docs/html/functions_func_0x76.html @@ -71,7 +71,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_func_0x77.html b/dotnet/docs/html/functions_func_0x77.html index 9c09dcd83..3ffed5325 100644 --- a/dotnet/docs/html/functions_func_0x77.html +++ b/dotnet/docs/html/functions_func_0x77.html @@ -71,7 +71,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_prop.html b/dotnet/docs/html/functions_prop.html index 5d69d69ee..bac8de6b7 100644 --- a/dotnet/docs/html/functions_prop.html +++ b/dotnet/docs/html/functions_prop.html @@ -440,7 +440,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars.html b/dotnet/docs/html/functions_vars.html index 865250ba6..4a4e27910 100644 --- a/dotnet/docs/html/functions_vars.html +++ b/dotnet/docs/html/functions_vars.html @@ -129,7 +129,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x62.html b/dotnet/docs/html/functions_vars_0x62.html index 8b5d5677e..dc9e5064d 100644 --- a/dotnet/docs/html/functions_vars_0x62.html +++ b/dotnet/docs/html/functions_vars_0x62.html @@ -81,7 +81,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x63.html b/dotnet/docs/html/functions_vars_0x63.html index 09521cca9..9a139edd8 100644 --- a/dotnet/docs/html/functions_vars_0x63.html +++ b/dotnet/docs/html/functions_vars_0x63.html @@ -109,7 +109,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x64.html b/dotnet/docs/html/functions_vars_0x64.html index 6f18a78dd..e70a193e0 100644 --- a/dotnet/docs/html/functions_vars_0x64.html +++ b/dotnet/docs/html/functions_vars_0x64.html @@ -128,7 +128,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x65.html b/dotnet/docs/html/functions_vars_0x65.html index fd63ee842..a7d301a1f 100644 --- a/dotnet/docs/html/functions_vars_0x65.html +++ b/dotnet/docs/html/functions_vars_0x65.html @@ -116,7 +116,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x66.html b/dotnet/docs/html/functions_vars_0x66.html index 898602228..31065d842 100644 --- a/dotnet/docs/html/functions_vars_0x66.html +++ b/dotnet/docs/html/functions_vars_0x66.html @@ -89,7 +89,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x67.html b/dotnet/docs/html/functions_vars_0x67.html index 1d84b5c2e..945c3694a 100644 --- a/dotnet/docs/html/functions_vars_0x67.html +++ b/dotnet/docs/html/functions_vars_0x67.html @@ -90,7 +90,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x68.html b/dotnet/docs/html/functions_vars_0x68.html index 7081c0249..5d70840fe 100644 --- a/dotnet/docs/html/functions_vars_0x68.html +++ b/dotnet/docs/html/functions_vars_0x68.html @@ -74,7 +74,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x69.html b/dotnet/docs/html/functions_vars_0x69.html index c7983cb87..891b12413 100644 --- a/dotnet/docs/html/functions_vars_0x69.html +++ b/dotnet/docs/html/functions_vars_0x69.html @@ -99,7 +99,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x6c.html b/dotnet/docs/html/functions_vars_0x6c.html index 29c290829..6686c861f 100644 --- a/dotnet/docs/html/functions_vars_0x6c.html +++ b/dotnet/docs/html/functions_vars_0x6c.html @@ -98,7 +98,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x6d.html b/dotnet/docs/html/functions_vars_0x6d.html index 9f5202313..e6144e5af 100644 --- a/dotnet/docs/html/functions_vars_0x6d.html +++ b/dotnet/docs/html/functions_vars_0x6d.html @@ -86,7 +86,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x6e.html b/dotnet/docs/html/functions_vars_0x6e.html index 186ba7afe..c1446131c 100644 --- a/dotnet/docs/html/functions_vars_0x6e.html +++ b/dotnet/docs/html/functions_vars_0x6e.html @@ -86,7 +86,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x6f.html b/dotnet/docs/html/functions_vars_0x6f.html index 5b6cbecde..e03093ee3 100644 --- a/dotnet/docs/html/functions_vars_0x6f.html +++ b/dotnet/docs/html/functions_vars_0x6f.html @@ -74,7 +74,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x70.html b/dotnet/docs/html/functions_vars_0x70.html index 2be600f4b..d0c7efffe 100644 --- a/dotnet/docs/html/functions_vars_0x70.html +++ b/dotnet/docs/html/functions_vars_0x70.html @@ -98,7 +98,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x72.html b/dotnet/docs/html/functions_vars_0x72.html index b794b57eb..3fbedf37d 100644 --- a/dotnet/docs/html/functions_vars_0x72.html +++ b/dotnet/docs/html/functions_vars_0x72.html @@ -92,7 +92,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x73.html b/dotnet/docs/html/functions_vars_0x73.html index 946f5ecfc..dc937cee7 100644 --- a/dotnet/docs/html/functions_vars_0x73.html +++ b/dotnet/docs/html/functions_vars_0x73.html @@ -393,7 +393,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x74.html b/dotnet/docs/html/functions_vars_0x74.html index 798030c20..65e374310 100644 --- a/dotnet/docs/html/functions_vars_0x74.html +++ b/dotnet/docs/html/functions_vars_0x74.html @@ -96,7 +96,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x75.html b/dotnet/docs/html/functions_vars_0x75.html index 5f8d55c01..7ada555e4 100644 --- a/dotnet/docs/html/functions_vars_0x75.html +++ b/dotnet/docs/html/functions_vars_0x75.html @@ -68,7 +68,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x76.html b/dotnet/docs/html/functions_vars_0x76.html index bd4ab456e..1f557df6c 100644 --- a/dotnet/docs/html/functions_vars_0x76.html +++ b/dotnet/docs/html/functions_vars_0x76.html @@ -87,7 +87,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x77.html b/dotnet/docs/html/functions_vars_0x77.html index 3aba86e9a..41dacb97e 100644 --- a/dotnet/docs/html/functions_vars_0x77.html +++ b/dotnet/docs/html/functions_vars_0x77.html @@ -74,7 +74,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x78.html b/dotnet/docs/html/functions_vars_0x78.html index 3717b88f9..2324ae7f8 100644 --- a/dotnet/docs/html/functions_vars_0x78.html +++ b/dotnet/docs/html/functions_vars_0x78.html @@ -68,7 +68,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/functions_vars_0x79.html b/dotnet/docs/html/functions_vars_0x79.html index 15fe39961..cea2b99ba 100644 --- a/dotnet/docs/html/functions_vars_0x79.html +++ b/dotnet/docs/html/functions_vars_0x79.html @@ -68,7 +68,7 @@ -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:37 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/hierarchy.html b/dotnet/docs/html/hierarchy.html index c9ce0b930..6d1c5102f 100644 --- a/dotnet/docs/html/hierarchy.html +++ b/dotnet/docs/html/hierarchy.html @@ -94,7 +94,7 @@
  • com::mxgraph::mxUtils
  • -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:36 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/index.html b/dotnet/docs/html/index.html index fa1f6e272..05b61f452 100644 --- a/dotnet/docs/html/index.html +++ b/dotnet/docs/html/index.html @@ -19,7 +19,7 @@

    mxGraph Documentation

    -
    Generated on Wed Jan 16 08:45:20 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:35 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas-members.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas-members.html index c259ac4b0..ed5a99440 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas-members.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas-members.html @@ -31,7 +31,7 @@ Scalecom::mxgraph::mxICanvas Translatecom::mxgraph::mxICanvas -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas.html index 6dc331be5..fdef7849b 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas.html @@ -173,7 +173,7 @@ Inheritance diagram for com::mxgraph::mxICanvas:
  • src/canvas/mxICanvas.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D-members.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D-members.html index f684b9b44..ce4cdf7e3 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D-members.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D-members.html @@ -63,7 +63,7 @@ Text(double x, double y, double w, double h, string str, string align, string valign, bool vertical, bool wrap, string format)com::mxgraph::mxICanvas2D Translate(double dx, double dy)com::mxgraph::mxICanvas2D -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D.html index c430981f0..c656ef7ea 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D.html @@ -1216,7 +1216,7 @@ Inheritance diagram for com::mxgraph::mxICanvas2D:
  • src/canvas/mxICanvas2D.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:38 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell-members.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell-members.html index bcc8aa28b..4d2512838 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell-members.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell-members.html @@ -54,7 +54,7 @@ Vertexcom::mxgraph::mxICell Visiblecom::mxgraph::mxICell -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell.html index 4597fad12..987c04d97 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell.html @@ -781,7 +781,7 @@ Inheritance diagram for com::mxgraph::mxICell:
  • src/model/mxICell.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout-members.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout-members.html index 61634f0f0..8a30cd0e4 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout-members.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout-members.html @@ -29,7 +29,7 @@ execute(Object parent)com::mxgraph::mxIGraphLayout move(Object cell, double x, double y)com::mxgraph::mxIGraphLayout -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout.html index ca1019d6e..b7542c649 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout.html @@ -129,7 +129,7 @@ Inheritance diagram for com::mxgraph::mxIGraphLayout:
  • src/layout/mxIGraphLayout.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:39 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel-members.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel-members.html index 34e407494..46b0cc588 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel-members.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel-members.html @@ -56,7 +56,7 @@ SetValue(Object cell, Object value)com::mxgraph::mxIGraphModel SetVisible(Object cell, bool visible)com::mxgraph::mxIGraphModel -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel.html index a7a75fffe..f319ac7d7 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel.html @@ -1043,7 +1043,7 @@ Inheritance diagram for com::mxgraph::mxIGraphModel:
  • src/model/mxIGraphModel.cs
  • -
    Generated on Wed Jan 16 08:45:21 2013 for mxGraph by  +
    Generated on Thu Feb 14 13:10:40 2013 for mxGraph by  doxygen 1.6.3
    diff --git a/dotnet/src/view/mxGraph.cs b/dotnet/src/view/mxGraph.cs index 0366a9459..b835ebb93 100644 --- a/dotnet/src/view/mxGraph.cs +++ b/dotnet/src/view/mxGraph.cs @@ -15,9 +15,9 @@ namespace com.mxgraph { /// /// Holds the version number of this release. Current version - /// is 1.10.4.2. + /// is 1.10.4.3. /// - public const String VERSION = "1.10.4.2"; + public const String VERSION = "1.10.4.3"; /// /// Holds the model that contains the cells to be displayed. diff --git a/index.html b/index.html index 87824cce9..388474ac1 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ - mxGraph 1.10.4.2 + mxGraph 1.10.4.3 @@ -9,12 +9,12 @@
    mxGraph
    -Version 1.10.4.2 – 16. January 2013 +Version 1.10.4.3 – 14. February 2013


    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    mxGraph is a JavaScript diagramming library that enables interactive graph and charting applications to be quickly created that run natively in any diff --git a/java/build.xml b/java/build.xml index 7ac3b4833..1272a74b3 100644 --- a/java/build.xml +++ b/java/build.xml @@ -8,7 +8,7 @@ - + diff --git a/java/docs/allclasses-frame.html b/java/docs/allclasses-frame.html index c6a51e77f..1c836ddcd 100644 --- a/java/docs/allclasses-frame.html +++ b/java/docs/allclasses-frame.html @@ -2,12 +2,12 @@ - + -All Classes (mxGraph 1.10.4.2 API Specification) +All Classes (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/allclasses-noframe.html b/java/docs/allclasses-noframe.html index 62591b354..6582fd45a 100644 --- a/java/docs/allclasses-noframe.html +++ b/java/docs/allclasses-noframe.html @@ -2,12 +2,12 @@ - + -All Classes (mxGraph 1.10.4.2 API Specification) +All Classes (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/analysis/StructuralException.html b/java/docs/com/mxgraph/analysis/StructuralException.html index a5a710e8e..34777479a 100644 --- a/java/docs/com/mxgraph/analysis/StructuralException.html +++ b/java/docs/com/mxgraph/analysis/StructuralException.html @@ -2,12 +2,12 @@ - + -StructuralException (mxGraph 1.10.4.2 API Specification) +StructuralException (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ StructuralException (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="StructuralException (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="StructuralException (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/class-use/StructuralException.html b/java/docs/com/mxgraph/analysis/class-use/StructuralException.html index 8b2a62aba..b3ec1b7b4 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 1.10.4.2 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxAnalysisGraph.html b/java/docs/com/mxgraph/analysis/class-use/mxAnalysisGraph.html index 67acbd6d0..860f32129 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxConstantCostFunction.html b/java/docs/com/mxgraph/analysis/class-use/mxConstantCostFunction.html index 82be84ed8..304be58e5 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 1.10.4.2 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html b/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html index 90ccba3c7..6f80d6b5a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 1.10.4.2 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 3a1976d64..c49be8220 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 1.10.4.2 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html index 3a77a03e0..94e7c0e55 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html index 7f6beea3c..6d8755f86 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphGenerator.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphGenerator.html index 7f62b198e..0b3503cd0 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 4b328947a..599feed8a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.html index d2cf98e67..3527aa86d 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 1.10.4.2 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphStructure.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphStructure.html index 47c6e49a0..7ef391f41 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html b/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html index c526a1d9e..443c6c19f 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 1.10.4.2 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxTraversal.html b/java/docs/com/mxgraph/analysis/class-use/mxTraversal.html index 200205313..2e6b1a779 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 bc2cfb415..1e45cd31c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html index 7a80c0607..4b8716483 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html b/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html index e43a68b19..c08331ffa 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 1.10.4.2 API Specification) +mxFibonacciHeap.Node (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxFibonacciHeap.Node (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxFibonacciHeap.Node (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxFibonacciHeap.Node (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/mxGraphProperties.GraphType.html b/java/docs/com/mxgraph/analysis/mxGraphProperties.GraphType.html index cb06a439c..a1338a043 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 1.10.4.2 API Specification) +mxGraphProperties.GraphType (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphProperties.GraphType (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphProperties.GraphType (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphProperties.GraphType (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html b/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html index c96e4b4eb..3c76895af 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 1.10.4.2 API Specification) +mxUnionFind.Node (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxUnionFind.Node (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUnionFind.Node (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxUnionFind.Node (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/package-frame.html b/java/docs/com/mxgraph/analysis/package-frame.html index 4b0b37f0f..7d490b04e 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 1.10.4.2 API Specification) +com.mxgraph.analysis (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/analysis/package-summary.html b/java/docs/com/mxgraph/analysis/package-summary.html index 9753429f6..52cfbecd1 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 1.10.4.2 API Specification) +com.mxgraph.analysis (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.analysis (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.analysis (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.analysis (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/package-tree.html b/java/docs/com/mxgraph/analysis/package-tree.html index e1a68bf60..f30a165f0 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 1.10.4.2 API Specification) +com.mxgraph.analysis Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.analysis Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.analysis Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.analysis Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/analysis/package-use.html b/java/docs/com/mxgraph/analysis/package-use.html index 9de4d97d9..ff3310d1f 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.analysis (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.analysis (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.analysis (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.analysis (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html index 5251319ae..427538f80 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html index e490e10cb..e04df0055 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 b524e6883..3aee5c5f1 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html index 8f4f27a22..cd7dee4db 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html index 509a810b7..f735d92ab 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 1.10.4.2 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html index 225429bd6..9caaab2d7 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html b/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html index 508b16316..f1341eba7 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 1.10.4.2 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html index 63ac0067a..4578ee4c4 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html index 9cd32290b..3cbe630ac 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html index 2eec53849..bac478fae 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html b/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html index ec2dc4a41..e79c65669 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 1.10.4.2 API Specification) +mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -623,7 +623,7 @@ public
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -1031,7 +1031,7 @@ void clip() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/canvas/package-frame.html b/java/docs/com/mxgraph/canvas/package-frame.html index 7f4d3833a..2655c9d0d 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 1.10.4.2 API Specification) +com.mxgraph.canvas (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/canvas/package-summary.html b/java/docs/com/mxgraph/canvas/package-summary.html index 2e34ea762..c10645e6c 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 1.10.4.2 API Specification) +com.mxgraph.canvas (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.canvas (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.canvas (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.canvas (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/canvas/package-tree.html b/java/docs/com/mxgraph/canvas/package-tree.html index 9b3969a0d..3f9360200 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 1.10.4.2 API Specification) +com.mxgraph.canvas Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.canvas Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.canvas Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.canvas Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/canvas/package-use.html b/java/docs/com/mxgraph/canvas/package-use.html index e48b4bc3b..74ed109d6 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.canvas (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.canvas (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.canvas (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.canvas (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/costfunction/class-use/mxConstCostFunction.html b/java/docs/com/mxgraph/costfunction/class-use/mxConstCostFunction.html index 3040afec9..2f2fa6ebf 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.costfunction.mxConstCostFunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.costfunction.mxConstCostFunction (mxGraph 1.10.4.2 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.costfunction.mxConstCostFunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.costfunction.mxConstCostFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/costfunction/class-use/mxCostFunction.html b/java/docs/com/mxgraph/costfunction/class-use/mxCostFunction.html index 549336ade..d67e53ce3 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.costfunction.mxCostFunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.costfunction.mxCostFunction (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.costfunction.mxCostFunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.costfunction.mxCostFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/costfunction/class-use/mxDoubleValCostFunction.html b/java/docs/com/mxgraph/costfunction/class-use/mxDoubleValCostFunction.html index 1b6075c08..2c71e228b 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.costfunction.mxDoubleValCostFunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.costfunction.mxDoubleValCostFunction (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.costfunction.mxDoubleValCostFunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.costfunction.mxDoubleValCostFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/costfunction/package-frame.html b/java/docs/com/mxgraph/costfunction/package-frame.html index e5c3a30f7..fefc1af53 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 1.10.4.2 API Specification) +com.mxgraph.costfunction (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/costfunction/package-summary.html b/java/docs/com/mxgraph/costfunction/package-summary.html index 1f8f48b16..07e68e0c7 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 1.10.4.2 API Specification) +com.mxgraph.costfunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.costfunction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.costfunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.costfunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/costfunction/package-tree.html b/java/docs/com/mxgraph/costfunction/package-tree.html index 21c121269..d1016962d 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 1.10.4.2 API Specification) +com.mxgraph.costfunction Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.costfunction Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.costfunction Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.costfunction Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/costfunction/package-use.html b/java/docs/com/mxgraph/costfunction/package-use.html index 8c9251cf3..694a13294 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.costfunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.costfunction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.costfunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.costfunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorConstFunction.html b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorConstFunction.html index a3abb4823..632aef6ba 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.generatorfunction.mxGeneratorConstFunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.generatorfunction.mxGeneratorConstFunction (mxGraph 1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorConstFunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorConstFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorFunction.html b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorFunction.html index 7519cc86d..ab1bd5b4f 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.generatorfunction.mxGeneratorFunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.generatorfunction.mxGeneratorFunction (mxGraph 1.10.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorFunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomFunction.html b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomFunction.html index abcf07bae..699a4cf72 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomFunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomFunction (mxGraph 1 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomFunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomIntFunction.html b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomIntFunction.html index 69cd73715..d21b6136a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomIntFunction (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomIntFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/generatorfunction/package-frame.html b/java/docs/com/mxgraph/generatorfunction/package-frame.html index d9f1bb6f4..450f0edf3 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 1.10.4.2 API Specification) +com.mxgraph.generatorfunction (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/generatorfunction/package-summary.html b/java/docs/com/mxgraph/generatorfunction/package-summary.html index 1ce473df0..e080e53de 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 1.10.4.2 API Specification) +com.mxgraph.generatorfunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.generatorfunction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.generatorfunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.generatorfunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/generatorfunction/package-tree.html b/java/docs/com/mxgraph/generatorfunction/package-tree.html index 86c69916c..51d27179e 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 1.10.4.2 API Specification) +com.mxgraph.generatorfunction Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.generatorfunction Class Hierarchy (mxGraph 1.10.4.2 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.generatorfunction Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.generatorfunction Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/generatorfunction/package-use.html b/java/docs/com/mxgraph/generatorfunction/package-use.html index 430040e40..0bc6230a2 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.generatorfunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.generatorfunction (mxGraph 1.10.4.2 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.generatorfunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.generatorfunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/class-use/mxCellCodec.html b/java/docs/com/mxgraph/io/class-use/mxCellCodec.html index 35a22f882..37c2e5040 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html index 600d5eef5..e58fe95e5 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 1.10.4.2 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/class-use/mxCodec.html b/java/docs/com/mxgraph/io/class-use/mxCodec.html index 4b49e3630..7aeccb29c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.mxCodec (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxCodec (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxCodec (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxCodec (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html b/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html index 8f993a905..da064cca6 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/class-use/mxGdCodec.html b/java/docs/com/mxgraph/io/class-use/mxGdCodec.html index 7efb63264..a400dd72a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 54cf43dc1..f5018d96c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.mxGdCodec.mxGDParseState (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGdCodec.mxGDParseState (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec.mxGDParseState (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec.mxGDParseState (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html index 0374daa75..c52b53fbe 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 1.10.4.2 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/class-use/mxGraphMlCodec.html b/java/docs/com/mxgraph/io/class-use/mxGraphMlCodec.html index 10fad9106..fb02ba727 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/class-use/mxModelCodec.html b/java/docs/com/mxgraph/io/class-use/mxModelCodec.html index a01e439a8..e9776de99 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html b/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html index 323dee4f8..28018f5c8 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html index 8b3350689..f1292da01 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html b/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html index db65af3ec..f974d8afa 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html index 04775d253..225a4427a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 c3d9941f5..d41d627b8 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 1.10.4.2 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 3c5bccd02..64721db0f 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 ea056e09a..5f867d61a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 76b1f2618..357bdcbd5 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 a2f74e59f..9c534c141 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 1.10.4.2 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 2229d3f4c..0222cf546 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 559b9f612..718fd7269 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 1.10.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 0fc23c469..77a834055 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 1.10.4.2 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 f8c3e4d8f..8aabdebbd 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 20720d3c3..8eaf8829c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 23fc665ec..0cf7b825a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 1.10.4.2 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 c357ffff4..103219045 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 1.10.4.2 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 84cfaa94d..7541c26c9 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlConstants.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlConstants.html index 2bd32f635..9c8585ee0 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 1.10.4.2 API Specification) +mxGraphMlConstants (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlConstants (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlConstants (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphMlConstants (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlData.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlData.html index ee2158ff7..e3e10cbed 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 1.10.4.2 API Specification) +mxGraphMlData (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlData (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlData (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphMlData (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlEdge.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlEdge.html index 0f25f7c9c..dd3ee5c77 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 1.10.4.2 API Specification) +mxGraphMlEdge (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlEdge (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlEdge (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphMlEdge (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlGraph.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlGraph.html index 40db8f1ea..554c137b8 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 1.10.4.2 API Specification) +mxGraphMlGraph (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlGraph (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlGraph (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphMlGraph (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.html index d86546933..0ec4d33e4 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 1.10.4.2 API Specification) +mxGraphMlKey (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlKey (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlKey (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphMlKey (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyForValues.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyForValues.html index b1b4385ab..82d5b5a0b 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 1.10.4.2 API Specification) +mxGraphMlKey.keyForValues (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlKey.keyForValues (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlKey.keyForValues (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphMlKey.keyForValues (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyTypeValues.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyTypeValues.html index 3d58d2da7..1feb45768 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 1.10.4.2 API Specification) +mxGraphMlKey.keyTypeValues (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlKey.keyTypeValues (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlKey.keyTypeValues (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphMlKey.keyTypeValues (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlKeyManager.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlKeyManager.html index fb307228f..524fbe6c5 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 1.10.4.2 API Specification) +mxGraphMlKeyManager (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlKeyManager (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlKeyManager (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphMlKeyManager (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlNode.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlNode.html index 0781bcc4b..408b6b1c0 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 1.10.4.2 API Specification) +mxGraphMlNode (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlNode (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlNode (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphMlNode (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlPort.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlPort.html index c7079d45f..4687f7f3f 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 1.10.4.2 API Specification) +mxGraphMlPort (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlPort (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlPort (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphMlPort (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeEdge.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeEdge.html index a62a5e8f0..d4d8ccc04 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 1.10.4.2 API Specification) +mxGraphMlShapeEdge (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlShapeEdge (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlShapeEdge (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphMlShapeEdge (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeNode.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeNode.html index 2748310ae..8a77d02a5 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 1.10.4.2 API Specification) +mxGraphMlShapeNode (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlShapeNode (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlShapeNode (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphMlShapeNode (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlUtils.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlUtils.html index 6672b238a..a9c8bb02e 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 1.10.4.2 API Specification) +mxGraphMlUtils (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlUtils (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlUtils (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphMlUtils (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/package-frame.html b/java/docs/com/mxgraph/io/graphml/package-frame.html index c7c268ba9..9dcab00f2 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 1.10.4.2 API Specification) +com.mxgraph.io.graphml (mxGraph 1.10.4.3 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 bdcc4d4ef..fe1fb2a47 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 1.10.4.2 API Specification) +com.mxgraph.io.graphml (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io.graphml (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io.graphml (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.io.graphml (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/package-tree.html b/java/docs/com/mxgraph/io/graphml/package-tree.html index f1b43dac6..2c152331c 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 1.10.4.2 API Specification) +com.mxgraph.io.graphml Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io.graphml Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io.graphml Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.io.graphml Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/graphml/package-use.html b/java/docs/com/mxgraph/io/graphml/package-use.html index c4f01a60b..005608ea9 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.io.graphml (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.io.graphml (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.io.graphml (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.io.graphml (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/mxGdCodec.mxGDParseState.html b/java/docs/com/mxgraph/io/mxGdCodec.mxGDParseState.html index 9fc89872e..277c7a3c9 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 1.10.4.2 API Specification) +mxGdCodec.mxGDParseState (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGdCodec.mxGDParseState (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGdCodec.mxGDParseState (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGdCodec.mxGDParseState (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/package-frame.html b/java/docs/com/mxgraph/io/package-frame.html index c126a31ef..74a11f4a8 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 1.10.4.2 API Specification) +com.mxgraph.io (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/io/package-summary.html b/java/docs/com/mxgraph/io/package-summary.html index beb63b006..1be6cf4ce 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 1.10.4.2 API Specification) +com.mxgraph.io (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.io (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/package-tree.html b/java/docs/com/mxgraph/io/package-tree.html index f745e2ba1..62d4331a2 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 1.10.4.2 API Specification) +com.mxgraph.io Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.io Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/io/package-use.html b/java/docs/com/mxgraph/io/package-use.html index 98b1d93d3..6f420fbbb 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.io (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.io (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.io (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.io (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html b/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html index 9c9e5140e..5375a3590 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 1.10.4.2 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 441eae0c2..6c1da1465 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 1.10.4.2 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 7f6ff5cf5..161f8e6de 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 771b454ed..5c37d1df9 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 5ecccf9bb..71c5425b8 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html index ab9eaf5ea..ded300efe 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 1.10.4.2 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html b/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html index 482493866..bc8dd47ef 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html b/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html index 0c51f57c1..b1908e0f4 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 1.10.4.2 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html b/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html index 3534da5e5..918247fa6 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html b/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html index 988930ea3..59f68904c 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 7bd17ce3e..662e16168 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 1.10.4.2 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html index dcb5e166d..e4945a714 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 1.10.4.2 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html b/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html index 09d27f881..c9ec25291 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html b/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html index 289fc5857..8222994c5 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html b/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html index 46f51ef02..ab53587a5 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 ebf34b9e6..f967677f0 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 1.10 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 4c906c3e4..98d21def5 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 355467359..477e2361b 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 f481e81d6..1f15b4721 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 773171deb..a93e1562b 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 2e4ef50bc..34e1c0b7b 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 d3fa06818..b7e26584a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html index 0d90399b5..295c17b9a 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 1.10.4.2 API Specification) +mxGraphAbstractHierarchyCell (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphAbstractHierarchyCell (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphAbstractHierarchyCell (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphAbstractHierarchyCell (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html index 897dd39a8..aa00c868b 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 1.10.4.2 API Specification) +mxGraphHierarchyEdge (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyEdge (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyEdge (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphHierarchyEdge (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 e82ec5fc8..d563e4353 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 1.10.4.2 API Specification) +mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html index d56241af4..9e2521825 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 1.10.4.2 API Specification) +mxGraphHierarchyModel (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyModel (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyModel (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphHierarchyModel (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html index 077de5353..dfe9a8c31 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 1.10.4.2 API Specification) +mxGraphHierarchyNode (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyNode (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyNode (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphHierarchyNode (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html index a1ce0b9c9..1c2398c5a 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 1.10.4.2 API Specification) +mxGraphHierarchyRank (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyRank (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyRank (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphHierarchyRank (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 d0b9609b4..2df6aeaf7 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 1.10.4.2 API Specification) +com.mxgraph.layout.hierarchical.model (mxGraph 1.10.4.3 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 c038140c0..0d8ff9f8d 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 1.10.4.2 API Specification) +com.mxgraph.layout.hierarchical.model (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.model (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.model (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.model (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 8d457647e..0bb19ec03 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 1.10.4.2 API Specification) +com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 4701cbb92..cdad9c034 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html b/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html index 18ed94815..a8a27955d 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 1.10.4.2 API Specification) +mxHierarchicalLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxHierarchicalLayout (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHierarchicalLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxHierarchicalLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-frame.html b/java/docs/com/mxgraph/layout/hierarchical/package-frame.html index 660366f58..ca95afd65 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 1.10.4.2 API Specification) +com.mxgraph.layout.hierarchical (mxGraph 1.10.4.3 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 a958973c0..f75d7e0d5 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 1.10.4.2 API Specification) +com.mxgraph.layout.hierarchical (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-tree.html b/java/docs/com/mxgraph/layout/hierarchical/package-tree.html index e65315a35..9500cc9e4 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 1.10.4.2 API Specification) +com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 1.10.4.2 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-use.html b/java/docs/com/mxgraph/layout/hierarchical/package-use.html index 9d29ee84a..167fc3dae 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.layout.hierarchical (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical (mxGraph 1.10.4.2 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.hierarchical (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 090944305..7182b5cb4 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 0dde75857..1042fcbdc 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 1e06c6aba..150dd0f4c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 03f66d800..ef147d321 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 e1b58ed5b..8ef520109 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 581f026d4..8c475319f 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 2a3c9ca36..c9f648887 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 97d12aae6..3b3796fd8 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 1.10.4.2 API Specification) +mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 62172ec4c..d5262e3a7 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 1.10.4.2 API Specification) +mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html index e11e6d5de..80770b718 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 1.10.4.2 API Specification) +mxCoordinateAssignment (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCoordinateAssignment (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCoordinateAssignment (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCoordinateAssignment (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html index 7d8d44e40..b86b7a1c6 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 1.10.4.2 API Specification) +mxHierarchicalLayoutStage (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxHierarchicalLayoutStage (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHierarchicalLayoutStage (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxHierarchicalLayoutStage (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 073a70228..0a0d3daf7 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 1.10.4.2 API Specification) +mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.4.2 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html index dbec07a2b..e740834f0 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 1.10.4.2 API Specification) +mxMedianHybridCrossingReduction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxMedianHybridCrossingReduction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMedianHybridCrossingReduction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxMedianHybridCrossingReduction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html index 74e9e43b2..be20669d6 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 1.10.4.2 API Specification) +mxMinimumCycleRemover (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxMinimumCycleRemover (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMinimumCycleRemover (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxMinimumCycleRemover (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 a3a90c52b..04b0d8b82 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 1.10.4.2 API Specification) +com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.4.3 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 ae0658d43..06f1634c4 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 1.10.4.2 API Specification) +com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 cd3d376da..5072f0aaf 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 1.10.4.2 API Specification) +com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 492a3c1cc..ab9dda8a9 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html index 59269fb88..cacb94da8 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 1.10.4.2 API Specification) +mxCompactTreeLayout.Polygon (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout.Polygon (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout.Polygon (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCompactTreeLayout.Polygon (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html index 22b14c61f..52351eb32 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 1.10.4.2 API Specification) +mxCompactTreeLayout.Polyline (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout.Polyline (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout.Polyline (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCompactTreeLayout.Polyline (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html index c61a246b1..a0981fe83 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 1.10.4.2 API Specification) +mxCompactTreeLayout.TreeNode (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout.TreeNode (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout.TreeNode (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCompactTreeLayout.TreeNode (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html index 939aee20d..9bb45aaa2 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 1.10.4.2 API Specification) +mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html b/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html index 5ee97be35..7f10a0dba 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 1.10.4.2 API Specification) +mxOrganicLayout.CellWrapper (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxOrganicLayout.CellWrapper (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxOrganicLayout.CellWrapper (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxOrganicLayout.CellWrapper (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 affc776d4..d1f481edc 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 adc215ecf..d57eae79c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 1.1 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 b918f7781..65bd06b72 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 1be180887..94fbcd298 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 1.10. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 262d944d9..c77bf57e1 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 1.10.4.2 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html index ed8cf7763..b10bbed0e 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 1.10.4.2 API Specification) +mxOrthogonalModel (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxOrthogonalModel (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxOrthogonalModel (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxOrthogonalModel (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html index 5714fd293..630e9d917 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 1.10.4.2 API Specification) +mxPointPair (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxPointPair (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPointPair (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxPointPair (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html index 821d61040..d31759380 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 1.10.4.2 API Specification) +mxPointSequence (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxPointSequence (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPointSequence (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxPointSequence (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html index 5db7236cf..7f46bcfb8 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 1.10.4.2 API Specification) +mxSegment (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxSegment (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSegment (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxSegment (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 04a5293d9..0c38ddf2e 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 1.10.4.2 API Specification) +com.mxgraph.layout.orthogonal.model (mxGraph 1.10.4.3 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 4c2f5fb28..3334949fd 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 1.10.4.2 API Specification) +com.mxgraph.layout.orthogonal.model (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal.model (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal.model (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal.model (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 0282330e9..6391fda78 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 1.10.4.2 API Specification) +com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 a94313da5..e06266203 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html b/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html index aee22c408..ad0714942 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 1.10.4.2 API Specification) +mxOrthogonalLayout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxOrthogonalLayout (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxOrthogonalLayout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxOrthogonalLayout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-frame.html b/java/docs/com/mxgraph/layout/orthogonal/package-frame.html index 091800f08..c36e358ba 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 1.10.4.2 API Specification) +com.mxgraph.layout.orthogonal (mxGraph 1.10.4.3 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 d1de5f755..d4426f182 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 1.10.4.2 API Specification) +com.mxgraph.layout.orthogonal (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-tree.html b/java/docs/com/mxgraph/layout/orthogonal/package-tree.html index 058d02070..99b5971b9 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 1.10.4.2 API Specification) +com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 1.10.4.2 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-use.html b/java/docs/com/mxgraph/layout/orthogonal/package-use.html index 6bcb7d2c0..c519dfb46 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.layout.orthogonal (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.orthogonal (mxGraph 1.10.4.2 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.orthogonal (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.orthogonal (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/package-frame.html b/java/docs/com/mxgraph/layout/package-frame.html index c46649921..cd070a23e 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 1.10.4.2 API Specification) +com.mxgraph.layout (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/package-summary.html b/java/docs/com/mxgraph/layout/package-summary.html index 918e301f4..fd1b1aaf8 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 1.10.4.2 API Specification) +com.mxgraph.layout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.layout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/package-tree.html b/java/docs/com/mxgraph/layout/package-tree.html index d9e05e271..761abe05c 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 1.10.4.2 API Specification) +com.mxgraph.layout Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.layout Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/layout/package-use.html b/java/docs/com/mxgraph/layout/package-use.html index 55e1c2830..4aa6a3028 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.layout (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/class-use/mxCell.html b/java/docs/com/mxgraph/model/class-use/mxCell.html index ba9d0b9d1..f1f8682bc 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.model.mxCell (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxCell (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxCell (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxCell (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/class-use/mxCellPath.html b/java/docs/com/mxgraph/model/class-use/mxCellPath.html index 01474bb1f..5ea0a4662 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.model.mxCellPath (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxCellPath (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxCellPath (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxCellPath (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/class-use/mxGeometry.html b/java/docs/com/mxgraph/model/class-use/mxGeometry.html index eac123302..390ffa251 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.model.mxGeometry (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGeometry (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGeometry (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGeometry (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 e6b8718e5..1df9ec298 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 1.10.4.2 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.html index 536ba1dbc..75205cc50 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 73c5b0ae1..4aa75c938 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 1.10.4.2 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 bd703d131..59990712a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 6c1e5718d..9055743f3 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 3a044f9e0..2ee3df630 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 1.10.4.2 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 9350fdfde..a1f6021da 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 1.10.4.2 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 2933c0a4c..694218e36 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 b78dc6304..ddb62b85a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 1.10.4.2 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 e18193397..73c8fc8d0 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 1.10.4.2 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/class-use/mxICell.html b/java/docs/com/mxgraph/model/class-use/mxICell.html index 2a48047d4..d95c6c88b 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.model.mxICell (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.model.mxICell (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.model.mxICell (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.model.mxICell (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html index 45d56a398..ddad2b7a0 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 1.10.4.2 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 641e0be88..6ff891096 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.Filter.html b/java/docs/com/mxgraph/model/mxGraphModel.Filter.html index c320cc50c..88e0f36bd 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 1.10.4.2 API Specification) +mxGraphModel.Filter (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.Filter (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.Filter (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphModel.Filter (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html index 85899304a..01a1c1494 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 1.10.4.2 API Specification) +mxGraphModel.mxChildChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxChildChange (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxChildChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphModel.mxChildChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html index 22f83f0d5..ac219b736 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 1.10.4.2 API Specification) +mxGraphModel.mxCollapseChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxCollapseChange (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxCollapseChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphModel.mxCollapseChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html index 4a2a192f0..07c84ce2e 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 1.10.4.2 API Specification) +mxGraphModel.mxGeometryChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxGeometryChange (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxGeometryChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphModel.mxGeometryChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html index 4b59b4fa5..b59811a68 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 1.10.4.2 API Specification) +mxGraphModel.mxRootChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxRootChange (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxRootChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphModel.mxRootChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html index 430cdc082..c80d98ee4 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 1.10.4.2 API Specification) +mxGraphModel.mxStyleChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxStyleChange (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxStyleChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphModel.mxStyleChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html index 3930a1865..5d73d2426 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 1.10.4.2 API Specification) +mxGraphModel.mxTerminalChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxTerminalChange (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxTerminalChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphModel.mxTerminalChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html index 1f92875e6..0410a45bc 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 1.10.4.2 API Specification) +mxGraphModel.mxValueChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxValueChange (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxValueChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphModel.mxValueChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html index 93b9355ed..9338c3d88 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 1.10.4.2 API Specification) +mxGraphModel.mxVisibleChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxVisibleChange (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxVisibleChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphModel.mxVisibleChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html b/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html index 39958d69a..2380f975d 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 1.10.4.2 API Specification) +mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/package-frame.html b/java/docs/com/mxgraph/model/package-frame.html index 9df14b9c0..d7801549b 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 1.10.4.2 API Specification) +com.mxgraph.model (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/model/package-summary.html b/java/docs/com/mxgraph/model/package-summary.html index db32b4fea..5bec05ef7 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 1.10.4.2 API Specification) +com.mxgraph.model (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.model (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.model (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.model (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/package-tree.html b/java/docs/com/mxgraph/model/package-tree.html index 94136b43d..76a4a7435 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 1.10.4.2 API Specification) +com.mxgraph.model Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.model Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.model Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.model Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/model/package-use.html b/java/docs/com/mxgraph/model/package-use.html index 061d46e4d..333bcbf24 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.model (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.model (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.model (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.model (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 1e4bd5163..5a80656da 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html index 0c3982700..c8f1d6921 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html b/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html index e5cbc2538..666232ff1 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 1.10.4.2 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html b/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html index ad0c87c3f..d6df35a8b 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 fbbd16aa3..6341367a7 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html index e7e88c962..b8d3a68e7 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html b/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html index 2531b3c54..0612e0796 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 1.10.4.2 API Specification) +mxDomOutputParser.IElementHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxDomOutputParser.IElementHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDomOutputParser.IElementHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxDomOutputParser.IElementHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html index 6e07a6ea9..4a9dcc326 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 1.10.4.2 API Specification) +mxSaxOutputHandler.IElementHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxSaxOutputHandler.IElementHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSaxOutputHandler.IElementHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxSaxOutputHandler.IElementHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/reader/package-frame.html b/java/docs/com/mxgraph/reader/package-frame.html index 82bffe8be..086250636 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 1.10.4.2 API Specification) +com.mxgraph.reader (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/reader/package-summary.html b/java/docs/com/mxgraph/reader/package-summary.html index e1f2522c5..6cdf1b982 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 1.10.4.2 API Specification) +com.mxgraph.reader (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.reader (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.reader (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.reader (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/reader/package-tree.html b/java/docs/com/mxgraph/reader/package-tree.html index 96c6aac7d..09b18ac4c 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 1.10.4.2 API Specification) +com.mxgraph.reader Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.reader Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.reader Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.reader Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/reader/package-use.html b/java/docs/com/mxgraph/reader/package-use.html index a373b4d33..e9e764d15 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.reader (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.reader (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.reader (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.reader (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxActorShape.html b/java/docs/com/mxgraph/shape/class-use/mxActorShape.html index e3d4319aa..1cdcd8064 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html b/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html index 86e8e69b0..f1ec1f8a8 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html b/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html index dc67a85db..e8bebf296 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html b/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html index afe45ee90..b79355e52 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html b/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html index aa0098a2a..8dbe951e1 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 1.10.4.2 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 c1d085cda..e5cf34b63 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 a587ad2dd..9ee38aeaa 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 1.10.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html index 007f971ba..0d3a09e56 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 1.10.4.2 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html b/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html index 813b3fc5d..9e2a86cc2 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html b/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html index cb5a8f7de..beba3b83b 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 1.10.4.2 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html b/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html index e1d4f60d1..28ea3a0ef 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html b/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html index 026c4642c..c36801335 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 1.10.4.2 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html b/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html index b476b6d41..71676d428 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html b/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html index 2ffdfd441..f2e96875d 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html b/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html index a60a3e746..d191578a7 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 1.10.4.2 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxIMarker.html b/java/docs/com/mxgraph/shape/class-use/mxIMarker.html index f358ca53c..5df162883 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 1.10.4.2 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxIShape.html b/java/docs/com/mxgraph/shape/class-use/mxIShape.html index 9bd174a15..6c5643f35 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxITextShape.html b/java/docs/com/mxgraph/shape/class-use/mxITextShape.html index c483ab715..a40477222 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 1.10.4.2 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxImageShape.html b/java/docs/com/mxgraph/shape/class-use/mxImageShape.html index 069f9c817..1e24c57c5 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html b/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html index f34e12932..d02bc35c1 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxLineShape.html b/java/docs/com/mxgraph/shape/class-use/mxLineShape.html index 1138cb449..a98cc5c24 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html b/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html index 6ba129a04..c81ecf85c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 1.10.4.2 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html b/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html index 2da58f732..4712ec1db 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 1.10.4.2 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html b/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html index f2ce22ee4..e7c74b75e 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencil.html b/java/docs/com/mxgraph/shape/class-use/mxStencil.html index 139deb8fa..15a2d6d04 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxStencil (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencil (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxStencil (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencil (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html b/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html index 7040e46a9..76223edf6 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 1.10.4.2 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html index b70e4659a..5805ee5c5 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 afbeeb503..bb6f43ce5 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 1.10.4.2 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html b/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html index a8273337d..291a95ea6 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 1.10.4.2 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html b/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html index 52cd042c0..ac5633efc 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 1.10.4.2 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html index 2498aeaf7..034f33f55 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 1.10.4.2 API Specification) +mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html index 7cc81a95d..f1fdb3730 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 1.10.4.2 API Specification) +mxCurveLabelShape.LabelPosition (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCurveLabelShape.LabelPosition (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurveLabelShape.LabelPosition (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCurveLabelShape.LabelPosition (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html b/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html index 515e512a8..1e7c5677d 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 1.10.4.2 API Specification) +mxStencilShape.svgShape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxStencilShape.svgShape (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStencilShape.svgShape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxStencilShape.svgShape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/package-frame.html b/java/docs/com/mxgraph/shape/package-frame.html index f02eb927e..457e7ff2a 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 1.10.4.2 API Specification) +com.mxgraph.shape (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/shape/package-summary.html b/java/docs/com/mxgraph/shape/package-summary.html index 36dae04e7..5a78a979c 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 1.10.4.2 API Specification) +com.mxgraph.shape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.shape (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.shape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.shape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/package-tree.html b/java/docs/com/mxgraph/shape/package-tree.html index 3dcb7e397..f023bbf40 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 1.10.4.2 API Specification) +com.mxgraph.shape Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.shape Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.shape Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.shape Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/shape/package-use.html b/java/docs/com/mxgraph/shape/package-use.html index 9773ece3d..21c96f3d4 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.shape (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.shape (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.shape (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.shape (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSession.html b/java/docs/com/mxgraph/sharing/class-use/mxSession.html index 36f36e86b..dbbfe67af 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.sharing.mxSession (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.sharing.mxSession (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.sharing.mxSession (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.sharing.mxSession (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSharedGraphModel.html b/java/docs/com/mxgraph/sharing/class-use/mxSharedGraphModel.html index ff488b512..98a967007 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 1.10.4.2 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSharedState.html b/java/docs/com/mxgraph/sharing/class-use/mxSharedState.html index 38aad6aef..0f9d3e631 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 1.10.4.2 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 722ec6eb3..94a5f7b21 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/sharing/mxSharedState.mxDiagramChangeListener.html b/java/docs/com/mxgraph/sharing/mxSharedState.mxDiagramChangeListener.html index 02ae68973..1407b7141 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 1.10.4.2 API Specification) +mxSharedState.mxDiagramChangeListener (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxSharedState.mxDiagramChangeListener (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSharedState.mxDiagramChangeListener (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxSharedState.mxDiagramChangeListener (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/sharing/package-frame.html b/java/docs/com/mxgraph/sharing/package-frame.html index cf8d8950f..6fa3cfb82 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 1.10.4.2 API Specification) +com.mxgraph.sharing (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/sharing/package-summary.html b/java/docs/com/mxgraph/sharing/package-summary.html index 7ab363dbe..aae5586fb 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 1.10.4.2 API Specification) +com.mxgraph.sharing (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.sharing (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.sharing (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.sharing (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/sharing/package-tree.html b/java/docs/com/mxgraph/sharing/package-tree.html index 9204e2865..8d3499270 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 1.10.4.2 API Specification) +com.mxgraph.sharing Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.sharing Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.sharing Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.sharing Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/sharing/package-use.html b/java/docs/com/mxgraph/sharing/package-use.html index 5a076f054..1ffb675d1 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.sharing (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.sharing (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.sharing (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.sharing (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html index bc053b63b..0ffcd1440 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 1.10.4.2 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 875bf8987..aa1a806d4 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 1.10.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 127a0ffc8..ec94b86e7 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 1.10 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 b504bd76b..ce1a75c6c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 1.10.4.2 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html index 8f19415cd..c1eb7e02f 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 99e674cba..347e1751c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 7fe393577..c545f274b 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 1.10.4.2 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 8da73f015..3736cebf2 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 68fca28f7..4520bc08f 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 1.10.4.2 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 0e1181675..3cd7d264d 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 1.10.4.2 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 b53b05334..e37f19fc7 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 f0bf4a24e..71925c802 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 1.10.4.2 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 3ba97cfe3..071fa1631 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 1.10.4.2 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 480c686ff..08166dc4a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 ba81bf6e0..248a16d55 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 1.10.4.2 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 69520a6b3..e09c4991c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 1.10.4.2 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 304c6c2a9..c2bdaf5f9 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 5370fe2ea..52727d06d 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 1.10.4.2 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 cc151b4c1..fe84fa5eb 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 1.10.4.2 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 93448a901..9c19f1291 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 1.10.4.2 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 abafaa21e..0769b2e6a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 1.10.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 5e9a815a5..8544ee3dd 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 1.10.4.2 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxCellHandler.html b/java/docs/com/mxgraph/swing/handler/mxCellHandler.html index 685b5da5f..e0ba79a43 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 1.10.4.2 API Specification) +mxCellHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCellHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCellHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxCellMarker.html b/java/docs/com/mxgraph/swing/handler/mxCellMarker.html index 4deebaf8a..9e6c45a13 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 1.10.4.2 API Specification) +mxCellMarker (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCellMarker (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellMarker (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCellMarker (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxCellTracker.html b/java/docs/com/mxgraph/swing/handler/mxCellTracker.html index 537eb0023..f9e869238 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 1.10.4.2 API Specification) +mxCellTracker (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCellTracker (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellTracker (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCellTracker (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html b/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html index e32e1274b..e4f8599f8 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 1.10.4.2 API Specification) +mxConnectPreview (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxConnectPreview (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectPreview (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxConnectPreview (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html b/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html index 612bcb8e0..d6c452fa4 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 1.10.4.2 API Specification) +mxConnectionHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxConnectionHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectionHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxConnectionHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html index 9bd6b759d..768977813 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 1.10.4.2 API Specification) +mxEdgeHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxEdgeHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html index 93586e34c..2e428ca4f 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 1.10.4.2 API Specification) +mxElbowEdgeHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxElbowEdgeHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxElbowEdgeHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxElbowEdgeHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html b/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html index ad67e1d3d..a97ffcb55 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 1.10.4.2 API Specification) +mxGraphHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html b/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html index f3fe964ae..e1ad9c7c9 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 1.10.4.2 API Specification) +mxGraphTransferHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphTransferHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphTransferHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphTransferHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html b/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html index 359eca658..b9fdab733 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 1.10.4.2 API Specification) +mxInsertHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxInsertHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxInsertHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxInsertHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html b/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html index 59dd3fa76..5e386e50b 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 1.10.4.2 API Specification) +mxKeyboardHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxKeyboardHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxKeyboardHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxKeyboardHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxMovePreview.html b/java/docs/com/mxgraph/swing/handler/mxMovePreview.html index a8a586c13..5aee9f7ae 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 1.10.4.2 API Specification) +mxMovePreview (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxMovePreview (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMovePreview (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxMovePreview (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html b/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html index 6216cc8eb..8cd24e74a 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 1.10.4.2 API Specification) +mxPanningHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxPanningHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPanningHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxPanningHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html b/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html index 11012d890..15f9552a3 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 1.10.4.2 API Specification) +mxRotationHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxRotationHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRotationHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxRotationHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxRubberband.html b/java/docs/com/mxgraph/swing/handler/mxRubberband.html index 0f4494701..7b5f60c00 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 1.10.4.2 API Specification) +mxRubberband (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxRubberband (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRubberband (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxRubberband (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html b/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html index 9784ecc17..47c0eba85 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 1.10.4.2 API Specification) +mxSelectionCellsHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxSelectionCellsHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSelectionCellsHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxSelectionCellsHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html b/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html index 62311875d..c8bd09eab 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 1.10.4.2 API Specification) +mxVertexHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxVertexHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxVertexHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxVertexHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/package-frame.html b/java/docs/com/mxgraph/swing/handler/package-frame.html index b4b624adb..b923b7df2 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 1.10.4.2 API Specification) +com.mxgraph.swing.handler (mxGraph 1.10.4.3 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 1516751c7..3a01e6b70 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 1.10.4.2 API Specification) +com.mxgraph.swing.handler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.handler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.handler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.swing.handler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/package-tree.html b/java/docs/com/mxgraph/swing/handler/package-tree.html index 65b515d91..2006c7291 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 1.10.4.2 API Specification) +com.mxgraph.swing.handler Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.handler Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.handler Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.swing.handler Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/handler/package-use.html b/java/docs/com/mxgraph/swing/handler/package-use.html index 2d41cf91f..f7224e9a3 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.swing.handler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing.handler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.swing.handler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing.handler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html b/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html index f53d4afc7..6507d984f 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 1.10.4.2 API Specification) +mxGraphComponent.mxGraphControl (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphComponent.mxGraphControl (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphComponent.mxGraphControl (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphComponent.mxGraphControl (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html b/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html index 7443ea3cb..e9eb8a9e2 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 1.10.4.2 API Specification) +mxGraphComponent.mxMouseRedirector (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphComponent.mxMouseRedirector (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphComponent.mxMouseRedirector (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphComponent.mxMouseRedirector (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html b/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html index e730fb333..f124bddff 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 1.10.4.2 API Specification) +mxGraphOutline.MouseTracker (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphOutline.MouseTracker (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphOutline.MouseTracker (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphOutline.MouseTracker (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -1256,7 +1256,7 @@ public boolean updateScaleAndTranslate() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/package-frame.html b/java/docs/com/mxgraph/swing/package-frame.html index dcb84bbeb..246217e82 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 1.10.4.2 API Specification) +com.mxgraph.swing (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/swing/package-summary.html b/java/docs/com/mxgraph/swing/package-summary.html index 4f936dfad..a026faa4f 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 1.10.4.2 API Specification) +com.mxgraph.swing (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.swing (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -148,7 +148,7 @@ This package contains the main component for JFC/Swing, namely the graph -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/package-tree.html b/java/docs/com/mxgraph/swing/package-tree.html index 8c6178905..280852b1d 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 1.10.4.2 API Specification) +com.mxgraph.swing Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.swing Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -132,7 +132,7 @@ Class Hierarchy -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/package-use.html b/java/docs/com/mxgraph/swing/package-use.html index 8f2dae730..d212cd528 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.swing (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.swing (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 5189ea890..8bfe9872c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 1.10.4.2 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 d7499cac8..16deeead8 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 e5e68c5ea..26d35451b 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 1.10.4 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.DeleteAction -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 bdf57782d..a350bb12e 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 1.10.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.DrillAction -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 d27fca16c..f74bce7a1 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.EditAction -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 382765b93..4d4c6f5ae 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.FoldAction -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 c6a7b8ade..f57e96889 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 1.10.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.GroupAction -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 12e8a2c23..773373631 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 1.10.4. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.LayerAction -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 0f14a4ead..faca3a1e7 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 d93a64856..b748326d7 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 1.10.4 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.SelectAction -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 4dea0cfa7..ef6568ebc 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 1.10. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.UngroupAction -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 1874ebaca..8417d0ead 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 f7b7140d6..322993888 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.ZoomAction -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 4df85407b..848cfc9a6 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 2a52e10e4..5190e832f 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 1.10.4.2 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -199,7 +199,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 f4a57abed..c0352be93 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 1.10.4.2 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -280,7 +280,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 b05b79a0d..ea737c172 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 1.10.4.2 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 289feb261..b16de5c3a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 02ce7975f..957414898 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxAnimation.html b/java/docs/com/mxgraph/swing/util/mxAnimation.html index 8f1e31232..69b3f52d7 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 1.10.4.2 API Specification) +mxAnimation (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxAnimation (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxAnimation (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxAnimation (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -442,7 +442,7 @@ public void stopAnimation() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxCellOverlay.html b/java/docs/com/mxgraph/swing/util/mxCellOverlay.html index 26c7f30e1..8cd41a49e 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 1.10.4.2 API Specification) +mxCellOverlay (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCellOverlay (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellOverlay (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCellOverlay (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -533,7 +533,7 @@ public
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html index 7686b35d8..88d90521e 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 1.10.4.2 API Specification) +mxGraphActions.DeleteAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.DeleteAction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.DeleteAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphActions.DeleteAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -258,7 +258,7 @@ public void actionPerformed(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html index 5b8654b03..0084e9e74 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 1.10.4.2 API Specification) +mxGraphActions.DrillAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.DrillAction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.DrillAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphActions.DrillAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -258,7 +258,7 @@ public void actionPerformed(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html index f6f0f0ba3..a7410f8a5 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 1.10.4.2 API Specification) +mxGraphActions.EditAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.EditAction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.EditAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphActions.EditAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -258,7 +258,7 @@ public void actionPerformed(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html index c690d14e5..253796bce 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 1.10.4.2 API Specification) +mxGraphActions.FoldAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.FoldAction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.FoldAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphActions.FoldAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -258,7 +258,7 @@ public void actionPerformed(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html index 2e757c324..9e683e1b6 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 1.10.4.2 API Specification) +mxGraphActions.GroupAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.GroupAction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.GroupAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphActions.GroupAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -277,7 +277,7 @@ public void actionPerformed(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html index e0d575569..d79bcf463 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 1.10.4.2 API Specification) +mxGraphActions.LayerAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.LayerAction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.LayerAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphActions.LayerAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -258,7 +258,7 @@ public void actionPerformed(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html index f31e247d0..e9ad40c4a 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 1.10.4.2 API Specification) +mxGraphActions.RemoveFromParentAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.RemoveFromParentAction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.RemoveFromParentAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphActions.RemoveFromParentAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -258,7 +258,7 @@ public void actionPerformed(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html index 4ad77df8d..7d7e21459 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 1.10.4.2 API Specification) +mxGraphActions.SelectAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.SelectAction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.SelectAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphActions.SelectAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -258,7 +258,7 @@ public void actionPerformed(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html index 93ae93652..f072d5768 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 1.10.4.2 API Specification) +mxGraphActions.UngroupAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.UngroupAction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.UngroupAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphActions.UngroupAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -258,7 +258,7 @@ public void actionPerformed(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html index 9fddbfc45..8ad2a8dd1 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 1.10.4.2 API Specification) +mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -277,7 +277,7 @@ public void actionPerformed(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html index fa5245012..becaf255f 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 1.10.4.2 API Specification) +mxGraphActions.ZoomAction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.ZoomAction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.ZoomAction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphActions.ZoomAction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -258,7 +258,7 @@ public void actionPerformed(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.html index fdc266535..b15ce9af7 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 1.10.4.2 API Specification) +mxGraphActions (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphActions (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -789,7 +789,7 @@ public static final
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html b/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html index db309b5d7..0d3b80901 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 1.10.4.2 API Specification) +mxGraphTransferable (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphTransferable (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphTransferable (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphTransferable (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -780,7 +780,7 @@ protected boolean isStringFlavor(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxICellOverlay.html b/java/docs/com/mxgraph/swing/util/mxICellOverlay.html index bd6d5789f..c4a997ed2 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 1.10.4.2 API Specification) +mxICellOverlay (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxICellOverlay (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICellOverlay (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxICellOverlay (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -168,7 +168,7 @@ getBounds -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxMorphing.html b/java/docs/com/mxgraph/swing/util/mxMorphing.html index f0ad76913..ab47d3949 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 1.10.4.2 API Specification) +mxMorphing (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxMorphing (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMorphing (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxMorphing (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html b/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html index 63ef4de65..342c5d77c 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 1.10.4.2 API Specification) +mxMouseAdapter (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxMouseAdapter (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMouseAdapter (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxMouseAdapter (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/mxSwingConstants.html b/java/docs/com/mxgraph/swing/util/mxSwingConstants.html index adfa5cb77..b730f6bf7 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 1.10.4.2 API Specification) +mxSwingConstants (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxSwingConstants (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSwingConstants (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxSwingConstants (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -547,7 +547,7 @@ public mxSwingConstants() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/package-frame.html b/java/docs/com/mxgraph/swing/util/package-frame.html index aa22ed210..c635a442e 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 1.10.4.2 API Specification) +com.mxgraph.swing.util (mxGraph 1.10.4.3 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 f9f905f2a..411a427a0 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 1.10.4.2 API Specification) +com.mxgraph.swing.util (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.util (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.util (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.swing.util (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -221,7 +221,7 @@ This package contains all utility classes that require JFC/Swing, namely for -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/package-tree.html b/java/docs/com/mxgraph/swing/util/package-tree.html index 8f1ed8a9a..b1e9524c5 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 1.10.4.2 API Specification) +com.mxgraph.swing.util Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.util Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.util Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.swing.util Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -141,7 +141,7 @@ Interface Hierarchy -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/util/package-use.html b/java/docs/com/mxgraph/swing/util/package-use.html index f8c17fdb9..093adc624 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.swing.util (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing.util (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.swing.util (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing.util (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 c26bf11e4..2a8b7b7d0 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 1.10.4.2 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 ced1bb870..47b58f342 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 1.10.4.2 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 2f60c33d8..51ebea492 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 1.10.4.2 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 ad74899a2..672f3a79b 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 1.10.4.2 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/view/mxCellEditor.html b/java/docs/com/mxgraph/swing/view/mxCellEditor.html index c4b4e7d8b..b21674c02 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 1.10.4.2 API Specification) +mxCellEditor (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCellEditor (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellEditor (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCellEditor (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -1074,7 +1074,7 @@ public void setMinimumHeight(int minimumHeight) -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html b/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html index 54978d5c1..22d3f50d0 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 1.10.4.2 API Specification) +mxCellStatePreview (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCellStatePreview (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellStatePreview (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCellStatePreview (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -743,7 +743,7 @@ protected void paintPreviewState(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/view/mxICellEditor.html b/java/docs/com/mxgraph/swing/view/mxICellEditor.html index ef63a5729..76bd35202 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 1.10.4.2 API Specification) +mxICellEditor (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxICellEditor (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICellEditor (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxICellEditor (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -214,7 +214,7 @@ void stopEditing(boolean cancel) -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html b/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html index c3b5e1754..1b68851dc 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 1.10.4.2 API Specification) +mxInteractiveCanvas (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxInteractiveCanvas (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxInteractiveCanvas (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxInteractiveCanvas (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -450,7 +450,7 @@ public boolean hitSwimlaneContent(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/view/package-frame.html b/java/docs/com/mxgraph/swing/view/package-frame.html index 84a48b355..9ef09ee49 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 1.10.4.2 API Specification) +com.mxgraph.swing.view (mxGraph 1.10.4.3 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 7f8d6929a..94ad68ca8 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 1.10.4.2 API Specification) +com.mxgraph.swing.view (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.view (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.view (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.swing.view (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -163,7 +163,7 @@ This package contains all classes required for interaction, namely the -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/view/package-tree.html b/java/docs/com/mxgraph/swing/view/package-tree.html index 88ef15ac2..0d22e87e6 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 1.10.4.2 API Specification) +com.mxgraph.swing.view Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.view Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.view Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.swing.view Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/swing/view/package-use.html b/java/docs/com/mxgraph/swing/view/package-use.html index 578b7761c..b2b66e28c 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.swing.view (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing.view (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.swing.view (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing.view (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxBase64.html b/java/docs/com/mxgraph/util/class-use/mxBase64.html index eefba44b2..b8b46aeec 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxBase64 (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxBase64 (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxBase64 (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxBase64 (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxBase64 -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 b6f2ae40b..5e40276a6 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 1.10.4.2 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -152,7 +152,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html index ac6e80de3..1b1454629 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 1.10.4.2 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxCellRenderer -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxConstants.html b/java/docs/com/mxgraph/util/class-use/mxConstants.html index b529e15f1..b1663dead 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxConstants (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxConstants (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxConstants (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxConstants (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxConstants -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxCurve.html b/java/docs/com/mxgraph/util/class-use/mxCurve.html index 9c603d62d..a2118d4eb 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxCurve (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCurve (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxCurve (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCurve (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxDomUtils.html b/java/docs/com/mxgraph/util/class-use/mxDomUtils.html index 332c34ac6..4a02f51ab 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxDomUtils -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxEvent.html b/java/docs/com/mxgraph/util/class-use/mxEvent.html index d658c96db..becd7bc17 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxEvent (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEvent (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxEvent (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEvent (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxEvent -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxEventObject.html b/java/docs/com/mxgraph/util/class-use/mxEventObject.html index 8b4435d15..7c1180caf 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxEventObject (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEventObject (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxEventObject (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEventObject (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -166,7 +166,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxEventSource.html b/java/docs/com/mxgraph/util/class-use/mxEventSource.html index 8c9ef2ac1..74783d274 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxEventSource (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEventSource (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxEventSource (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEventSource (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 4eaa00473..082aff8ad 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 1.10. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -518,7 +518,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html b/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html index 2ee3dbe1f..3ea1a8249 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxHtmlColor -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxImage.html b/java/docs/com/mxgraph/util/class-use/mxImage.html index 83bcf67ec..3c0a03d65 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxImage (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxImage (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxImage (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxImage (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxImage -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxImageBundle.html b/java/docs/com/mxgraph/util/class-use/mxImageBundle.html index 65f21af8d..666cb1992 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -202,7 +202,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html b/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html index c8660ade9..e1d1eea12 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 1.10.4.2 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -163,7 +163,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxLine.html b/java/docs/com/mxgraph/util/class-use/mxLine.html index 050d13df7..832ae867b 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxLine (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxLine (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxLine (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxLine (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -227,7 +227,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxPoint.html b/java/docs/com/mxgraph/util/class-use/mxPoint.html index 3191b19e2..28effe662 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxPoint (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxPoint (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxPoint (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxPoint (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -1868,7 +1868,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxRectangle.html b/java/docs/com/mxgraph/util/class-use/mxRectangle.html index 6b8d3c6ee..bd85092ed 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxRectangle (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxRectangle (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxRectangle (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxRectangle (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -1735,7 +1735,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxResources.html b/java/docs/com/mxgraph/util/class-use/mxResources.html index 750b3ec57..75b82387f 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxResources (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxResources (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxResources (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxResources (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxResources -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxSpline.html b/java/docs/com/mxgraph/util/class-use/mxSpline.html index fb67691d5..f50079da0 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxSpline (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxSpline (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxSpline (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxSpline (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxSpline -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxSpline1D.html b/java/docs/com/mxgraph/util/class-use/mxSpline1D.html index 5244c2845..0004e4f26 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html b/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html index b7fca8b8d..d974c1d0e 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxStyleUtils -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoManager.html b/java/docs/com/mxgraph/util/class-use/mxUndoManager.html index a4e445535..afb3e2252 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 1.10.4.2 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxUndoManager -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html index 8f580af4b..f4e53d4af 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 1.10.4.2 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -269,7 +269,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 3b1615ea1..1f8871a31 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 1.10 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -389,7 +389,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxUtils.html b/java/docs/com/mxgraph/util/class-use/mxUtils.html index 39347e876..f26b32c00 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxUtils (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxUtils (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxUtils (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxUtils (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxUtils -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html b/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html index 4658e555c..f3c50fa87 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxXmlUtils -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxBase64.html b/java/docs/com/mxgraph/util/mxBase64.html index 22922c4d3..e63736d8f 100644 --- a/java/docs/com/mxgraph/util/mxBase64.html +++ b/java/docs/com/mxgraph/util/mxBase64.html @@ -2,12 +2,12 @@ - + -mxBase64 (mxGraph 1.10.4.2 API Specification) +mxBase64 (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxBase64 (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxBase64 (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxBase64 (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -489,7 +489,7 @@ public static final byte[] decodeFast(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html b/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html index 8aa59890a..7877cfcff 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 1.10.4.2 API Specification) +mxCellRenderer.CanvasFactory (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCellRenderer.CanvasFactory (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellRenderer.CanvasFactory (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCellRenderer.CanvasFactory (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -220,7 +220,7 @@ public abstract
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxCellRenderer.html b/java/docs/com/mxgraph/util/mxCellRenderer.html index 7153c73cd..330c66bad 100644 --- a/java/docs/com/mxgraph/util/mxCellRenderer.html +++ b/java/docs/com/mxgraph/util/mxCellRenderer.html @@ -2,12 +2,12 @@ - + -mxCellRenderer (mxGraph 1.10.4.2 API Specification) +mxCellRenderer (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCellRenderer (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellRenderer (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCellRenderer (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxConstants.html b/java/docs/com/mxgraph/util/mxConstants.html index d81f2b256..2dfed2742 100644 --- a/java/docs/com/mxgraph/util/mxConstants.html +++ b/java/docs/com/mxgraph/util/mxConstants.html @@ -2,12 +2,12 @@ - + -mxConstants (mxGraph 1.10.4.2 API Specification) +mxConstants (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxConstants (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConstants (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxConstants (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -4107,7 +4107,7 @@ public mxConstants() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxCurve.html b/java/docs/com/mxgraph/util/mxCurve.html index 14bc6eb97..f3a6ebec2 100644 --- a/java/docs/com/mxgraph/util/mxCurve.html +++ b/java/docs/com/mxgraph/util/mxCurve.html @@ -2,12 +2,12 @@ - + -mxCurve (mxGraph 1.10.4.2 API Specification) +mxCurve (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCurve (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurve (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCurve (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -1104,7 +1104,7 @@ public
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxDomUtils.html b/java/docs/com/mxgraph/util/mxDomUtils.html index fb4b64337..4326d5b52 100644 --- a/java/docs/com/mxgraph/util/mxDomUtils.html +++ b/java/docs/com/mxgraph/util/mxDomUtils.html @@ -2,12 +2,12 @@ - + -mxDomUtils (mxGraph 1.10.4.2 API Specification) +mxDomUtils (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxDomUtils (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDomUtils (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxDomUtils (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -281,7 +281,7 @@ public static
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxEvent.html b/java/docs/com/mxgraph/util/mxEvent.html index 4792ec4ff..af0e354ac 100644 --- a/java/docs/com/mxgraph/util/mxEvent.html +++ b/java/docs/com/mxgraph/util/mxEvent.html @@ -2,12 +2,12 @@ - + -mxEvent (mxGraph 1.10.4.2 API Specification) +mxEvent (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxEvent (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEvent (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxEvent (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -1273,7 +1273,7 @@ public mxEvent() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxEventObject.html b/java/docs/com/mxgraph/util/mxEventObject.html index 9a3380471..c5864a195 100644 --- a/java/docs/com/mxgraph/util/mxEventObject.html +++ b/java/docs/com/mxgraph/util/mxEventObject.html @@ -2,12 +2,12 @@ - + -mxEventObject (mxGraph 1.10.4.2 API Specification) +mxEventObject (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxEventObject (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventObject (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxEventObject (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -397,7 +397,7 @@ public void consume() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxEventSource.html b/java/docs/com/mxgraph/util/mxEventSource.html index 93b732ad0..96b7a2871 100644 --- a/java/docs/com/mxgraph/util/mxEventSource.html +++ b/java/docs/com/mxgraph/util/mxEventSource.html @@ -2,12 +2,12 @@ - + -mxEventSource (mxGraph 1.10.4.2 API Specification) +mxEventSource (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxEventSource (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventSource (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxEventSource (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -513,7 +513,7 @@ public void fireEvent(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html b/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html index 31389f9d3..22b47e91a 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 1.10.4.2 API Specification) +mxEventSource.mxIEventListener (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxEventSource.mxIEventListener (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventSource.mxIEventListener (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxEventSource.mxIEventListener (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -176,7 +176,7 @@ void invoke(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxHtmlColor.html b/java/docs/com/mxgraph/util/mxHtmlColor.html index d643434e5..65e86232f 100644 --- a/java/docs/com/mxgraph/util/mxHtmlColor.html +++ b/java/docs/com/mxgraph/util/mxHtmlColor.html @@ -2,12 +2,12 @@ - + -mxHtmlColor (mxGraph 1.10.4.2 API Specification) +mxHtmlColor (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxHtmlColor (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHtmlColor (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxHtmlColor (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -306,7 +306,7 @@ public static
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxImage.html b/java/docs/com/mxgraph/util/mxImage.html index 75b204cca..a1310a4bb 100644 --- a/java/docs/com/mxgraph/util/mxImage.html +++ b/java/docs/com/mxgraph/util/mxImage.html @@ -2,12 +2,12 @@ - + -mxImage (mxGraph 1.10.4.2 API Specification) +mxImage (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxImage (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImage (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxImage (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -420,7 +420,7 @@ public void setHeight(int height) -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxImageBundle.html b/java/docs/com/mxgraph/util/mxImageBundle.html index 71e4cf625..4502d3fd1 100644 --- a/java/docs/com/mxgraph/util/mxImageBundle.html +++ b/java/docs/com/mxgraph/util/mxImageBundle.html @@ -2,12 +2,12 @@ - + -mxImageBundle (mxGraph 1.10.4.2 API Specification) +mxImageBundle (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxImageBundle (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImageBundle (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxImageBundle (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -331,7 +331,7 @@ public
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxLightweightLabel.html b/java/docs/com/mxgraph/util/mxLightweightLabel.html index c6ae6c011..a8a11860c 100644 --- a/java/docs/com/mxgraph/util/mxLightweightLabel.html +++ b/java/docs/com/mxgraph/util/mxLightweightLabel.html @@ -2,12 +2,12 @@ - + -mxLightweightLabel (mxGraph 1.10.4.2 API Specification) +mxLightweightLabel (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxLightweightLabel (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLightweightLabel (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxLightweightLabel (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -742,7 +742,7 @@ public void firePropertyChange(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxLine.html b/java/docs/com/mxgraph/util/mxLine.html index 3d3174819..6f0fa37b3 100644 --- a/java/docs/com/mxgraph/util/mxLine.html +++ b/java/docs/com/mxgraph/util/mxLine.html @@ -2,12 +2,12 @@ - + -mxLine (mxGraph 1.10.4.2 API Specification) +mxLine (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxLine (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLine (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxLine (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -396,7 +396,7 @@ public double ptSegDistSq(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxPoint.html b/java/docs/com/mxgraph/util/mxPoint.html index 04693e070..3a515c22f 100644 --- a/java/docs/com/mxgraph/util/mxPoint.html +++ b/java/docs/com/mxgraph/util/mxPoint.html @@ -2,12 +2,12 @@ - + -mxPoint (mxGraph 1.10.4.2 API Specification) +mxPoint (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxPoint (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPoint (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxPoint (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -518,7 +518,7 @@ public
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxRectangle.html b/java/docs/com/mxgraph/util/mxRectangle.html index 71907fbf4..e4c00a5fa 100644 --- a/java/docs/com/mxgraph/util/mxRectangle.html +++ b/java/docs/com/mxgraph/util/mxRectangle.html @@ -2,12 +2,12 @@ - + -mxRectangle (mxGraph 1.10.4.2 API Specification) +mxRectangle (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxRectangle (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRectangle (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxRectangle (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -699,7 +699,7 @@ public
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxResources.html b/java/docs/com/mxgraph/util/mxResources.html index 9759fa526..ecf220dbd 100644 --- a/java/docs/com/mxgraph/util/mxResources.html +++ b/java/docs/com/mxgraph/util/mxResources.html @@ -2,12 +2,12 @@ - + -mxResources (mxGraph 1.10.4.2 API Specification) +mxResources (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxResources (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxResources (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxResources (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -432,7 +432,7 @@ protected static
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxSpline.html b/java/docs/com/mxgraph/util/mxSpline.html index 5447d4d14..605a611e8 100644 --- a/java/docs/com/mxgraph/util/mxSpline.html +++ b/java/docs/com/mxgraph/util/mxSpline.html @@ -2,12 +2,12 @@ - + -mxSpline (mxGraph 1.10.4.2 API Specification) +mxSpline (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxSpline (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpline (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxSpline (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -371,7 +371,7 @@ public double getLength() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxSpline1D.html b/java/docs/com/mxgraph/util/mxSpline1D.html index 7960d5642..66f942004 100644 --- a/java/docs/com/mxgraph/util/mxSpline1D.html +++ b/java/docs/com/mxgraph/util/mxSpline1D.html @@ -2,12 +2,12 @@ - + -mxSpline1D (mxGraph 1.10.4.2 API Specification) +mxSpline1D (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxSpline1D (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpline1D (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxSpline1D (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -446,7 +446,7 @@ public void solve(double[][] A, -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxStyleUtils.html b/java/docs/com/mxgraph/util/mxStyleUtils.html index 7b42d3a39..86be6cc3e 100644 --- a/java/docs/com/mxgraph/util/mxStyleUtils.html +++ b/java/docs/com/mxgraph/util/mxStyleUtils.html @@ -2,12 +2,12 @@ - + -mxStyleUtils (mxGraph 1.10.4.2 API Specification) +mxStyleUtils (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxStyleUtils (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStyleUtils (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxStyleUtils (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -468,7 +468,7 @@ public static
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxUndoManager.html b/java/docs/com/mxgraph/util/mxUndoManager.html index b598eaa69..6ade60a04 100644 --- a/java/docs/com/mxgraph/util/mxUndoManager.html +++ b/java/docs/com/mxgraph/util/mxUndoManager.html @@ -2,12 +2,12 @@ - + -mxUndoManager (mxGraph 1.10.4.2 API Specification) +mxUndoManager (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxUndoManager (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoManager (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxUndoManager (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -511,7 +511,7 @@ protected void trim() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxUndoableEdit.html b/java/docs/com/mxgraph/util/mxUndoableEdit.html index d81151470..1f6969ee7 100644 --- a/java/docs/com/mxgraph/util/mxUndoableEdit.html +++ b/java/docs/com/mxgraph/util/mxUndoableEdit.html @@ -2,12 +2,12 @@ - + -mxUndoableEdit (mxGraph 1.10.4.2 API Specification) +mxUndoableEdit (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxUndoableEdit (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoableEdit (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxUndoableEdit (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -578,7 +578,7 @@ public void redo() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html b/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html index 186ca7ebb..7b3153a0d 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 1.10.4.2 API Specification) +mxUndoableEdit.mxUndoableChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxUndoableEdit.mxUndoableChange (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoableEdit.mxUndoableChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxUndoableEdit.mxUndoableChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -177,7 +177,7 @@ void execute() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxUtils.html b/java/docs/com/mxgraph/util/mxUtils.html index 6260f4774..19e1ca396 100644 --- a/java/docs/com/mxgraph/util/mxUtils.html +++ b/java/docs/com/mxgraph/util/mxUtils.html @@ -2,12 +2,12 @@ - + -mxUtils (mxGraph 1.10.4.2 API Specification) +mxUtils (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxUtils (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUtils (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxUtils (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -2513,7 +2513,7 @@ public static
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/mxXmlUtils.html b/java/docs/com/mxgraph/util/mxXmlUtils.html index 5becb32d0..7473e2936 100644 --- a/java/docs/com/mxgraph/util/mxXmlUtils.html +++ b/java/docs/com/mxgraph/util/mxXmlUtils.html @@ -2,12 +2,12 @@ - + -mxXmlUtils (mxGraph 1.10.4.2 API Specification) +mxXmlUtils (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxXmlUtils (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxXmlUtils (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxXmlUtils (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -240,7 +240,7 @@ public static
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/package-frame.html b/java/docs/com/mxgraph/util/package-frame.html index 8426b53fe..538c53ad1 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 1.10.4.2 API Specification) +com.mxgraph.util (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/util/package-summary.html b/java/docs/com/mxgraph/util/package-summary.html index 79e0fcfbb..a3103a363 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 1.10.4.2 API Specification) +com.mxgraph.util (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.util (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -258,7 +258,7 @@ This package provides utility classes such as mxConstants, mxUtils, mxPoint -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/package-tree.html b/java/docs/com/mxgraph/util/package-tree.html index d6dc33c4d..d289a1f2a 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 1.10.4.2 API Specification) +com.mxgraph.util Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.util Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -140,7 +140,7 @@ Interface Hierarchy -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/package-use.html b/java/docs/com/mxgraph/util/package-use.html index f6ec64981..ee50954d3 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.util (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.util (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.util (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.util (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 18d31bd9a..952141fc7 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 1.10.4.2 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.Gray -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 f0949f716..7cebb8d99 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 1.10.4.2 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.Palette -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 d979dc90b..3efd2f16a 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 1.10.4.2 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.RGB -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 11385eb2c..4d62be45f 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -219,7 +219,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 3f554ab28..583c2ed7f 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 1.10.4.2 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngImageEncoder -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 d25b5befc..1dff89693 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 f2cae2f14..23b8ed1d7 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngTextDecoder -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html index 68630c851..5e7b94573 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 1.10.4.2 API Specification) +mxPngEncodeParam.Gray (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.Gray (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.Gray (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxPngEncodeParam.Gray (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -542,7 +542,7 @@ public boolean isBitDepthSet() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html index b5fbf6334..013b8c2d6 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 1.10.4.2 API Specification) +mxPngEncodeParam.Palette (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.Palette (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.Palette (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxPngEncodeParam.Palette (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -517,7 +517,7 @@ public byte[] getPaletteTransparency() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html index e3b7b8f63..5510fafb8 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 1.10.4.2 API Specification) +mxPngEncodeParam.RGB (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.RGB (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.RGB (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxPngEncodeParam.RGB (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -420,7 +420,7 @@ public int[] getTransparentRGB() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html index 5ff9ed8a7..c8b5272f7 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 1.10.4.2 API Specification) +mxPngEncodeParam (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxPngEncodeParam (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -2047,7 +2047,7 @@ public int filterRow(byte[] currRow, -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html b/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html index 468f120cd..f52561d30 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 1.10.4.2 API Specification) +mxPngImageEncoder (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxPngImageEncoder (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngImageEncoder (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxPngImageEncoder (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -326,7 +326,7 @@ public void encode(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html b/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html index ff9f1c46a..046cedea1 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 1.10.4.2 API Specification) +mxPngSuggestedPaletteEntry (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxPngSuggestedPaletteEntry (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngSuggestedPaletteEntry (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxPngSuggestedPaletteEntry (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -353,7 +353,7 @@ public mxPngSuggestedPaletteEntry() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html b/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html index 2b8286f0a..10bb4437e 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 1.10.4.2 API Specification) +mxPngTextDecoder (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxPngTextDecoder (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngTextDecoder (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxPngTextDecoder (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -271,7 +271,7 @@ public static
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/png/package-frame.html b/java/docs/com/mxgraph/util/png/package-frame.html index ecc093f90..27afe5f69 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 1.10.4.2 API Specification) +com.mxgraph.util.png (mxGraph 1.10.4.3 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 6b8133059..28487a161 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 1.10.4.2 API Specification) +com.mxgraph.util.png (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.png (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.png (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.util.png (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -147,7 +147,7 @@ Package com.mxgraph.util.png -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/png/package-tree.html b/java/docs/com/mxgraph/util/png/package-tree.html index 097cb0a14..319578e13 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 1.10.4.2 API Specification) +com.mxgraph.util.png Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.png Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.png Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.util.png Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/png/package-use.html b/java/docs/com/mxgraph/util/png/package-use.html index e9b1d1035..0d8e62005 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.util.png (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.util.png (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.util.png (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.util.png (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -142,7 +142,7 @@ Classes in
    com.m -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/AWTPathProducer.html b/java/docs/com/mxgraph/util/svg/AWTPathProducer.html index 3e5fb6d8c..2513e9716 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 1.10.4.2 API Specification) +AWTPathProducer (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ AWTPathProducer (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPathProducer (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="AWTPathProducer (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -1098,7 +1098,7 @@ public void arcAbs(float rx, -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html b/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html index 6c810a2a3..10b9b812a 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 1.10.4.2 API Specification) +AWTPolygonProducer (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ AWTPolygonProducer (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPolygonProducer (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="AWTPolygonProducer (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -281,7 +281,7 @@ public void endPoints() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html b/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html index bbccd9c35..cc6b7c49c 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 1.10.4.2 API Specification) +AWTPolylineProducer (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ AWTPolylineProducer (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPolylineProducer (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="AWTPolylineProducer (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -469,7 +469,7 @@ public void endPoints() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/AbstractParser.html b/java/docs/com/mxgraph/util/svg/AbstractParser.html index 6f185dd97..456cf043d 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 1.10.4.2 API Specification) +AbstractParser (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ AbstractParser (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AbstractParser (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="AbstractParser (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -601,7 +601,7 @@ protected void skipCommaSpaces() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/CSSConstants.html b/java/docs/com/mxgraph/util/svg/CSSConstants.html index fa1d8c167..b547aaa74 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 1.10.4.2 API Specification) +CSSConstants (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ CSSConstants (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="CSSConstants (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="CSSConstants (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -204,7 +204,7 @@ static final
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html b/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html index d0db88427..8768969a0 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 1.10.4.2 API Specification) +DefaultErrorHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ DefaultErrorHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="DefaultErrorHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="DefaultErrorHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -227,7 +227,7 @@ public void error(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/ErrorHandler.html b/java/docs/com/mxgraph/util/svg/ErrorHandler.html index 4c7290fdc..027c031af 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 1.10.4.2 API Specification) +ErrorHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ ErrorHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ErrorHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="ErrorHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -178,7 +178,7 @@ void error(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html b/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html index ee2e159d5..66a641bec 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 1.10.4.2 API Specification) +ExtendedGeneralPath (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ ExtendedGeneralPath (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ExtendedGeneralPath (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="ExtendedGeneralPath (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -1091,7 +1091,7 @@ public
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html b/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html index 16638beb0..130fa56dd 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 1.10.4.2 API Specification) +ExtendedPathIterator (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ ExtendedPathIterator (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ExtendedPathIterator (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="ExtendedPathIterator (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -494,7 +494,7 @@ void next() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/NormalizingReader.html b/java/docs/com/mxgraph/util/svg/NormalizingReader.html index adf77e0ea..08abf082c 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 1.10.4.2 API Specification) +NormalizingReader (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ NormalizingReader (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="NormalizingReader (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="NormalizingReader (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -307,7 +307,7 @@ public abstract int getColumn() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/NumberParser.html b/java/docs/com/mxgraph/util/svg/NumberParser.html index 78c08099b..6804273fe 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 1.10.4.2 API Specification) +NumberParser (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ NumberParser (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="NumberParser (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="NumberParser (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -279,7 +279,7 @@ public static float buildFloat(int mant, -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/ParseException.html b/java/docs/com/mxgraph/util/svg/ParseException.html index 508e9e7df..7be207fb8 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 1.10.4.2 API Specification) +ParseException (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ ParseException (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ParseException (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="ParseException (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -437,7 +437,7 @@ public int getColumnNumber() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/Parser.html b/java/docs/com/mxgraph/util/svg/Parser.html index 63356257f..d2bc7a151 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 1.10.4.2 API Specification) +Parser (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Parser (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Parser (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Parser (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -206,7 +206,7 @@ void setErrorHandler(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/PathHandler.html b/java/docs/com/mxgraph/util/svg/PathHandler.html index e15abbbc1..928bdc5e9 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 1.10.4.2 API Specification) +PathHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ PathHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PathHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="PathHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -776,7 +776,7 @@ void arcAbs(float rx, -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/PathParser.html b/java/docs/com/mxgraph/util/svg/PathParser.html index 2dbbff268..266483426 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 1.10.4.2 API Specification) +PathParser (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ PathParser (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PathParser (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="PathParser (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -941,7 +941,7 @@ protected boolean skipCommaSpaces2() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/PointsHandler.html b/java/docs/com/mxgraph/util/svg/PointsHandler.html index bb8a07f2c..2f6619d2a 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 1.10.4.2 API Specification) +PointsHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ PointsHandler (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PointsHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="PointsHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -232,7 +232,7 @@ void endPoints() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/PointsParser.html b/java/docs/com/mxgraph/util/svg/PointsParser.html index d30a6b258..373405def 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 1.10.4.2 API Specification) +PointsParser (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ PointsParser (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PointsParser (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="PointsParser (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -367,7 +367,7 @@ protected void doParse() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/ShapeProducer.html b/java/docs/com/mxgraph/util/svg/ShapeProducer.html index c7bad7b39..948c5048f 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 1.10.4.2 API Specification) +ShapeProducer (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ ShapeProducer (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ShapeProducer (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="ShapeProducer (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -218,7 +218,7 @@ int getWindingRule() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html b/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html index acabe5173..5c9426283 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 1.10.4.2 API Specification) +StringNormalizingReader (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ StringNormalizingReader (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="StringNormalizingReader (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="StringNormalizingReader (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -454,7 +454,7 @@ public void close() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 3df052668..034b41cb5 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.AWTPathProducer -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 064e0b048..aec40c4a1 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.AWTPolygonProducer -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 e4fcac424..73a42e7ba 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 1.10.4.2 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 e5d3f0976..72397323e 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 1.10.4.2 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -163,7 +163,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 1bb1347b2..da08e69da 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.CSSConstants -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 bc1f4b3ea..d58821d3c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 1.10.4.2 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.DefaultErrorHandler -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 4575093df..330e3eb96 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 1.10.4.2 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -185,7 +185,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 47df9321d..844df4f69 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 1.10.4.2 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 1f9111508..0b5861c87 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 1.10.4.2 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 a09f4282a..38ead98bd 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 1.10.4.2 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 48dad0353..823efba65 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 1.10.4.2 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 e74a38174..c7494409b 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 1.10.4.2 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -920,7 +920,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 f0271430a..be96372fe 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 1.10.4.2 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 feefd90a3..fda29b9b4 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 1.10.4.2 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 c75584f56..533ece504 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 1.10.4.2 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.PathParser -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 f6c1dff13..93567ea71 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 1.10.4.2 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -215,7 +215,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 ea6e0eacf..9a8d5572f 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 1.10.4.2 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.PointsParser -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 2deb24ddb..8a5b81756 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 1.10.4.2 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 d1f50b6f2..3623907a8 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 1.10.4.2 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.StringNormalizingReader -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/package-frame.html b/java/docs/com/mxgraph/util/svg/package-frame.html index c12c47255..62642025e 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 1.10.4.2 API Specification) +com.mxgraph.util.svg (mxGraph 1.10.4.3 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 ea3c0e3e9..153816df7 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 1.10.4.2 API Specification) +com.mxgraph.util.svg (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.svg (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.svg (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.util.svg (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -227,7 +227,7 @@ Package com.mxgraph.util.svg -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/package-tree.html b/java/docs/com/mxgraph/util/svg/package-tree.html index f4d8f820b..9e4fa7eac 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 1.10.4.2 API Specification) +com.mxgraph.util.svg Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.svg Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.svg Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.util.svg Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -146,7 +146,7 @@ Interface Hierarchy -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/util/svg/package-use.html b/java/docs/com/mxgraph/util/svg/package-use.html index bc1858d34..eebebbbdb 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.util.svg (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.util.svg (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.util.svg (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.util.svg (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -211,7 +211,7 @@ Classes in
    com.m -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxCellState.html b/java/docs/com/mxgraph/view/class-use/mxCellState.html index 567d06903..9947efeae 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxCellState (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxCellState (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxCellState (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxCellState (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -2448,7 +2448,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html b/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html index 9e9b16070..0b6a19857 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 1.10.4.2 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -222,7 +222,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html index 649106cbf..acbae94d9 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxEdgeStyle -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 3452d5107..58646d093 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -241,7 +241,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxGraph.html b/java/docs/com/mxgraph/view/class-use/mxGraph.html index 27dc1f001..0d19c5b72 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxGraph (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraph (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraph (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraph (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -1189,7 +1189,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 1d005e200..cfe2d1f28 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 1.10.4.2 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html index 3f1307f00..420bf147d 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 1.10.4.2 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 795f2a9a7..4f886806c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.4.3 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 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphView.html b/java/docs/com/mxgraph/view/class-use/mxGraphView.html index 0ae71104c..7635ca79d 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxGraphView (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphView (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraphView (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphView (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -279,7 +279,7 @@ Uses of
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 cd0c5ddb6..eb28e9ea9 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 1.10.4.2 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxGraphView.mxCurrentRootChange -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html b/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html index 022da5eb7..37d2c71e9 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxLayoutManager -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html b/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html index ea6d2d085..cedd2dca3 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 1.10.4.2 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxPerimeter.html b/java/docs/com/mxgraph/view/class-use/mxPerimeter.html index 255f4e7f5..cb02f2d2c 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxPerimeter -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    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 b9d6c2dda..ea9a07ffa 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 1.10.4.2 API Specification) +Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 1.10 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html b/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html index 85a7cae8a..aa38299bf 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 1.10.4.2 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxSpaceManager -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html b/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html index deb7f532c..d4e173176 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 1.10.4.2 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxStyleRegistry -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxStylesheet.html b/java/docs/com/mxgraph/view/class-use/mxStylesheet.html index b63fa4dfa..7747dc9b4 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html b/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html index 468233756..bfc92e752 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 1.10.4.2 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxSwimlaneManager -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html b/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html index 9378bb7e0..404e9e009 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 1.10.4.2 API Specification) +Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 1.10.4.2 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxTemporaryCellStates -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxCellState.html b/java/docs/com/mxgraph/view/mxCellState.html index d70c3067b..f22344862 100644 --- a/java/docs/com/mxgraph/view/mxCellState.html +++ b/java/docs/com/mxgraph/view/mxCellState.html @@ -2,12 +2,12 @@ - + -mxCellState (mxGraph 1.10.4.2 API Specification) +mxCellState (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxCellState (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellState (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxCellState (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -1381,7 +1381,7 @@ public
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxConnectionConstraint.html b/java/docs/com/mxgraph/view/mxConnectionConstraint.html index f8c839f3e..a148cec1a 100644 --- a/java/docs/com/mxgraph/view/mxConnectionConstraint.html +++ b/java/docs/com/mxgraph/view/mxConnectionConstraint.html @@ -2,12 +2,12 @@ - + -mxConnectionConstraint (mxGraph 1.10.4.2 API Specification) +mxConnectionConstraint (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxConnectionConstraint (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectionConstraint (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxConnectionConstraint (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -383,7 +383,7 @@ public void setPerimeter(boolean value) -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxEdgeStyle.html b/java/docs/com/mxgraph/view/mxEdgeStyle.html index 99342c2e9..cabe6639c 100644 --- a/java/docs/com/mxgraph/view/mxEdgeStyle.html +++ b/java/docs/com/mxgraph/view/mxEdgeStyle.html @@ -2,12 +2,12 @@ - + -mxEdgeStyle (mxGraph 1.10.4.2 API Specification) +mxEdgeStyle (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeStyle (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeStyle (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxEdgeStyle (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -754,7 +754,7 @@ public mxEdgeStyle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html b/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html index 842f4ceb2..5d3a45ccd 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 1.10.4.2 API Specification) +mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -190,7 +190,7 @@ void apply(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -4080,7 +4080,7 @@ VERSION public static final
    String VERSION
    Holds the version number of this release. Current version - is 1.10.4.2. + is 1.10.4.3.

    See Also:
    Constant Field Values
    @@ -10263,7 +10263,7 @@ public static void main( -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html b/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html index 38b0ce05c..fcc12fbbf 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 1.10.4.2 API Specification) +mxGraph.mxICellVisitor (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraph.mxICellVisitor (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraph.mxICellVisitor (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraph.mxICellVisitor (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -170,7 +170,7 @@ boolean visit(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxGraphSelectionModel.html b/java/docs/com/mxgraph/view/mxGraphSelectionModel.html index b537d917c..746480df1 100644 --- a/java/docs/com/mxgraph/view/mxGraphSelectionModel.html +++ b/java/docs/com/mxgraph/view/mxGraphSelectionModel.html @@ -2,12 +2,12 @@ - + -mxGraphSelectionModel (mxGraph 1.10.4.2 API Specification) +mxGraphSelectionModel (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphSelectionModel (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphSelectionModel (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphSelectionModel (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -721,7 +721,7 @@ protected void cellRemoved(
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html b/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html index 9d56a7d54..9d655b595 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 1.10.4.2 API Specification) +mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxGraphView.html b/java/docs/com/mxgraph/view/mxGraphView.html index 2b5fa479f..7de7be779 100644 --- a/java/docs/com/mxgraph/view/mxGraphView.html +++ b/java/docs/com/mxgraph/view/mxGraphView.html @@ -2,12 +2,12 @@ - + -mxGraphView (mxGraph 1.10.4.2 API Specification) +mxGraphView (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphView (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphView (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphView (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -1716,7 +1716,7 @@ public
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html b/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html index 0687ff642..d31569ab8 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 1.10.4.2 API Specification) +mxGraphView.mxCurrentRootChange (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxGraphView.mxCurrentRootChange (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphView.mxCurrentRootChange (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxGraphView.mxCurrentRootChange (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxLayoutManager.html b/java/docs/com/mxgraph/view/mxLayoutManager.html index 838a169be..081e4727c 100644 --- a/java/docs/com/mxgraph/view/mxLayoutManager.html +++ b/java/docs/com/mxgraph/view/mxLayoutManager.html @@ -2,12 +2,12 @@ - + -mxLayoutManager (mxGraph 1.10.4.2 API Specification) +mxLayoutManager (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxLayoutManager (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLayoutManager (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxLayoutManager (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxMultiplicity.html b/java/docs/com/mxgraph/view/mxMultiplicity.html index bd8d5e279..1e851858a 100644 --- a/java/docs/com/mxgraph/view/mxMultiplicity.html +++ b/java/docs/com/mxgraph/view/mxMultiplicity.html @@ -2,12 +2,12 @@ - + -mxMultiplicity (mxGraph 1.10.4.2 API Specification) +mxMultiplicity (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxMultiplicity (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMultiplicity (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxMultiplicity (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -643,7 +643,7 @@ public int getMaxValue() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxPerimeter.html b/java/docs/com/mxgraph/view/mxPerimeter.html index 3eeb191ab..003f5c706 100644 --- a/java/docs/com/mxgraph/view/mxPerimeter.html +++ b/java/docs/com/mxgraph/view/mxPerimeter.html @@ -2,12 +2,12 @@ - + -mxPerimeter (mxGraph 1.10.4.2 API Specification) +mxPerimeter (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxPerimeter (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPerimeter (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxPerimeter (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -327,7 +327,7 @@ public mxPerimeter() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html b/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html index 7870669fa..190cf438f 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 1.10.4.2 API Specification) +mxPerimeter.mxPerimeterFunction (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxPerimeter.mxPerimeterFunction (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPerimeter.mxPerimeterFunction (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxPerimeter.mxPerimeterFunction (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -186,7 +186,7 @@ apply -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxSpaceManager.html b/java/docs/com/mxgraph/view/mxSpaceManager.html index e7fc0f61f..ac45b13a2 100644 --- a/java/docs/com/mxgraph/view/mxSpaceManager.html +++ b/java/docs/com/mxgraph/view/mxSpaceManager.html @@ -2,12 +2,12 @@ - + -mxSpaceManager (mxGraph 1.10.4.2 API Specification) +mxSpaceManager (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxSpaceManager (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpaceManager (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxSpaceManager (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxStyleRegistry.html b/java/docs/com/mxgraph/view/mxStyleRegistry.html index 8fc8846ae..799e42469 100644 --- a/java/docs/com/mxgraph/view/mxStyleRegistry.html +++ b/java/docs/com/mxgraph/view/mxStyleRegistry.html @@ -2,12 +2,12 @@ - + -mxStyleRegistry (mxGraph 1.10.4.2 API Specification) +mxStyleRegistry (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxStyleRegistry (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStyleRegistry (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxStyleRegistry (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -300,7 +300,7 @@ public static
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxStylesheet.html b/java/docs/com/mxgraph/view/mxStylesheet.html index 080808318..a2b9bc80e 100644 --- a/java/docs/com/mxgraph/view/mxStylesheet.html +++ b/java/docs/com/mxgraph/view/mxStylesheet.html @@ -2,12 +2,12 @@ - + -mxStylesheet (mxGraph 1.10.4.2 API Specification) +mxStylesheet (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxStylesheet (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStylesheet (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxStylesheet (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -487,7 +487,7 @@ public
    -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxSwimlaneManager.html b/java/docs/com/mxgraph/view/mxSwimlaneManager.html index 94feb4aaa..0be16d72e 100644 --- a/java/docs/com/mxgraph/view/mxSwimlaneManager.html +++ b/java/docs/com/mxgraph/view/mxSwimlaneManager.html @@ -2,12 +2,12 @@ - + -mxSwimlaneManager (mxGraph 1.10.4.2 API Specification) +mxSwimlaneManager (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxSwimlaneManager (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSwimlaneManager (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxSwimlaneManager (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/mxTemporaryCellStates.html b/java/docs/com/mxgraph/view/mxTemporaryCellStates.html index 9f9520217..3b4565158 100644 --- a/java/docs/com/mxgraph/view/mxTemporaryCellStates.html +++ b/java/docs/com/mxgraph/view/mxTemporaryCellStates.html @@ -2,12 +2,12 @@ - + -mxTemporaryCellStates (mxGraph 1.10.4.2 API Specification) +mxTemporaryCellStates (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ mxTemporaryCellStates (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxTemporaryCellStates (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="mxTemporaryCellStates (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/package-frame.html b/java/docs/com/mxgraph/view/package-frame.html index 8d0f2ebd9..e3b68905a 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 1.10.4.2 API Specification) +com.mxgraph.view (mxGraph 1.10.4.3 API Specification) - + diff --git a/java/docs/com/mxgraph/view/package-summary.html b/java/docs/com/mxgraph/view/package-summary.html index 7407b0d7c..68cc115bf 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 1.10.4.2 API Specification) +com.mxgraph.view (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.view (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.view (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.view (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -232,7 +232,7 @@ This package implements the graph component, represented by the mxGraph -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/package-tree.html b/java/docs/com/mxgraph/view/package-tree.html index 3eb3fcb8f..bc004d421 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 1.10.4.2 API Specification) +com.mxgraph.view Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.view Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.view Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="com.mxgraph.view Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -132,7 +132,7 @@ Interface Hierarchy -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/com/mxgraph/view/package-use.html b/java/docs/com/mxgraph/view/package-use.html index ca28a877a..f77616ee8 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 1.10.4.2 API Specification) +Uses of Package com.mxgraph.view (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.view (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.view (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.view (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

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

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/constant-values.html b/java/docs/constant-values.html index 4ba988a18..c2ee88248 100644 --- a/java/docs/constant-values.html +++ b/java/docs/constant-values.html @@ -2,12 +2,12 @@ - + -Constant Field Values (mxGraph 1.10.4.2 API Specification) +Constant Field Values (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Constant Field Values (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Constant Field Values (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Constant Field Values (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -1042,7 +1042,7 @@ com.mxgraph.*
    public static final String VERSION -"1.10.4.2" +"1.10.4.3" @@ -1075,7 +1075,7 @@ com.mxgraph.* -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/deprecated-list.html b/java/docs/deprecated-list.html index fad955f93..dc0a46ad8 100644 --- a/java/docs/deprecated-list.html +++ b/java/docs/deprecated-list.html @@ -2,12 +2,12 @@ - + -Deprecated List (mxGraph 1.10.4.2 API Specification) +Deprecated List (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Deprecated List (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Deprecated List (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Deprecated List (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -191,7 +191,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/help-doc.html b/java/docs/help-doc.html index 86bf09d41..6773b7fec 100644 --- a/java/docs/help-doc.html +++ b/java/docs/help-doc.html @@ -2,12 +2,12 @@ - + -API Help (mxGraph 1.10.4.2 API Specification) +API Help (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ API Help (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="API Help (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="API Help (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -188,7 +188,7 @@ This help file applies to API documentation generated using the standard doclet. -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/index-all.html b/java/docs/index-all.html index 4629e9777..3f36cefaa 100644 --- a/java/docs/index-all.html +++ b/java/docs/index-all.html @@ -2,12 +2,12 @@ - + -Index (mxGraph 1.10.4.2 API Specification) +Index (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Index (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Index (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Index (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -14931,7 +14931,7 @@ Method in class com.mxgraph.util.svg. -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/index.html b/java/docs/index.html index 2e4fc53ac..6e72ec23a 100644 --- a/java/docs/index.html +++ b/java/docs/index.html @@ -2,9 +2,9 @@ - + -mxGraph 1.10.4.2 API Specification +mxGraph 1.10.4.3 API Specification @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -81,7 +81,7 @@ function windowTitle()

    -mxGraph 1.10.4.2 API Specification +mxGraph 1.10.4.3 API Specification

    @@ -225,7 +225,7 @@ mxGraph 1.10.4.2 API Specification -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/overview-tree.html b/java/docs/overview-tree.html index ca260213c..65c6d8452 100644 --- a/java/docs/overview-tree.html +++ b/java/docs/overview-tree.html @@ -2,12 +2,12 @@ - + -Class Hierarchy (mxGraph 1.10.4.2 API Specification) +Class Hierarchy (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Class Hierarchy (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Class Hierarchy (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Class Hierarchy (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -286,7 +286,7 @@ Enum Hierarchy -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/docs/serialized-form.html b/java/docs/serialized-form.html index ca299135f..000e74229 100644 --- a/java/docs/serialized-form.html +++ b/java/docs/serialized-form.html @@ -2,12 +2,12 @@ - + -Serialized Form (mxGraph 1.10.4.2 API Specification) +Serialized Form (mxGraph 1.10.4.3 API Specification) - + @@ -15,7 +15,7 @@ Serialized Form (mxGraph 1.10.4.2 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Serialized Form (mxGraph 1.10.4.2 API Specification)"; + parent.document.title="Serialized Form (mxGraph 1.10.4.3 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    @@ -2548,7 +2548,7 @@ visibleTargetState -

    mxGraph 1.10.4.2

    +

    mxGraph 1.10.4.3

    diff --git a/java/lib/mxgraph-all.jar b/java/lib/mxgraph-all.jar index bca6a7663..7d060a330 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 1fb919e8d..44e1e6c5f 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 bd475b7d7..338f6dc03 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 98b70cf99..a89860f6b 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 1.10.4.2. + * is 1.10.4.3. */ - public static final String VERSION = "1.10.4.2"; + public static final String VERSION = "1.10.4.3"; /** * diff --git a/javascript/examples/editors/processeditor.html b/javascript/examples/editors/processeditor.html index df661a742..2f60503bf 100755 --- a/javascript/examples/editors/processeditor.html +++ b/javascript/examples/editors/processeditor.html @@ -34,7 +34,6 @@