diff --git a/ChangeLog b/ChangeLog index 69e462483..4182ed955 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +31-JUL-2012: 1.10.2.1 + +- Disables crisp SVG rendering for rotated shapes in mShape, mxActos, mxCylinder [JavaScript] +- Uses SHORT_DESCRIPTION from passed-in action in BasicGraphEditor.bind [Java] +- Makes mxGraphHandler.gridEnabledEvent protected [Java] +- Fixes repaint of mxCellHighlight after panning, zoom and model changes [JavaScript] +- Adds links for cells in grapheditor example [JavaScript] +- Fixes possible NPE in mxUtils.getSizeForString [Java] +- mxVertexHandler.createSizer does no longer set handle cursors in disabled graphs [JavaScript] +- mxSelectionCellsHandler.refreshHandler checks handler enabled instead of graph enabled [Java,JavaScript] +- Fixes position of rotated shapes in scaled image export [Dotnet,Java] + 20-JUL-2012: 1.10.2.0 - Adds mxUtils.readInputStream [Java] diff --git a/docs/js-api/files/handler/mxCellHighlight-js.html b/docs/js-api/files/handler/mxCellHighlight-js.html index f054b56fb..f346c925a 100644 --- a/docs/js-api/files/handler/mxCellHighlight-js.html +++ b/docs/js-api/files/handler/mxCellHighlight-js.html @@ -12,7 +12,7 @@ if (browserType) {document.write("
");if (browserV

mxCellHighlight

A helper class to highlight cells.  Here is an example for a given cell.

var highlight = new mxCellHighlight(graph, '#ff0000', 2);
-highlight.highlight(graph.view.getState(cell)));
Summary
mxCellHighlightA helper class to highlight cells.
Functions
mxCellHighlightConstructs a cell highlight.
Variables
keepOnTopSpecifies if the highlights should appear on top of everything else in the overlay pane.
graphReference to the enclosing mxGraph.
stateReference to the mxCellState.
spacingSpecifies the spacing between the highlight for vertices and the vertex.
resetHandlerHolds the handler that automatically invokes reset if the highlight should be hidden.
Functions
setHighlightColorSets the color of the rectangle used to highlight drop targets.
drawHighlightCreates and returns the highlight shape for the given state.
createShapeCreates and returns the highlight shape for the given state.
hideResets the state of the cell marker.
markMarks the <markedState> and fires a mark event.
destroyDestroys the handler and all its resources and DOM nodes.
+highlight.highlight(graph.view.getState(cell)));
Summary
mxCellHighlightA helper class to highlight cells.
Functions
mxCellHighlightConstructs a cell highlight.
Variables
keepOnTopSpecifies if the highlights should appear on top of everything else in the overlay pane.
graphReference to the enclosing mxGraph.
stateReference to the mxCellState.
spacingSpecifies the spacing between the highlight for vertices and the vertex.
resetHandlerHolds the handler that automatically invokes reset if the highlight should be hidden.
Functions
setHighlightColorSets the color of the rectangle used to highlight drop targets.
drawHighlightCreates and returns the highlight shape for the given state.
createShapeCreates and returns the highlight shape for the given state.
repaintUpdates the highlight after a change of the model or view.
hideResets the state of the cell marker.
markMarks the <markedState> and fires a mark event.
destroyDestroys the handler and all its resources and DOM nodes.

Functions

@@ -22,9 +22,9 @@ highlight.highlight(graph.view.getState(cell))); -
function mxCellHighlight(graph,
highlightColor,
strokeWidth)
Constructs a cell highlight.
mxCellHighlight.prototype.keepOnTop
Specifies if the highlights should appear on top of everything else in the overlay pane.
mxCellHighlight.prototype.graph
Reference to the enclosing mxGraph.
Extends mxEventSource to implement a graph component for the browser.
mxCellHighlight.prototype.state
Reference to the mxCellState.
Represents the current state of a cell in a given mxGraphView.
mxCellHighlight.prototype.spacing
Specifies the spacing between the highlight for vertices and the vertex.
mxCellHighlight.prototype.resetHandler
Holds the handler that automatically invokes reset if the highlight should be hidden.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxCellHighlight.prototype.drawHighlight = function(state)
Creates and returns the highlight shape for the given state.
mxCellHighlight.prototype.createShape = function(state)
Creates and returns the highlight shape for the given state.
mxCellHighlight.prototype.hide = function()
Resets the state of the cell marker.
Marks the markedState and fires a mark event.
mxCellHighlight.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
+
function mxCellHighlight(graph,
highlightColor,
strokeWidth)
Constructs a cell highlight.
mxCellHighlight.prototype.keepOnTop
Specifies if the highlights should appear on top of everything else in the overlay pane.
mxCellHighlight.prototype.graph
Reference to the enclosing mxGraph.
Extends mxEventSource to implement a graph component for the browser.
mxCellHighlight.prototype.state
Reference to the mxCellState.
Represents the current state of a cell in a given mxGraphView.
mxCellHighlight.prototype.spacing
Specifies the spacing between the highlight for vertices and the vertex.
mxCellHighlight.prototype.resetHandler
Holds the handler that automatically invokes reset if the highlight should be hidden.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxCellHighlight.prototype.drawHighlight = function()
Creates and returns the highlight shape for the given state.
mxCellHighlight.prototype.createShape = function()
Creates and returns the highlight shape for the given state.
mxCellHighlight.prototype.repaint = function()
Updates the highlight after a change of the model or view.
mxCellHighlight.prototype.hide = function()
Resets the state of the cell marker.
Marks the markedState and fires a mark event.
mxCellHighlight.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
diff --git a/docs/js-api/files/mxClient-js.html b/docs/js-api/files/mxClient-js.html index a413319dc..75b48219a 100644 --- a/docs/js-api/files/mxClient-js.html +++ b/docs/js-api/files/mxClient-js.html @@ -15,7 +15,7 @@ if (browserType) {document.write("
");if (browserV

Variables

-

VERSION

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

versionMajor.versionMinor.buildNumber.revisionNumber

Current version is 1.10.2.0.

+

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

IS_IE

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

True if the current browser is Internet Explorer.

diff --git a/docs/js-api/index/Functions13.html b/docs/js-api/index/Functions13.html index dc16150a4..9d9735123 100644 --- a/docs/js-api/index/Functions13.html +++ b/docs/js-api/index/Functions13.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 rankCoordinates, mxCoordinateAssignment
 rankMedianPosition, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 reconfigure
 rect
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 redirectMouseEvents, mxEvent
 redo
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawForeignObject, mxText
 redrawHtml
 redrawHtmlTable, mxText
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawMarker, mxConnector
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxStencilShape
 redrawSvg
 redrawSvgTextNodes, mxText
 redrawTextbox, mxText
 redrawVml
 reduceTemperature, mxFastOrganicLayout
 reference, mxCodec
 refresh
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgClip, mxText
 remove
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent, mxGraph
 removeCursors, mxUtils
 removeEdge, mxCell
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderDom, mxStencil
 renderPage, mxPrintPreview
 repaint, mxRubberband
 repaintGraph, mxUtils
 reparseVml, mxShape
 repositionValid, mxCoordinateAssignment
 reset
 resetEdge, mxGraph
 resetEdges, mxGraph
 resetFirstTime, mxEditor
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resize, mxDivResizer
 resizeCell
 resizeCells, mxGraph
 resizeHeight, mxDivResizer
 resizeSwimlane, mxSwimlaneManager
 resizeWidth, mxDivResizer
 resolve, mxCellPath
 resolveColor, mxCellRenderer
 restore
 restoreClone, mxGraphModel
 resume, mxSession
 revalidate, mxGraphView
 revalidateState, mxCellStatePreview
 reversePortConstraints, mxUtils
 RhombusPerimeter, mxPerimeter
 rootChanged, mxGraphModel
 rotate
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run, mxHierarchicalLayout
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 rankCoordinates, mxCoordinateAssignment
 rankMedianPosition, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 reconfigure
 rect
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 redirectMouseEvents, mxEvent
 redo
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawForeignObject, mxText
 redrawHtml
 redrawHtmlTable, mxText
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawMarker, mxConnector
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxStencilShape
 redrawSvg
 redrawSvgTextNodes, mxText
 redrawTextbox, mxText
 redrawVml
 reduceTemperature, mxFastOrganicLayout
 reference, mxCodec
 refresh
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgClip, mxText
 remove
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent, mxGraph
 removeCursors, mxUtils
 removeEdge, mxCell
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderDom, mxStencil
 renderPage, mxPrintPreview
 repaint
 repaintGraph, mxUtils
 reparseVml, mxShape
 repositionValid, mxCoordinateAssignment
 reset
 resetEdge, mxGraph
 resetEdges, mxGraph
 resetFirstTime, mxEditor
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resize, mxDivResizer
 resizeCell
 resizeCells, mxGraph
 resizeHeight, mxDivResizer
 resizeSwimlane, mxSwimlaneManager
 resizeWidth, mxDivResizer
 resolve, mxCellPath
 resolveColor, mxCellRenderer
 restore
 restoreClone, mxGraphModel
 resume, mxSession
 revalidate, mxGraphView
 revalidateState, mxCellStatePreview
 reversePortConstraints, mxUtils
 RhombusPerimeter, mxPerimeter
 rootChanged, mxGraphModel
 rotate
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run, mxHierarchicalLayout
-
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
mxArrow.prototype.reconfigure = function()
Extends mxActor.reconfigure to ignore fill if enableFill is false.
mxCylinder.prototype.reconfigure = function()
Overrides the method to make sure the stroke is applied to the foreground.
mxLabel.prototype.reconfigure = function()
Reconfigures this shape.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSwimlane.prototype.reconfigure = function(node)
Overrides to avoid filled content area in HTML and updates the shadow in SVG.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redraw = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Overrides redraw to define a unified implementation for redrawing all supported dialects.
mxShape.prototype.redraw = function()
Invokes redrawSvg, redrawVml or redrawHtml depending on the dialect of the shape.
mxStencilShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state)
Redraws the control for the given cell state.
mxText.prototype.redrawForeignObject = function()
Redraws the foreign object for this text.
mxRhombus.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawHtml = function()
Redraws this HTML shape by invoking updateHtmlShape on this.node.
mxSwimlane.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtmlTable = function()
Redraws the HTML table.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state)
Redraws the label for the given cell state.
mxConnector.prototype.redrawMarker = function(node,
type,
p0,
pe,
color,
size)
Updates the given SVG or VML marker.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxArrow.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(path,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxStencilShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxActor.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxArrow.prototype.redrawSvg = function()
Extends mxActor.redrawSvg to update the event handling shape if one exists.
mxConnector.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxCylinder.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxImageShape.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxLine.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxPolyline.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxRhombus.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawSvg = function()
Redraws this SVG shape by invoking updateSvgShape on this.node, this.innerNode and this.shadowNode.
mxSwimlane.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvgTextNodes = function(x,
y,
dy)
Hook to update the position of the SVG text nodes.
mxText.prototype.redrawTextbox = function()
Redraws the textbox for this text.
mxActor.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxCylinder.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxPolyline.prototype.redrawVml = function()
Overrides the method to update the bounds if they have not been assigned.
mxRhombus.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawVml = function()
Redraws this VML shape by invoking updateVmlShape on this.node.
mxSwimlane.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.prototype.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxText.prototype.releaseSvgClip = function()
Releases the given SVG clip removing it from the DOM if required.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxStencil.prototype.renderDom = function(shape,
bounds,
parentNode,
state)
Updates the SVG or VML shape.
mxPrintPreview.prototype.renderPage = function(w,
h,
dx,
dy,
scale,
pageNumber)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
repaintGraph: function(graph,
pt)
Normally not required, this contains the code to workaround a repaint issue and force a repaint of the graph container in AppleWebKit.
mxShape.prototype.reparseVml = function()
Forces a parsing of the outerHTML of this node and restores all references specified in vmlNodes.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
mxGraph.prototype.resizeCell = function(cell,
bounds)
Sets the bounds of the given cell using resizeCells.
mxVertexHandler.prototype.resizeCell = function(cell,
dx,
dy,
index,
gridEnabled)
Uses the given vector to change the bounds of the given cell in the graph using mxGraph.resizeCell.
mxGraph.prototype.resizeCells = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
Boolean specifying if the height should be updated.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
restore: function()
Restores the state of the graphics object.
restore: function()
Restores the state of the graphics object.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
+
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
mxArrow.prototype.reconfigure = function()
Extends mxActor.reconfigure to ignore fill if enableFill is false.
mxCylinder.prototype.reconfigure = function()
Overrides the method to make sure the stroke is applied to the foreground.
mxLabel.prototype.reconfigure = function()
Reconfigures this shape.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSwimlane.prototype.reconfigure = function(node)
Overrides to avoid filled content area in HTML and updates the shadow in SVG.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redraw = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Overrides redraw to define a unified implementation for redrawing all supported dialects.
mxShape.prototype.redraw = function()
Invokes redrawSvg, redrawVml or redrawHtml depending on the dialect of the shape.
mxStencilShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state)
Redraws the control for the given cell state.
mxText.prototype.redrawForeignObject = function()
Redraws the foreign object for this text.
mxRhombus.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawHtml = function()
Redraws this HTML shape by invoking updateHtmlShape on this.node.
mxSwimlane.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtmlTable = function()
Redraws the HTML table.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state)
Redraws the label for the given cell state.
mxConnector.prototype.redrawMarker = function(node,
type,
p0,
pe,
color,
size)
Updates the given SVG or VML marker.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxArrow.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(path,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxStencilShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxActor.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxArrow.prototype.redrawSvg = function()
Extends mxActor.redrawSvg to update the event handling shape if one exists.
mxConnector.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxCylinder.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxImageShape.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxLine.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxPolyline.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxRhombus.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawSvg = function()
Redraws this SVG shape by invoking updateSvgShape on this.node, this.innerNode and this.shadowNode.
mxSwimlane.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvgTextNodes = function(x,
y,
dy)
Hook to update the position of the SVG text nodes.
mxText.prototype.redrawTextbox = function()
Redraws the textbox for this text.
mxActor.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxCylinder.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxPolyline.prototype.redrawVml = function()
Overrides the method to update the bounds if they have not been assigned.
mxRhombus.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawVml = function()
Redraws this VML shape by invoking updateVmlShape on this.node.
mxSwimlane.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.prototype.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxText.prototype.releaseSvgClip = function()
Releases the given SVG clip removing it from the DOM if required.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxStencil.prototype.renderDom = function(shape,
bounds,
parentNode,
state)
Updates the SVG or VML shape.
mxPrintPreview.prototype.renderPage = function(w,
h,
dx,
dy,
scale,
pageNumber)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxCellHighlight.prototype.repaint = function()
Updates the highlight after a change of the model or view.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
repaintGraph: function(graph,
pt)
Normally not required, this contains the code to workaround a repaint issue and force a repaint of the graph container in AppleWebKit.
mxShape.prototype.reparseVml = function()
Forces a parsing of the outerHTML of this node and restores all references specified in vmlNodes.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
mxGraph.prototype.resizeCell = function(cell,
bounds)
Sets the bounds of the given cell using resizeCells.
mxVertexHandler.prototype.resizeCell = function(cell,
dx,
dy,
index,
gridEnabled)
Uses the given vector to change the bounds of the given cell in the graph using mxGraph.resizeCell.
mxGraph.prototype.resizeCells = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
Boolean specifying if the height should be updated.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
restore: function()
Restores the state of the graphics object.
restore: function()
Restores the state of the graphics object.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
diff --git a/docs/js-api/index/Functions14.html b/docs/js-api/index/Functions14.html index d3ea6af34..aedfc234d 100644 --- a/docs/js-api/index/Functions14.html +++ b/docs/js-api/index/Functions14.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 save
 saveAs, mxUtils
 scale
 scaleAndTranslate, mxGraphView
 scheduleUpdateAspect, mxImageShape
 scrollCellToVisible, mxGraph
 scrollPointToVisible, mxGraph
 scrollRectToVisible, mxGraph
 SegmentConnector, mxEdgeStyle
 selectAll, mxGraph
 selectCell, mxGraph
 selectCellForEvent, mxGraph
 selectCells
 selectCellsForEvent, mxGraph
 selectChildCell, mxGraph
 selectDelayed, mxGraphHandler
 selectMode, mxToolbar
 selectNextCell, mxGraph
 selectParentCell, mxGraph
 selectPreviousCell, mxGraph
 selectRegion, mxGraph
 selectVertices, mxGraph
 send, mxXmlRequest
 setAbsoluteTerminalPoint, mxCellState
 setAddEnabled, mxSwimlaneManager
 setAllowDanglingEdges, mxGraph
 setAllowEval, mxGraphView
 setAllowLoops, mxGraph
 setAlpha
 setAttribute
 setAutoAntiAlias, mxSvgCanvas2D
 setAutoSizeCells, mxGraph
 setBackgroundImage, mxGraph
 setBaseUrl, mxUrlConverter
 setBinary, mxXmlRequest
 setBorder, mxGraph
 setBubbling, mxLayoutManager
 setCell, mxGraphSelectionModel
 setCellLocations, mxCoordinateAssignment
 setCells, mxGraphSelectionModel
 setCellsBendable, mxGraph
 setCellsCloneable, mxGraph
 setCellsDeletable, mxGraph
 setCellsDisconnectable, mxGraph
 setCellsEditable, mxGraph
 setCellsMovable, mxGraph
 setCellsResizable, mxGraph
 setCellsSelectable, mxGraph
 setCellStyle, mxGraph
 setCellStyleFlags
 setCellStyles
 setCellWarning, mxGraph
 setCloneEnabled, mxGraphHandler
 setCloneInvalidEdges, mxGraph
 setClosable, mxWindow
 setCollapsed
 setCompressed, mxXmlCanvas2D
 setConnectable
 setConnectableEdges, mxGraph
 setConnectionConstraint, mxGraph
 setConstrainChildren, mxGraph
 setCreateIds, mxGraphModel
 setCreateTarget, mxConnectionHandler
 setCurrentRoot, mxGraphView
 setCursor
 setDashed
 setDashPattern
 setDefaultParent, mxGraph
 setDisconnectOnMove, mxGraph
 setDropEnabled, mxGraph
 setEdge, mxCell
 setEdgePoints, mxGraphLayout
 setEdgePosition, mxCoordinateAssignment
 setEdgeStyleEnabled, mxGraphLayout
 setEnabled
 setEnterStopsCellEditing, mxGraph
 setEscapeEnabled, mxGraph
 setEventsEnabled, mxEventSource
 setEventSource, mxEventSource
 setExtendParents, mxGraph
 setExtendParentsOnAdd, mxGraph
 setFillColor
 setFoEnabled, mxSvgCanvas2D
 setFontColor
 setFontFamily
 setFontSize
 setFontStyle
 setGeneralPurposeVariable
 setGeometry
 setGlassGradient
 setGradient
 setGraph
 setGraphBounds, mxGraphView
 setGraphContainer, mxEditor
 setGridEnabled
 setGridSize, mxGraph
 setGuidesEnabled, mxDragSource
 setHideOnHover, mxTooltipHandler
 setHighlightColor
 setHorizontal, mxSwimlaneManager
 setHotspot, mxCellMarker
 setHotspotEnabled, mxCellMarker
 setHtmlLabels, mxGraph
 setId, mxCell
 setImage, mxWindow
 setInvokesStopCellEditing, mxGraph
 setLineCap
 setLineJoin
 setLocation, mxWindow
 setLocked, mxGraph
 setMaximizable, mxWindow
 setMinimizable, mxWindow
 setMiterLimit
 setMode, mxEditor
 setModified
 setMoveEnabled, mxGraphHandler
 setMultigraph, mxGraph
 setOpacity, mxUtils
 setOrthogonalEdge, mxGraphLayout
 setPanning, mxGraph
 setPanningEnabled, mxPanningHandler
 setParent, mxCell
 setPortsEnabled, mxGraph
 setPreviewColor, mxEdgeHandler
 setRect, mxRectangle
 setRemoveCellsFromParent, mxGraphHandler
 setRendering, mxGraphView
 setRequestHeaders, mxXmlRequest
 setResizable, mxWindow
 setResizeContainer, mxGraph
 setResizeEnabled, mxSwimlaneManager
 setRoot, mxGraphModel
 setScale, mxGraphView
 setScrollable, mxWindow
 setSelectEnabled, mxGraphHandler
 setSelectionCell, mxGraph
 setSelectionCells, mxGraph
 setSelectionModel, mxGraph
 setShiftDownwards, mxSpaceManager
 setShiftRightwards, mxSpaceManager
 setSingleSelection, mxGraphSelectionModel
 setSize, mxWindow
 setSplitEnabled, mxGraph
 setStates
 setStatus, mxEditor
 setStatusContainer, mxEditor
 setStrokeColor
 setStrokeWidth
 setStyle
 setStyleFlag, mxUtils
 setStylesheet, mxGraph
 setSwimlaneNesting, mxGraph
 setSwimlaneSelectionEnabled, mxGraph
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTextEnabled
 setTitle, mxWindow
 setTitleContainer, mxEditor
 setTolerance, mxGraph
 setToolbarContainer, mxEditor
 setTooltips, mxGraph
 setTranslate
 setValue
 setVertex, mxCell
 setVertexLabelsMovable, mxGraph
 setVertexLocation
 setVisible
 setVisibleTerminalState, mxCellState
 setX, mxGraphAbstractHierarchyCell
 setY, mxGraphAbstractHierarchyCell
 setZoomEnabled, mxOutline
 shadow
 shiftCell, mxSpaceManager
 shouldRemoveCellsFromParent, mxGraphHandler
 show
 showHelp, mxEditor
 showMenu, mxPopupMenu
 showOutline, mxEditor
 showProperties, mxEditor
 showSubmenu, mxPopupMenu
 showTasks, mxEditor
 SideToSide, mxEdgeStyle
 simulate, mxXmlRequest
 sizeDidChange, mxGraph
 snap
 sortCells, mxUtils
 source, mxOutline
 splitEdge, mxGraph
 start
 startAnimation, mxAnimation
 startDrag, mxDragSource
 startEditing
 startEditingAtCell, mxGraph
 stop, mxSession
 stopAnimation, mxAnimation
 stopDrag, mxDragSource
 stopEditing
 stopRecursion, mxMorphing
 stroke
 styleForCellChanged, mxGraphModel
 styles, mxStylesheet
 submit, mxUtils
 suspend, mxSession
 swap, mxGeometry
 swapBounds, mxGraph
 swapStyles, mxEditor
 swimlaneAdded, mxSwimlaneManager
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 save
 saveAs, mxUtils
 scale
 scaleAndTranslate, mxGraphView
 scheduleUpdateAspect, mxImageShape
 scrollCellToVisible, mxGraph
 scrollPointToVisible, mxGraph
 scrollRectToVisible, mxGraph
 SegmentConnector, mxEdgeStyle
 selectAll, mxGraph
 selectCell, mxGraph
 selectCellForEvent, mxGraph
 selectCells
 selectCellsForEvent, mxGraph
 selectChildCell, mxGraph
 selectDelayed, mxGraphHandler
 selectMode, mxToolbar
 selectNextCell, mxGraph
 selectParentCell, mxGraph
 selectPreviousCell, mxGraph
 selectRegion, mxGraph
 selectVertices, mxGraph
 send, mxXmlRequest
 setAbsoluteTerminalPoint, mxCellState
 setAddEnabled, mxSwimlaneManager
 setAllowDanglingEdges, mxGraph
 setAllowEval, mxGraphView
 setAllowLoops, mxGraph
 setAlpha
 setAttribute
 setAutoAntiAlias, mxSvgCanvas2D
 setAutoSizeCells, mxGraph
 setBackgroundImage, mxGraph
 setBaseUrl, mxUrlConverter
 setBinary, mxXmlRequest
 setBorder, mxGraph
 setBubbling, mxLayoutManager
 setCell, mxGraphSelectionModel
 setCellLocations, mxCoordinateAssignment
 setCells, mxGraphSelectionModel
 setCellsBendable, mxGraph
 setCellsCloneable, mxGraph
 setCellsDeletable, mxGraph
 setCellsDisconnectable, mxGraph
 setCellsEditable, mxGraph
 setCellsMovable, mxGraph
 setCellsResizable, mxGraph
 setCellsSelectable, mxGraph
 setCellStyle, mxGraph
 setCellStyleFlags
 setCellStyles
 setCellWarning, mxGraph
 setCloneEnabled, mxGraphHandler
 setCloneInvalidEdges, mxGraph
 setClosable, mxWindow
 setCollapsed
 setCompressed, mxXmlCanvas2D
 setConnectable
 setConnectableEdges, mxGraph
 setConnectionConstraint, mxGraph
 setConstrainChildren, mxGraph
 setCreateIds, mxGraphModel
 setCreateTarget, mxConnectionHandler
 setCurrentRoot, mxGraphView
 setCursor
 setDashed
 setDashPattern
 setDefaultParent, mxGraph
 setDisconnectOnMove, mxGraph
 setDropEnabled, mxGraph
 setEdge, mxCell
 setEdgePoints, mxGraphLayout
 setEdgePosition, mxCoordinateAssignment
 setEdgeStyleEnabled, mxGraphLayout
 setEnabled
 setEnterStopsCellEditing, mxGraph
 setEscapeEnabled, mxGraph
 setEventsEnabled, mxEventSource
 setEventSource, mxEventSource
 setExtendParents, mxGraph
 setExtendParentsOnAdd, mxGraph
 setFillColor
 setFoEnabled, mxSvgCanvas2D
 setFontColor
 setFontFamily
 setFontSize
 setFontStyle
 setGeneralPurposeVariable
 setGeometry
 setGlassGradient
 setGradient
 setGraph
 setGraphBounds, mxGraphView
 setGraphContainer, mxEditor
 setGridEnabled
 setGridSize, mxGraph
 setGuidesEnabled, mxDragSource
 setHideOnHover, mxTooltipHandler
 setHighlightColor
 setHorizontal, mxSwimlaneManager
 setHotspot, mxCellMarker
 setHotspotEnabled, mxCellMarker
 setHtmlLabels, mxGraph
 setId, mxCell
 setImage, mxWindow
 setInvokesStopCellEditing, mxGraph
 setLineCap
 setLineJoin
 setLocation, mxWindow
 setLocked, mxGraph
 setMaximizable, mxWindow
 setMinimizable, mxWindow
 setMiterLimit
 setMode, mxEditor
 setModified
 setMoveEnabled, mxGraphHandler
 setMultigraph, mxGraph
 setOpacity, mxUtils
 setOrthogonalEdge, mxGraphLayout
 setPanning, mxGraph
 setPanningEnabled, mxPanningHandler
 setParent, mxCell
 setPortsEnabled, mxGraph
 setPreviewColor, mxEdgeHandler
 setRect, mxRectangle
 setRemoveCellsFromParent, mxGraphHandler
 setRendering, mxGraphView
 setRequestHeaders, mxXmlRequest
 setResizable, mxWindow
 setResizeContainer, mxGraph
 setResizeEnabled, mxSwimlaneManager
 setRoot, mxGraphModel
 setScale, mxGraphView
 setScrollable, mxWindow
 setSelectEnabled, mxGraphHandler
 setSelectionCell, mxGraph
 setSelectionCells, mxGraph
 setSelectionModel, mxGraph
 setShiftDownwards, mxSpaceManager
 setShiftRightwards, mxSpaceManager
 setSingleSelection, mxGraphSelectionModel
 setSize, mxWindow
 setSplitEnabled, mxGraph
 setStates
 setStatus, mxEditor
 setStatusContainer, mxEditor
 setStrokeColor
 setStrokeWidth
 setStyle
 setStyleFlag, mxUtils
 setStylesheet, mxGraph
 setSwimlaneNesting, mxGraph
 setSwimlaneSelectionEnabled, mxGraph
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTextEnabled
 setTitle, mxWindow
 setTitleContainer, mxEditor
 setTolerance, mxGraph
 setToolbarContainer, mxEditor
 setTooltips, mxGraph
 setTranslate
 setValue
 setVertex, mxCell
 setVertexLabelsMovable, mxGraph
 setVertexLocation
 setVisible
 setVisibleTerminalState, mxCellState
 setX, mxGraphAbstractHierarchyCell
 setY, mxGraphAbstractHierarchyCell
 setZoomEnabled, mxOutline
 shadow
 shiftCell, mxSpaceManager
 shouldRemoveCellsFromParent, mxGraphHandler
 show
 showHelp, mxEditor
 showMenu, mxPopupMenu
 showOutline, mxEditor
 showProperties, mxEditor
 showSubmenu, mxPopupMenu
 showTasks, mxEditor
 SideToSide, mxEdgeStyle
 simulate, mxXmlRequest
 sizeDidChange, mxGraph
 snap
 sortCells, mxUtils
 source, mxOutline
 splitEdge, mxGraph
 start
 startAnimation, mxAnimation
 startDrag, mxDragSource
 startEditing
 startEditingAtCell, mxGraph
 stop, mxSession
 stopAnimation, mxAnimation
 stopDrag, mxDragSource
 stopEditing
 stopRecursion, mxMorphing
 stroke
 styleForCellChanged, mxGraphModel
 styles, mxStylesheet
 submit, mxUtils
 suspend, mxSession
 swap, mxGeometry
 swapBounds, mxGraph
 swapStyles, mxEditor
 swimlaneAdded, mxSwimlaneManager
-
mxAutoSaveManager.prototype.save = function()
Empty hook that is called if the graph should be saved.
mxEditor.prototype.save = function (url,
linefeed)
Posts the string returned by writeGraphModel to the given URL or the URL returned by getUrlPost.
save: function()
Saves the state of the graphics object.
save: function(filename,
content)
Saves the specified content in the given file on the local file system.
save: function()
Saves the state of the graphics object.
saveAs: function(content)
Saves the specified content by displaying a dialog to save the content as a file on the local filesystem.
scale: function(value)
Scales the current graphics object.
scale: function(value)
Scales the current graphics object.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxImageShape.prototype.scheduleUpdateAspect = function()
Schedules an asynchronous updateAspect using the current image.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
SegmentConnector: function(state,
source,
target,
hints,
result)
Implements an orthogonal edge style.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxConnectionHandler.prototype.selectCells = function(edge,
target)
Selects the given edge after adding a new connection.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraphHandler.prototype.selectDelayed = function(me)
Implements the delayed selection for the given mouse event.
mxToolbar.prototype.selectMode = function(domNode,
funct)
Resets the state of the previously selected mode and displays the given DOM node as selected.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxXmlRequest.prototype.send = function(onload,
onerror)
Send the request to the target URL using the specified functions to process the response asychronously.
mxCellState.prototype.setAbsoluteTerminalPoint = function (point,
isSource)
Sets the first or last point in absolutePoints depending on isSource.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
setAlpha: function(alpha)
Sets the current alpha.
setAlpha: function(alpha)
Sets the current alpha.
mxCell.prototype.setAttribute = function(name,
value)
Sets the specified attribute on the user object if it is an XML node.
mxCodec.prototype.setAttribute = function(node,
attribute,
value)
Sets the attribute on the specified node to value.
setAutoAntiAlias: function(value)
Sets autoAntiAlias.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
setBaseUrl: function(value)
Sets baseUrl.
mxXmlRequest.prototype.setBinary = function(value)
Sets binary.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxLayoutManager.prototype.setBubbling = function(value)
Sets bubbling.
mxGraphSelectionModel.prototype.setCell = function(cell)
Selects the specified mxCell using setCells.
mxCoordinateAssignment.prototype.setCellLocations = function(graph,
model)
Sets the cell locations in the facade to those stored after this layout processing step has completed.
mxGraphSelectionModel.prototype.setCells = function(cells)
Selects the given array of mxCells and fires a change event.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlags: function(model,
cells,
key,
flag,
value)
Sets or toggles the flag bit for the given key in the cell’s styles.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
setCellStyles: function(model,
cells,
key,
value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraphHandler.prototype.setCloneEnabled = function(value)
Sets cloneEnabled.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxWindow.prototype.setClosable = function(closable)
Sets the image associated with the window.
mxCell.prototype.setCollapsed = function(collapsed)
Sets the collapsed state.
mxGraphModel.prototype.setCollapsed = function(cell,
collapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
setCompressed: function(value)
Sets compressed.
mxCell.prototype.setConnectable = function(connectable)
Sets the connectable state.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraphModel.prototype.setCreateIds = function(value)
Sets createIds.
mxConnectionHandler.prototype.setCreateTarget = function(value)
Sets createTarget.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxCellState.prototype.setCursor = function (cursor)
Sets the given cursor on the shape and text shape.
mxShape.prototype.setCursor = function(cursor)
Sets the cursor on the given shape.
setDashed: function(value)
Sets the dashed state to true or false.
setDashed: function(value)
Sets the dashed state to true or false.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxCell.prototype.setEdge = function(edge)
Specifies if the cell is an edge.
mxGraphLayout.prototype.setEdgePoints = function(edge,
points)
Replaces the array of mxPoints in the geometry of the given edge with the given array of mxPoints.
mxCoordinateAssignment.prototype.setEdgePosition = function(cell)
Fixes the control points
mxGraphLayout.prototype.setEdgeStyleEnabled = function(edge,
value)
Disables or enables the edge style of the given edge.
mxAutoSaveManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxCellMarker.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConnectionHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConstraintHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxDragSource.prototype.setEnabled = function(value)
Sets enabled.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraphHandler.prototype.setEnabled = function(value)
Sets enabled.
mxKeyHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling by updating enabled.
mxLayoutManager.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxOutline.prototype.setEnabled = function(value)
Enables or disables event handling.
mxPopupMenu.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxRubberband.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxSelectionCellsHandler.prototype.setEnabled = function(value)
Sets enabled.
mxSpaceManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxTooltipHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
setEnabled: function(value)
Sets enabled.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxEventSource.prototype.setEventsEnabled = function(value)
Sets eventsEnabled.
mxEventSource.prototype.setEventSource = function(value)
Sets eventSource.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
setFillColor: function(value)
Sets the fillcolor.
setFillColor: function(value)
Sets the fillcolor.
setFoEnabled: function(value)
Sets foEnabled.
setFontColor: function(value)
Sets the fontcolor.
setFontColor: function(value)
Sets the fontcolor.
setFontFamily: function(value)
Sets the fontfamily.
setFontFamily: function(value)
Sets the fontfamily.
setFontSize: function(value)
Sets the fontsize.
setFontSize: function(value)
Sets the fontsize.
setFontStyle: function(value)
Sets the fontstyle.
setFontStyle: function(value)
Sets the fontstyle.
mxGraphAbstractHierarchyCell.prototype.setGeneralPurposeVariable = function(
   layer,
   value
)
Set the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxGraphHierarchyNode.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxCell.prototype.setGeometry = function(geometry)
Sets the mxGeometry to be used as the geometry.
mxGraphModel.prototype.setGeometry = function(cell,
geometry)
Sets the mxGeometry of the given mxCell.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
mxAutoSaveManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxLayoutManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSpaceManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxEditor.prototype.setGraphContainer = function (container)
Sets the graph’s container using mxGraph.init.
mxDragSource.prototype.setGridEnabled = function(value)
Sets gridEnabled.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxDragSource.prototype.setGuidesEnabled = function(value)
Sets guidesEnabled.
mxTooltipHandler.prototype.setHideOnHover = function(value)
Sets hideOnHover.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxGraphHandler.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxCellMarker.prototype.setHotspot = function(hotspot)
Sets the hotspot.
mxCellMarker.prototype.setHotspotEnabled = function(enabled)
Specifies whether the hotspot should be used in intersects.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxCell.prototype.setId = function(id)
Sets the Id of the cell to the given string.
mxWindow.prototype.setImage = function(image)
Sets the image associated with the window.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
setLineCap: function(value)
Sets the linecap.
setLineCap: function(value)
Sets the linecap.
setLineJoin: function(value)
Sets the linejoin.
setLineJoin: function(value)
Sets the linejoin.
mxWindow.prototype.setLocation = function(x,
y)
Sets the upper, left corner of the window.
Sets if any cell may be moved, sized, bended, disconnected, edited or selected.
mxWindow.prototype.setMaximizable = function(maximizable)
Sets if the window is maximizable.
mxWindow.prototype.setMinimizable = function(minimizable)
Sets if the window is minimizable.
setMiterLimit: function(value)
Sets the miterlimit.
setMiterLimit: function(value)
Sets the miterlimit.
mxEditor.prototype.setMode = function(modename)
Puts the graph into the specified mode.
mxCellEditor.prototype.setModified = function(value)
Sets modified to the specified boolean value.
mxEditor.prototype.setModified = function (value)
Sets modified to the specified boolean value.
mxGraphHandler.prototype.setMoveEnabled = function(value)
Sets moveEnabled.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
setOpacity: function(node,
value)
Sets the opacity of the specified DOM node to the given value in %.
mxGraphLayout.prototype.setOrthogonalEdge = function(edge,
value)
Disables or enables orthogonal end segments of the given edge.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxCell.prototype.setParent = function(parent)
Sets the parent cell.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
mxEdgeHandler.prototype.setPreviewColor = function(color)
Sets the color of the preview to the given value.
mxRectangle.prototype.setRect = function(x,
y,
w,
h)
Sets this rectangle to the specified values
mxGraphHandler.prototype.setRemoveCellsFromParent = function(value)
Sets removeCellsFromParent.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxXmlRequest.prototype.setRequestHeaders = function(request,
params)
Sets the headers for the given request and parameters.
mxWindow.prototype.setResizable = function(resizable)
Sets if the window should be resizable.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxGraphModel.prototype.setRoot = function(root)
Sets the root of the model using mxRootChange and adds the change to the current transaction.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxWindow.prototype.setScrollable = function(scrollable)
Sets if the window contents should be scrollable.
mxGraphHandler.prototype.setSelectEnabled = function(value)
Sets selectEnabled.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxSpaceManager.prototype.setShiftDownwards = function(value)
Enables or disables event handling.
mxSpaceManager.prototype.setShiftRightwards = function(value)
Enables or disables event handling.
mxGraphSelectionModel.prototype.setSingleSelection = function(singleSelection)
Sets the singleSelection flag.
mxWindow.prototype.setSize = function(width,
height)
Sets the size of the window.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGuide.prototype.setStates = function(states)
Sets the mxCellStates that should be used for alignment.
mxEditor.prototype.setStatus = function (message)
Display the specified message in the status bar.
mxEditor.prototype.setStatusContainer = function (container)
Creates the status using the specified container.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeWidth: function(value)
Sets the stroke width.
setStrokeWidth: function(value)
Sets the stroke width.
mxCell.prototype.setStyle = function(style)
Sets the string to be used as the style.
mxGraphModel.prototype.setStyle = function(cell,
style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
setStyle: function(style,
key,
value)
Adds or removes the given key, value pair to the style and returns the new style.
setStyleFlag: function(style,
key,
flag,
value)
Sets or removes the given key from the specified style and returns the new style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxCell.prototype.setTerminal = function(terminal,
isSource)
Sets the source or target terminal and returns the new terminal.
mxGraphModel.prototype.setTerminal = function(edge,
terminal,
isSource)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
mxGeometry.prototype.setTerminalPoint = function(point,
isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
mxGraphModel.prototype.setTerminals = function(edge,
source,
target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
setTextEnabled: function(value)
Sets textEnabled.
setTextEnabled: function(value)
Sets textEnabled.
mxWindow.prototype.setTitle = function(title)
Sets the window title to the given string.
mxEditor.prototype.setTitleContainer = function (container)
Creates a listener to update the inner HTML of the specified DOM node with the value of getTitle.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxEditor.prototype.setToolbarContainer = function (container)
Initializes the toolbar for the given container.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxPath.prototype.setTranslate = function(x,
y)
Set the global translation of this path, that is, the origin of the coordinate system.
mxCell.prototype.setValue = function(value)
Sets the user object of the cell.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxCell.prototype.setVertex = function(vertex)
Specifies if the cell is a vertex.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxCoordinateAssignment.prototype.setVertexLocation = function(cell)
Fixes the position of the specified vertex.
mxGraphLayout.prototype.setVertexLocation = function(cell,
x,
y)
Sets the new position of the given cell taking into account the size of the bounding box if useBoundingBox is true.
mxCell.prototype.setVisible = function(visible)
Specifies if the cell is visible.
mxGraphModel.prototype.setVisible = function(cell,
visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
setVisible: function(visible)
Shows or hides the console.
mxWindow.prototype.setVisible = function(visible)
Shows or hides the window depending on the given flag.
mxCellState.prototype.setVisibleTerminalState = function (terminalState,
source)
Sets the visible source or target terminal state.
mxGraphAbstractHierarchyCell.prototype.setX = function(layer,
value)
Set the value of x for the specified layer
mxGraphAbstractHierarchyCell.prototype.setY = function(layer,
value)
Set the value of y for the specified layer
mxOutline.prototype.setZoomEnabled = function(value)
Enables or disables the zoom handling by showing or hiding the respective handle.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
mxSpaceManager.prototype.shiftCell = function(cell,
dx,
dy,
Ox0,
y0,
right,
bottom,
fx,
fy,
extendParent)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxGraphHandler.prototype.shouldRemoveCellsFromParent = function(parent,
cells,
evt)
Returns true if the given cells should be removed from the parent for the specified mousereleased event.
mxCellStatePreview.prototype.show = function(visitor)
show: function()
Shows the console.
mxMorphing.prototype.show = function(move)
Shows the changes in the given mxCellStatePreview.
mxTooltipHandler.prototype.show = function(tip,
x,
y)
Shows the tooltip for the specified cell and optional index at the specified location (with a vertical offset of 10 pixels).
show: function(graph,
doc,
x0,
y0)
Copies the styles and the markup from the graph’s container into the given document and removes all cursor styles.
mxWindow.prototype.show = function()
Shows the window.
mxEditor.prototype.showHelp = function (tasks)
Shows the help window.
mxPopupMenu.prototype.showMenu = function()
Shows the menu.
mxEditor.prototype.showOutline = function ()
Shows the outline window.
mxEditor.prototype.showProperties = function (cell)
Creates and shows the properties dialog for the given cell.
mxPopupMenu.prototype.showSubmenu = function(parent,
row)
Shows the submenu inside the given parent row.
mxEditor.prototype.showTasks = function ()
Shows the tasks window.
SideToSide: function (state,
source,
target,
points,
result)
Implements a vertical elbow edge.
mxXmlRequest.prototype.simulate = function(doc,
target)
Creates and posts a request to the given target URL using a dynamically created form inside the given document.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraphHandler.prototype.snap = function(vector)
Snaps the given vector to the grid and returns the given mxPoint instance.
sortCells: function(cells,
ascending)
Sorts the given cells according to the order in the cell hierarchy.
Reference to the source mxGraph.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxConnectionHandler.prototype.start = function(state,
x,
y,
edgeState)
Starts a new connection for the given state and coordinates.
mxEdgeHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxGraphHandler.prototype.start = function(cell,
x,
y)
Starts the handling of the mouse gesture.
mxRubberband.prototype.start = function(x,
y)
Sets the start point for the rubberband selection.
mxSession.prototype.start = function()
mxVertexHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxAnimation.prototype.startAnimation = function()
Starts the animation by repeatedly invoking updateAnimation.
mxDragSource.prototype.startDrag = function(evt)
Creates the dragElement using createDragElement.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxSession.prototype.stop = function(reason)
Stops the session and fires a disconnect event.
mxAnimation.prototype.stopAnimation = function()
Stops the animation by deleting the timer and fires an mxEvent.DONE.
mxDragSource.prototype.stopDrag = function(evt)
Removes and destroys the dragElement.
mxCellEditor.prototype.stopEditing = function(cancel)
Stops the editor and applies the value if cancel is false.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxMorphing.prototype.stopRecursion = function(state,
delta)
Returns true if the animation should not recursively find more deltas for children if the given parent state has been animated.
stroke: function()
Paints the outline of the current path.
stroke: function()
Paints the outline of the current path.
mxGraphModel.prototype.styleForCellChanged = function(cell,
style)
Inner callback to update the style of the given mxCell using mxCell.setStyle and return the previous style.
Maps from names to cell styles.
submit: function(url,
params,
doc,
target)
Submits the given parameters to the specified URL using mxXmlRequest.simulate and returns the mxXmlRequest.
mxSession.prototype.suspend = function()
Suspends the polling.
mxGeometry.prototype.swap = function()
Swaps the x, y, width and height with the values stored in alternateBounds and puts the previous values into alternateBounds as a rectangle.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxEditor.prototype.swapStyles = function (first,
second)
Swaps the styles for the given names in the graph’s stylesheet and refreshes the graph.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
+
mxAutoSaveManager.prototype.save = function()
Empty hook that is called if the graph should be saved.
mxEditor.prototype.save = function (url,
linefeed)
Posts the string returned by writeGraphModel to the given URL or the URL returned by getUrlPost.
save: function()
Saves the state of the graphics object.
save: function(filename,
content)
Saves the specified content in the given file on the local file system.
save: function()
Saves the state of the graphics object.
saveAs: function(content)
Saves the specified content by displaying a dialog to save the content as a file on the local filesystem.
scale: function(value)
Scales the current graphics object.
scale: function(value)
Scales the current graphics object.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxImageShape.prototype.scheduleUpdateAspect = function()
Schedules an asynchronous updateAspect using the current image.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
SegmentConnector: function(state,
source,
target,
hints,
result)
Implements an orthogonal edge style.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxConnectionHandler.prototype.selectCells = function(edge,
target)
Selects the given edge after adding a new connection.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraphHandler.prototype.selectDelayed = function(me)
Implements the delayed selection for the given mouse event.
mxToolbar.prototype.selectMode = function(domNode,
funct)
Resets the state of the previously selected mode and displays the given DOM node as selected.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxXmlRequest.prototype.send = function(onload,
onerror)
Send the request to the target URL using the specified functions to process the response asychronously.
mxCellState.prototype.setAbsoluteTerminalPoint = function (point,
isSource)
Sets the first or last point in absolutePoints depending on isSource.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
setAlpha: function(alpha)
Sets the current alpha.
setAlpha: function(alpha)
Sets the current alpha.
mxCell.prototype.setAttribute = function(name,
value)
Sets the specified attribute on the user object if it is an XML node.
mxCodec.prototype.setAttribute = function(node,
attribute,
value)
Sets the attribute on the specified node to value.
setAutoAntiAlias: function(value)
Sets autoAntiAlias.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
setBaseUrl: function(value)
Sets baseUrl.
mxXmlRequest.prototype.setBinary = function(value)
Sets binary.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxLayoutManager.prototype.setBubbling = function(value)
Sets bubbling.
mxGraphSelectionModel.prototype.setCell = function(cell)
Selects the specified mxCell using setCells.
mxCoordinateAssignment.prototype.setCellLocations = function(graph,
model)
Sets the cell locations in the facade to those stored after this layout processing step has completed.
mxGraphSelectionModel.prototype.setCells = function(cells)
Selects the given array of mxCells and fires a change event.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlags: function(model,
cells,
key,
flag,
value)
Sets or toggles the flag bit for the given key in the cell’s styles.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
setCellStyles: function(model,
cells,
key,
value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraphHandler.prototype.setCloneEnabled = function(value)
Sets cloneEnabled.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxWindow.prototype.setClosable = function(closable)
Sets the image associated with the window.
mxCell.prototype.setCollapsed = function(collapsed)
Sets the collapsed state.
mxGraphModel.prototype.setCollapsed = function(cell,
collapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
setCompressed: function(value)
Sets compressed.
mxCell.prototype.setConnectable = function(connectable)
Sets the connectable state.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraphModel.prototype.setCreateIds = function(value)
Sets createIds.
mxConnectionHandler.prototype.setCreateTarget = function(value)
Sets createTarget.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxCellState.prototype.setCursor = function (cursor)
Sets the given cursor on the shape and text shape.
mxShape.prototype.setCursor = function(cursor)
Sets the cursor on the given shape.
setDashed: function(value)
Sets the dashed state to true or false.
setDashed: function(value)
Sets the dashed state to true or false.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxCell.prototype.setEdge = function(edge)
Specifies if the cell is an edge.
mxGraphLayout.prototype.setEdgePoints = function(edge,
points)
Replaces the array of mxPoints in the geometry of the given edge with the given array of mxPoints.
mxCoordinateAssignment.prototype.setEdgePosition = function(cell)
Fixes the control points
mxGraphLayout.prototype.setEdgeStyleEnabled = function(edge,
value)
Disables or enables the edge style of the given edge.
mxAutoSaveManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxCellMarker.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConnectionHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConstraintHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxDragSource.prototype.setEnabled = function(value)
Sets enabled.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraphHandler.prototype.setEnabled = function(value)
Sets enabled.
mxKeyHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling by updating enabled.
mxLayoutManager.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxOutline.prototype.setEnabled = function(value)
Enables or disables event handling.
mxPopupMenu.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxRubberband.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxSelectionCellsHandler.prototype.setEnabled = function(value)
Sets enabled.
mxSpaceManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxTooltipHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
setEnabled: function(value)
Sets enabled.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxEventSource.prototype.setEventsEnabled = function(value)
Sets eventsEnabled.
mxEventSource.prototype.setEventSource = function(value)
Sets eventSource.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
setFillColor: function(value)
Sets the fillcolor.
setFillColor: function(value)
Sets the fillcolor.
setFoEnabled: function(value)
Sets foEnabled.
setFontColor: function(value)
Sets the fontcolor.
setFontColor: function(value)
Sets the fontcolor.
setFontFamily: function(value)
Sets the fontfamily.
setFontFamily: function(value)
Sets the fontfamily.
setFontSize: function(value)
Sets the fontsize.
setFontSize: function(value)
Sets the fontsize.
setFontStyle: function(value)
Sets the fontstyle.
setFontStyle: function(value)
Sets the fontstyle.
mxGraphAbstractHierarchyCell.prototype.setGeneralPurposeVariable = function(
   layer,
   value
)
Set the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxGraphHierarchyNode.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxCell.prototype.setGeometry = function(geometry)
Sets the mxGeometry to be used as the geometry.
mxGraphModel.prototype.setGeometry = function(cell,
geometry)
Sets the mxGeometry of the given mxCell.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
mxAutoSaveManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxLayoutManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSpaceManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxEditor.prototype.setGraphContainer = function (container)
Sets the graph’s container using mxGraph.init.
mxDragSource.prototype.setGridEnabled = function(value)
Sets gridEnabled.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxDragSource.prototype.setGuidesEnabled = function(value)
Sets guidesEnabled.
mxTooltipHandler.prototype.setHideOnHover = function(value)
Sets hideOnHover.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxGraphHandler.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxCellMarker.prototype.setHotspot = function(hotspot)
Sets the hotspot.
mxCellMarker.prototype.setHotspotEnabled = function(enabled)
Specifies whether the hotspot should be used in intersects.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxCell.prototype.setId = function(id)
Sets the Id of the cell to the given string.
mxWindow.prototype.setImage = function(image)
Sets the image associated with the window.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
setLineCap: function(value)
Sets the linecap.
setLineCap: function(value)
Sets the linecap.
setLineJoin: function(value)
Sets the linejoin.
setLineJoin: function(value)
Sets the linejoin.
mxWindow.prototype.setLocation = function(x,
y)
Sets the upper, left corner of the window.
Sets if any cell may be moved, sized, bended, disconnected, edited or selected.
mxWindow.prototype.setMaximizable = function(maximizable)
Sets if the window is maximizable.
mxWindow.prototype.setMinimizable = function(minimizable)
Sets if the window is minimizable.
setMiterLimit: function(value)
Sets the miterlimit.
setMiterLimit: function(value)
Sets the miterlimit.
mxEditor.prototype.setMode = function(modename)
Puts the graph into the specified mode.
mxCellEditor.prototype.setModified = function(value)
Sets modified to the specified boolean value.
mxEditor.prototype.setModified = function (value)
Sets modified to the specified boolean value.
mxGraphHandler.prototype.setMoveEnabled = function(value)
Sets moveEnabled.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
setOpacity: function(node,
value)
Sets the opacity of the specified DOM node to the given value in %.
mxGraphLayout.prototype.setOrthogonalEdge = function(edge,
value)
Disables or enables orthogonal end segments of the given edge.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxCell.prototype.setParent = function(parent)
Sets the parent cell.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
mxEdgeHandler.prototype.setPreviewColor = function(color)
Sets the color of the preview to the given value.
mxRectangle.prototype.setRect = function(x,
y,
w,
h)
Sets this rectangle to the specified values
mxGraphHandler.prototype.setRemoveCellsFromParent = function(value)
Sets removeCellsFromParent.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxXmlRequest.prototype.setRequestHeaders = function(request,
params)
Sets the headers for the given request and parameters.
mxWindow.prototype.setResizable = function(resizable)
Sets if the window should be resizable.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxGraphModel.prototype.setRoot = function(root)
Sets the root of the model using mxRootChange and adds the change to the current transaction.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxWindow.prototype.setScrollable = function(scrollable)
Sets if the window contents should be scrollable.
mxGraphHandler.prototype.setSelectEnabled = function(value)
Sets selectEnabled.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxSpaceManager.prototype.setShiftDownwards = function(value)
Enables or disables event handling.
mxSpaceManager.prototype.setShiftRightwards = function(value)
Enables or disables event handling.
mxGraphSelectionModel.prototype.setSingleSelection = function(singleSelection)
Sets the singleSelection flag.
mxWindow.prototype.setSize = function(width,
height)
Sets the size of the window.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGuide.prototype.setStates = function(states)
Sets the mxCellStates that should be used for alignment.
mxEditor.prototype.setStatus = function (message)
Display the specified message in the status bar.
mxEditor.prototype.setStatusContainer = function (container)
Creates the status using the specified container.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeWidth: function(value)
Sets the stroke width.
setStrokeWidth: function(value)
Sets the stroke width.
mxCell.prototype.setStyle = function(style)
Sets the string to be used as the style.
mxGraphModel.prototype.setStyle = function(cell,
style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
setStyle: function(style,
key,
value)
Adds or removes the given key, value pair to the style and returns the new style.
setStyleFlag: function(style,
key,
flag,
value)
Sets or removes the given key from the specified style and returns the new style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxCell.prototype.setTerminal = function(terminal,
isSource)
Sets the source or target terminal and returns the new terminal.
mxGraphModel.prototype.setTerminal = function(edge,
terminal,
isSource)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
mxGeometry.prototype.setTerminalPoint = function(point,
isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
mxGraphModel.prototype.setTerminals = function(edge,
source,
target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
setTextEnabled: function(value)
Sets textEnabled.
setTextEnabled: function(value)
Sets textEnabled.
mxWindow.prototype.setTitle = function(title)
Sets the window title to the given string.
mxEditor.prototype.setTitleContainer = function (container)
Creates a listener to update the inner HTML of the specified DOM node with the value of getTitle.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxEditor.prototype.setToolbarContainer = function (container)
Initializes the toolbar for the given container.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxPath.prototype.setTranslate = function(x,
y)
Set the global translation of this path, that is, the origin of the coordinate system.
mxCell.prototype.setValue = function(value)
Sets the user object of the cell.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxCell.prototype.setVertex = function(vertex)
Specifies if the cell is a vertex.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxCoordinateAssignment.prototype.setVertexLocation = function(cell)
Fixes the position of the specified vertex.
mxGraphLayout.prototype.setVertexLocation = function(cell,
x,
y)
Sets the new position of the given cell taking into account the size of the bounding box if useBoundingBox is true.
mxCell.prototype.setVisible = function(visible)
Specifies if the cell is visible.
mxGraphModel.prototype.setVisible = function(cell,
visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
setVisible: function(visible)
Shows or hides the console.
mxWindow.prototype.setVisible = function(visible)
Shows or hides the window depending on the given flag.
mxCellState.prototype.setVisibleTerminalState = function (terminalState,
source)
Sets the visible source or target terminal state.
mxGraphAbstractHierarchyCell.prototype.setX = function(layer,
value)
Set the value of x for the specified layer
mxGraphAbstractHierarchyCell.prototype.setY = function(layer,
value)
Set the value of y for the specified layer
mxOutline.prototype.setZoomEnabled = function(value)
Enables or disables the zoom handling by showing or hiding the respective handle.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
mxSpaceManager.prototype.shiftCell = function(cell,
dx,
dy,
Ox0,
y0,
right,
bottom,
fx,
fy,
extendParent)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxGraphHandler.prototype.shouldRemoveCellsFromParent = function(parent,
cells,
evt)
Returns true if the given cells should be removed from the parent for the specified mousereleased event.
mxCellStatePreview.prototype.show = function(visitor)
show: function()
Shows the console.
mxMorphing.prototype.show = function(move)
Shows the changes in the given mxCellStatePreview.
mxTooltipHandler.prototype.show = function(tip,
x,
y)
Shows the tooltip for the specified cell and optional index at the specified location (with a vertical offset of 10 pixels).
show: function(graph,
doc,
x0,
y0)
Copies the styles and the markup from the graph’s container into the given document and removes all cursor styles.
mxWindow.prototype.show = function()
Shows the window.
mxEditor.prototype.showHelp = function (tasks)
Shows the help window.
mxPopupMenu.prototype.showMenu = function()
Shows the menu.
mxEditor.prototype.showOutline = function ()
Shows the outline window.
mxEditor.prototype.showProperties = function (cell)
Creates and shows the properties dialog for the given cell.
mxPopupMenu.prototype.showSubmenu = function(parent,
row)
Shows the submenu inside the given parent row.
mxEditor.prototype.showTasks = function ()
Shows the tasks window.
SideToSide: function (state,
source,
target,
points,
result)
Implements a vertical elbow edge.
mxXmlRequest.prototype.simulate = function(doc,
target)
Creates and posts a request to the given target URL using a dynamically created form inside the given document.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraphHandler.prototype.snap = function(vector)
Snaps the given vector to the grid and returns the given mxPoint instance.
sortCells: function(cells,
ascending)
Sorts the given cells according to the order in the cell hierarchy.
Reference to the source mxGraph.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxConnectionHandler.prototype.start = function(state,
x,
y,
edgeState)
Starts a new connection for the given state and coordinates.
mxEdgeHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxGraphHandler.prototype.start = function(cell,
x,
y)
Starts the handling of the mouse gesture.
mxRubberband.prototype.start = function(x,
y)
Sets the start point for the rubberband selection.
mxSession.prototype.start = function()
mxVertexHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxAnimation.prototype.startAnimation = function()
Starts the animation by repeatedly invoking updateAnimation.
mxDragSource.prototype.startDrag = function(evt)
Creates the dragElement using createDragElement.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxSession.prototype.stop = function(reason)
Stops the session and fires a disconnect event.
mxAnimation.prototype.stopAnimation = function()
Stops the animation by deleting the timer and fires an mxEvent.DONE.
mxDragSource.prototype.stopDrag = function(evt)
Removes and destroys the dragElement.
mxCellEditor.prototype.stopEditing = function(cancel)
Stops the editor and applies the value if cancel is false.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxMorphing.prototype.stopRecursion = function(state,
delta)
Returns true if the animation should not recursively find more deltas for children if the given parent state has been animated.
stroke: function()
Paints the outline of the current path.
stroke: function()
Paints the outline of the current path.
mxGraphModel.prototype.styleForCellChanged = function(cell,
style)
Inner callback to update the style of the given mxCell using mxCell.setStyle and return the previous style.
Maps from names to cell styles.
submit: function(url,
params,
doc,
target)
Submits the given parameters to the specified URL using mxXmlRequest.simulate and returns the mxXmlRequest.
mxSession.prototype.suspend = function()
Suspends the polling.
mxGeometry.prototype.swap = function()
Swaps the x, y, width and height with the values stored in alternateBounds and puts the previous values into alternateBounds as a rectangle.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxEditor.prototype.swapStyles = function (first,
second)
Swaps the styles for the given names in the graph’s stylesheet and refreshes the graph.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
diff --git a/docs/js-api/index/Functions15.html b/docs/js-api/index/Functions15.html index e1dfe6900..e82da2ff9 100644 --- a/docs/js-api/index/Functions15.html +++ b/docs/js-api/index/Functions15.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 tapAndHold, mxConnectionHandler
 terminalForCellChanged, mxGraphModel
 text
 toggleCells, mxGraph
 toggleCellStyle, mxGraph
 toggleCellStyleFlags, mxGraph
 toggleCellStyles, mxGraph
 TopToBottom, mxEdgeStyle
 toRadians, mxUtils
 toString
 transformControlPoint, mxGraphView
 translate
 translateCell, mxGraph
 translateState, mxCellStatePreview
 transpose, mxMedianHybridCrossingReduction
 traverse
 treeLayout, mxEditor
 TrianglePerimeter, mxPerimeter
 trim
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 tapAndHold, mxConnectionHandler
 terminalForCellChanged, mxGraphModel
 text
 toggleCells, mxGraph
 toggleCellStyle, mxGraph
 toggleCellStyleFlags, mxGraph
 toggleCellStyles, mxGraph
 TopToBottom, mxEdgeStyle
 toRadians, mxUtils
 toString
 transformControlPoint, mxGraphView
 translate
 translateCell, mxGraph
 translateState, mxCellStatePreview
 transpose, mxMedianHybridCrossingReduction
 traverse
 treeLayout, mxEditor
 TrianglePerimeter, mxPerimeter
 trim
-
mxConnectionHandler.prototype.tapAndHold = function(me,
state)
Handles the mxMouseEvent by highlighting the mxCellState.
mxGraphModel.prototype.terminalForCellChanged = function(edge,
terminal,
isSource)
Inner helper function to update the terminal of the edge using mxCell.insertEdge and return the previous terminal.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
TopToBottom: function(state,
source,
target,
points,
result)
Implements a horizontal elbow edge.
toRadians: function(deg)
Converts the given degree to radians.
mxCellOverlay.prototype.toString = function()
Returns the textual representation of the overlay to be used as the tooltip.
toString: function(obj)
Returns a textual representation of the specified object.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxGeometry.prototype.translate = function(dx,
dy)
Translates the geometry by the specified amount.
translate: function(dx,
dy)
Translates the current graphics object.
translate: function(dx,
dy)
Translates the current graphics object.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxCellStatePreview.prototype.translateState = function(parentState,
state,
dx,
dy)
mxMedianHybridCrossingReduction.prototype.transpose = function(
   mainLoopIteration,
   model
)
Takes each possible adjacent cell pair on each rank and checks if swapping them around reduces the number of crossing
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraphLayout.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxEditor.prototype.treeLayout = function (cell,
horizontal)
Executes a vertical or horizontal compact tree layout using the specified cell as an argument.
TrianglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a triangle perimeter.
mxUndoManager.prototype.trim = function()
Removes all pending steps after indexOfNextAdd from the history, invoking die on each edit.
trim: function(str,
chars)
Strips all whitespaces from both end of the string.
+
mxConnectionHandler.prototype.tapAndHold = function(me,
state)
Handles the mxMouseEvent by highlighting the mxCellState.
mxGraphModel.prototype.terminalForCellChanged = function(edge,
terminal,
isSource)
Inner helper function to update the terminal of the edge using mxCell.insertEdge and return the previous terminal.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
TopToBottom: function(state,
source,
target,
points,
result)
Implements a horizontal elbow edge.
toRadians: function(deg)
Converts the given degree to radians.
mxCellOverlay.prototype.toString = function()
Returns the textual representation of the overlay to be used as the tooltip.
toString: function(obj)
Returns a textual representation of the specified object.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxGeometry.prototype.translate = function(dx,
dy)
Translates the geometry by the specified amount.
translate: function(dx,
dy)
Translates the current graphics object.
translate: function(dx,
dy)
Translates the current graphics object.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxCellStatePreview.prototype.translateState = function(parentState,
state,
dx,
dy)
mxMedianHybridCrossingReduction.prototype.transpose = function(
   mainLoopIteration,
   model
)
Takes each possible adjacent cell pair on each rank and checks if swapping them around reduces the number of crossing
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraphLayout.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxEditor.prototype.treeLayout = function (cell,
horizontal)
Executes a vertical or horizontal compact tree layout using the specified cell as an argument.
TrianglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a triangle perimeter.
mxUndoManager.prototype.trim = function()
Removes all pending steps after indexOfNextAdd from the history, invoking die on each edit.
trim: function(str,
chars)
Strips all whitespaces from both end of the string.
diff --git a/docs/js-api/index/Functions16.html b/docs/js-api/index/Functions16.html index 9b4ed9233..c0fb0428d 100644 --- a/docs/js-api/index/Functions16.html +++ b/docs/js-api/index/Functions16.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
U
 undo
 undoableEditHappened, mxUndoManager
 ungroupCells, mxGraph
 union, mxVertexHandler
 unmark, mxCellMarker
 update
 updateAlternateBounds, mxGraph
 updateAnimation
 updateAspect, mxImageShape
 updateBoundingBox
 updateCellSize, mxGraph
 updateCurrentState, mxConnectionHandler
 updateEdgeBounds, mxGraphView
 updateEdgeLabelOffset, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateGroupBounds, mxGraph
 updateHtmlCanvasSize, mxGraphView
 updateHtmlShape, mxShape
 updateIcons, mxConnectionHandler
 updateMouseEvent, mxGraph
 updatePoints, mxGraphView
 updatePreviewShape, mxGraphHandler
 updatePreviewState, mxEdgeHandler
 updateSvgBounds, mxShape
 updateSvgGlassPane, mxShape
 updateSvgNode
 updateSvgPath, mxShape
 updateSvgScale, mxShape
 updateSvgShape, mxShape
 updateSvgTransform, mxShape
 updateTableStyle, mxText
 updateTableWidth, mxText
 updateVertexLabelOffset, mxGraphView
 updateVmlDashStyle, mxShape
 updateVmlFill, mxShape
 updateVmlGlassPane, mxShape
 updateVmlMarkerOpacity, mxConnector
 updateVmlShape, mxShape
 updateVmlStrokeColor, mxShape
 updateVmlStrokeNode, mxShape
 updatingDocumentResource, mxGraphView
 useGuidesForEvent, mxGraphHandler
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
U
 undo
 undoableEditHappened, mxUndoManager
 ungroupCells, mxGraph
 union, mxVertexHandler
 unmark, mxCellMarker
 update
 updateAlternateBounds, mxGraph
 updateAnimation
 updateAspect, mxImageShape
 updateBoundingBox
 updateCellSize, mxGraph
 updateCurrentState, mxConnectionHandler
 updateEdgeBounds, mxGraphView
 updateEdgeLabelOffset, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateGroupBounds, mxGraph
 updateHtmlCanvasSize, mxGraphView
 updateHtmlShape, mxShape
 updateIcons, mxConnectionHandler
 updateMouseEvent, mxGraph
 updatePoints, mxGraphView
 updatePreviewShape, mxGraphHandler
 updatePreviewState, mxEdgeHandler
 updateSvgBounds, mxShape
 updateSvgGlassPane, mxShape
 updateSvgNode
 updateSvgPath, mxShape
 updateSvgScale, mxShape
 updateSvgShape, mxShape
 updateSvgTransform, mxShape
 updateTableStyle, mxText
 updateTableWidth, mxText
 updateVertexLabelOffset, mxGraphView
 updateVmlDashStyle, mxShape
 updateVmlFill, mxShape
 updateVmlGlassPane, mxShape
 updateVmlMarkerOpacity, mxConnector
 updateVmlShape, mxShape
 updateVmlStrokeColor, mxShape
 updateVmlStrokeNode, mxShape
 updatingDocumentResource, mxGraphView
 useGuidesForEvent, mxGraphHandler
-
mxEditor.prototype.undo = function ()
Undo the last change in graph.
mxUndoableEdit.prototype.undo = function()
Undoes all changes in this edit.
mxUndoManager.prototype.undo = function()
Undoes the last change.
mxUndoManager.prototype.undoableEditHappened = function(undoableEdit)
Method to be called to add new undoable edits to the history.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxVertexHandler.prototype.union = function(bounds,
dx,
dy,
index,
gridEnabled,
scale,
tr)
Returns the union of the given bounds and location for the specified handle index.
mxCellMarker.prototype.unmark = function()
Hides the marker and fires a mark event.
mxConstraintHandler.prototype.update = function(me,
source)
Updates the state of this handler based on the given mxMouseEvent.
mxOutline.prototype.update = function(revalidate)
Updates the outline.
mxRubberband.prototype.update = function(x,
y)
Sets currentX and currentY and calls repaint.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxAnimation.prototype.updateAnimation = function()
Hook for subclassers to implement the animation.
mxMorphing.prototype.updateAnimation = function()
Animation step.
mxImageShape.prototype.updateAspect = function(w,
h)
Updates the aspect of the image for the given image width and height.
Updates the boundingBox for this shape.
mxShape.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using createBoundingBox and augmentBoundingBox and stores the result in boundingBox.
mxText.prototype.updateBoundingBox = function()
Overrides method to do nothing.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxConnectionHandler.prototype.updateCurrentState = function(me)
Updates the current state for a given mouse move event by using the marker.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of the absolute points.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxGraphModel.prototype.updateEdgeParent = function(edge,
root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
mxGraphModel.prototype.updateEdgeParents = function(cell,
root)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxGraphView.prototype.updateHtmlCanvasSize = function(width,
height)
Updates the size of the HTML canvas.
mxShape.prototype.updateHtmlShape = function(node)
Updates the bounds or points of the specified HTML node and updates the inner children to reflect the changes.
mxConnectionHandler.prototype.updateIcons = function(state,
icons,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphHandler.prototype.updatePreviewShape = function()
Updates the bounds of the preview shape.
mxEdgeHandler.prototype.updatePreviewState = function(edge,
point,
terminalState)
Updates the given preview state taking into account the state of the constraint handler.
mxShape.prototype.updateSvgBounds = function(node)
Updates the bounds of the given node using bounds.
mxShape.prototype.updateSvgGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxDoubleEllipse.prototype.updateSvgNode = function(node,
inset)
Updates the given node to reflect the new bounds and scale.
mxEllipse.prototype.updateSvgNode = function(node)
Updates the given node to reflect the new bounds and scale.
mxShape.prototype.updateSvgPath = function(node)
Updates the path of the given node using points.
mxShape.prototype.updateSvgScale = function(node)
Updates the properties of the given node that depend on the scale and checks the crisp rendering attribute.
mxShape.prototype.updateSvgShape = function(node)
Updates the bounds or points of the specified SVG node and updates the inner children to reflect the changes.
mxShape.prototype.updateSvgTransform = function(node,
shadow)
Updates the tranform of the given node.
Updates the style of the given HTML table and the value within the table.
mxText.prototype.updateTableWidth = function(table)
Updates the width of the given HTML table.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxShape.prototype.updateVmlDashStyle = function()
Updates the dashstyle in the stroke node.
mxShape.prototype.updateVmlFill = function(node,
c1,
c2,
dir,
alpha)
Updates the given VML fill node.
mxShape.prototype.updateVmlGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxConnector.prototype.updateVmlMarkerOpacity = function()
Updates the opacity for the markers in VML.
mxShape.prototype.updateVmlShape = function(node)
Updates the bounds or points of the specified VML node and updates the inner children to reflect the changes.
mxShape.prototype.updateVmlStrokeColor = function(node)
Updates the VML stroke color for the given node.
mxShape.prototype.updateVmlStrokeNode = function(parent)
Creates the stroke node for VML.
Specifies the resource key for the status message while the document is being updated.
mxGraphHandler.prototype.useGuidesForEvent = function(me)
Returns true if the guides should be used for the given mxMouseEvent.
+
mxEditor.prototype.undo = function ()
Undo the last change in graph.
mxUndoableEdit.prototype.undo = function()
Undoes all changes in this edit.
mxUndoManager.prototype.undo = function()
Undoes the last change.
mxUndoManager.prototype.undoableEditHappened = function(undoableEdit)
Method to be called to add new undoable edits to the history.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxVertexHandler.prototype.union = function(bounds,
dx,
dy,
index,
gridEnabled,
scale,
tr)
Returns the union of the given bounds and location for the specified handle index.
mxCellMarker.prototype.unmark = function()
Hides the marker and fires a mark event.
mxConstraintHandler.prototype.update = function(me,
source)
Updates the state of this handler based on the given mxMouseEvent.
mxOutline.prototype.update = function(revalidate)
Updates the outline.
mxRubberband.prototype.update = function(x,
y)
Sets currentX and currentY and calls repaint.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxAnimation.prototype.updateAnimation = function()
Hook for subclassers to implement the animation.
mxMorphing.prototype.updateAnimation = function()
Animation step.
mxImageShape.prototype.updateAspect = function(w,
h)
Updates the aspect of the image for the given image width and height.
Updates the boundingBox for this shape.
mxShape.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using createBoundingBox and augmentBoundingBox and stores the result in boundingBox.
mxText.prototype.updateBoundingBox = function()
Overrides method to do nothing.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxConnectionHandler.prototype.updateCurrentState = function(me)
Updates the current state for a given mouse move event by using the marker.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of the absolute points.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxGraphModel.prototype.updateEdgeParent = function(edge,
root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
mxGraphModel.prototype.updateEdgeParents = function(cell,
root)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxGraphView.prototype.updateHtmlCanvasSize = function(width,
height)
Updates the size of the HTML canvas.
mxShape.prototype.updateHtmlShape = function(node)
Updates the bounds or points of the specified HTML node and updates the inner children to reflect the changes.
mxConnectionHandler.prototype.updateIcons = function(state,
icons,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphHandler.prototype.updatePreviewShape = function()
Updates the bounds of the preview shape.
mxEdgeHandler.prototype.updatePreviewState = function(edge,
point,
terminalState)
Updates the given preview state taking into account the state of the constraint handler.
mxShape.prototype.updateSvgBounds = function(node)
Updates the bounds of the given node using bounds.
mxShape.prototype.updateSvgGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxDoubleEllipse.prototype.updateSvgNode = function(node,
inset)
Updates the given node to reflect the new bounds and scale.
mxEllipse.prototype.updateSvgNode = function(node)
Updates the given node to reflect the new bounds and scale.
mxShape.prototype.updateSvgPath = function(node)
Updates the path of the given node using points.
mxShape.prototype.updateSvgScale = function(node)
Updates the properties of the given node that depend on the scale and checks the crisp rendering attribute.
mxShape.prototype.updateSvgShape = function(node)
Updates the bounds or points of the specified SVG node and updates the inner children to reflect the changes.
mxShape.prototype.updateSvgTransform = function(node,
shadow)
Updates the tranform of the given node.
Updates the style of the given HTML table and the value within the table.
mxText.prototype.updateTableWidth = function(table)
Updates the width of the given HTML table.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxShape.prototype.updateVmlDashStyle = function()
Updates the dashstyle in the stroke node.
mxShape.prototype.updateVmlFill = function(node,
c1,
c2,
dir,
alpha)
Updates the given VML fill node.
mxShape.prototype.updateVmlGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxConnector.prototype.updateVmlMarkerOpacity = function()
Updates the opacity for the markers in VML.
mxShape.prototype.updateVmlShape = function(node)
Updates the bounds or points of the specified VML node and updates the inner children to reflect the changes.
mxShape.prototype.updateVmlStrokeColor = function(node)
Updates the VML stroke color for the given node.
mxShape.prototype.updateVmlStrokeNode = function(parent)
Creates the stroke node for VML.
Specifies the resource key for the status message while the document is being updated.
mxGraphHandler.prototype.useGuidesForEvent = function(me)
Returns true if the guides should be used for the given mxMouseEvent.
diff --git a/docs/js-api/index/Functions17.html b/docs/js-api/index/Functions17.html index 49e008bfd..92728a864 100644 --- a/docs/js-api/index/Functions17.html +++ b/docs/js-api/index/Functions17.html @@ -11,17 +11,17 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 validate, mxGraphView
 validateBackground, mxGraphView
 validateBounds, mxGraphView
 validateCell, mxGraph
 validateConnection
 validateEdge, mxGraph
 validateGraph, mxGraph
 validatePoints, mxGraphView
 validationAlert, mxGraph
 valueChanged, mxCell
 valueForCellChanged, mxGraphModel
 verticalLayout, mxCompactTreeLayout
 visibleStateForCellChanged, mxGraphModel
 visit
W
 warn, mxLog
 WeightedCellSorter, WeightedCellSorter
 weightedMedian, mxMedianHybridCrossingReduction
 write
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeGraphModel, mxEditor
 writeHead, mxPrintPreview
 writeln
 writePrimitiveAttribute, mxObjectCodec
Z
 zoom, mxGraph
 zoomActual, mxGraph
 zoomIn, mxGraph
 zoomOut, mxGraph
 zoomTo, mxGraph
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 validate, mxGraphView
 validateBackground, mxGraphView
 validateBounds, mxGraphView
 validateCell, mxGraph
 validateConnection
 validateEdge, mxGraph
 validateGraph, mxGraph
 validatePoints, mxGraphView
 validationAlert, mxGraph
 valueChanged, mxCell
 valueForCellChanged, mxGraphModel
 verticalLayout, mxCompactTreeLayout
 visibleStateForCellChanged, mxGraphModel
 visit
W
 warn, mxLog
 WeightedCellSorter, WeightedCellSorter
 weightedMedian, mxMedianHybridCrossingReduction
 write
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeGraphModel, mxEditor
 writeHead, mxPrintPreview
 writeln
 writePrimitiveAttribute, mxObjectCodec
Z
 zoom, mxGraph
 zoomActual, mxGraph
 zoomIn, mxGraph
 zoomOut, mxGraph
 zoomTo, mxGraph
-
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.validateBackground = function()
Validates the background image.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
+
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.validateBackground = function()
Validates the background image.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
-
warn: function()
Adds all arguments to the console if WARN is enabled.
function WeightedCellSorter(cell,
weightedValue)
Constructs a new weighted cell sorted for the given cell and weight.
mxMedianHybridCrossingReduction.prototype.weightedMedian = function(iteration,
model)
Sweeps up or down the layout attempting to minimise the median placement of connected cells on adjacent ranks
write: function()
Adds the specified strings to the console.
mxPath.prototype.write = function(string)
Writes directly into the path.
write: function(parent,
text)
Creates a text node for the given string and appends it to the given parent.
mxObjectCodec.prototype.writeAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
mxObjectCodec.prototype.writeComplexAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as a child node of the given node.
mxEditor.prototype.writeGraphModel = function (linefeed)
Hook to create the string representation of the diagram.
mxPrintPreview.prototype.writeHead = function(doc,
css)
Writes the HEAD section into the given document, without the opening and closing HEAD tags.
writeln: function()
Adds the specified strings to the console, appending a linefeed at the end of each string.
writeln: function(parent,
text)
Creates a text node for the given string and appends it to the given parent with an additional linefeed.
mxObjectCodec.prototype.writePrimitiveAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as an attribute of the given node.
+
warn: function()
Adds all arguments to the console if WARN is enabled.
function WeightedCellSorter(cell,
weightedValue)
Constructs a new weighted cell sorted for the given cell and weight.
mxMedianHybridCrossingReduction.prototype.weightedMedian = function(iteration,
model)
Sweeps up or down the layout attempting to minimise the median placement of connected cells on adjacent ranks
write: function()
Adds the specified strings to the console.
mxPath.prototype.write = function(string)
Writes directly into the path.
write: function(parent,
text)
Creates a text node for the given string and appends it to the given parent.
mxObjectCodec.prototype.writeAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
mxObjectCodec.prototype.writeComplexAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as a child node of the given node.
mxEditor.prototype.writeGraphModel = function (linefeed)
Hook to create the string representation of the diagram.
mxPrintPreview.prototype.writeHead = function(doc,
css)
Writes the HEAD section into the given document, without the opening and closing HEAD tags.
writeln: function()
Adds the specified strings to the console, appending a linefeed at the end of each string.
writeln: function(parent,
text)
Creates a text node for the given string and appends it to the given parent with an additional linefeed.
mxObjectCodec.prototype.writePrimitiveAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as an attribute of the given node.
-
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
+
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
diff --git a/docs/js-api/index/Functions3.html b/docs/js-api/index/Functions3.html index ecba769ea..effa3fff9 100644 --- a/docs/js-api/index/Functions3.html +++ b/docs/js-api/index/Functions3.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
C
 calcAttraction, mxFastOrganicLayout
 calcPositions, mxFastOrganicLayout
 calcRepulsion, mxFastOrganicLayout
 calculateCrossings, mxMedianHybridCrossingReduction
 calculatedWeightedValue, mxCoordinateAssignment
 calculateRankCrossing, mxMedianHybridCrossingReduction
 calculateWidestRank, mxCoordinateAssignment
 canExportCell, mxGraph
 canImportCell, mxGraph
 canRedo, mxUndoManager
 canUndo, mxUndoManager
 cascadeOpacity
 cellAdded
 cellCloned, mxGraphModel
 cellConnected, mxGraph
 cellLabelChanged, mxGraph
 cellRemoved
 cellResized, mxSpaceManager
 cellsAdded
 cellsFolded, mxGraph
 cellSizeUpdated, mxGraph
 cellsMoved
 cellsOrdered, mxGraph
 cellsRemoved, mxGraph
 cellsResized
 cellsToggled, mxGraph
 changePoints
 changeSelection, mxGraphSelectionModel
 changeTerminalPoint
 check, mxMultiplicity
 checkNeighbors, mxMultiplicity
 checkTerminal, mxMultiplicity
 checkType, mxMultiplicity
 childMoved, mxGraphView
 circle, mxCircleLayout
 clear
 clearCellOverlays, mxGraph
 clearSelection
 click, mxGraph
 clip
 clone
 cloneCell, mxGraphModel
 cloneCellImpl, mxGraphModel
 cloneCells
 clonePreviewState, mxEdgeHandler
 cloneTemplate, mxObjectCodec
 cloneValue, mxCell
 close
 collapsedStateForCellChanged, mxGraphModel
 compare
 computeAspect, mxStencil
 configure, mxEditor
 configureHtmlShape
 configureShape, mxCellRenderer
 configureSvgShape
 configureTransparentBackground
 configureVmlShape
 confirm, mxUtils
 connect
 connectCell, mxGraph
 constrainChild, mxGraph
 consume
 consumeCycleAttribute, mxEditor
 consumePanningTrigger, mxPanningHandler
 contains
 convert, mxUrlConverter
 convertPoint
 convertValueFromXml, mxObjectCodec
 convertValueToString, mxGraph
 convertValueToXml, mxObjectCodec
 convertWaypoint, mxConnectionHandler
 copy
 create
 createBackgroundPageShape, mxGraphView
 createBends
 createBoundingBox, mxShape
 createBounds, mxVertexHandler
 createCellEditor, mxGraph
 createCellOverlays, mxCellRenderer
 createCellRenderer, mxGraph
 createConditions, mxDefaultPopupMenu
 createControl, mxCellRenderer
 createDashPattern, mxConnector
 createDefaultEdgeStyle, mxStylesheet
 createDefaultVertexStyle, mxStylesheet
 createDiagramLayout, mxEditor
 createDragElement, mxDragSource
 createEdge
 createEdgeState, mxConnectionHandler
 createForeignObject, mxText
 createGraph, mxEditor
 createGraphView, mxGraph
 createGroup, mxEditor
 createGroupCell, mxGraph
 createGuideShape, mxGuide
 createHandler, mxGraph
 createHandlers, mxGraph
 createHandleShape, mxEdgeHandler
 createHtml
 createHtmlPane, mxGraphView
 createHtmlTable, mxText
 createIcons, mxConnectionHandler
 createId, mxGraphModel
 createImage, mxUtils
 createInternalCells, mxGraphHierarchyModel
 createLabel, mxCellRenderer
 createLayoutManager, mxEditor
 createLine, mxCompactTreeLayout
 createMarker
 createMenu, mxDefaultPopupMenu
 createNode, mxCompactTreeLayout
 createPageSelector, mxPrintPreview
 createPanningManager, mxGraph
 createPath, mxShape
 createPoints, mxShape
 createPopupMenu, mxEditor
 createPreviewElement, mxDragSource
 createPreviewShape, mxGraphHandler
 createProperties, mxEditor
 createRoot, mxGraphModel
 createSelectionModel, mxGraph
 createSelectionShape
 createSession, mxEditor
 createShape
 createSizer
 createSizerShape, mxVertexHandler
 createState, mxGraphView
 createStylesheet, mxGraph
 createSubmenu, mxPopupMenu
 createSvg
 createSvgGradient, mxShape
 createSvgGroup, mxShape
 createSvgPipe, mxShape
 createSvgShadow, mxShape
 createSvgSpan
 createSwimlaneLayout, mxEditor
 createSwimlaneManager, mxEditor
 createTargetVertex, mxConnectionHandler
 createTasks, mxEditor
 createToolbar, mxEditor
 createUndoableEdit
 createVertex, mxGraph
 createVirtualBend, mxElbowEdgeHandler
 createVml
 createVmlImage, mxLabel
 createVmlPane, mxGraphView
 createVmlShadow, mxShape
 createXmlDocument, mxUtils
 crossingStage, mxHierarchicalLayout
 curveTo
 cut, mxClipboard
 cycleAttribute, mxEditor
 cycleStage, mxHierarchicalLayout
-
mxFastOrganicLayout.prototype.calcAttraction = function()
Calculates the attractive forces between all laid out nodes linked by edges
mxFastOrganicLayout.prototype.calcPositions = function()
Takes the displacements calculated for each cell and applies them to the local cache of cell positions.
mxFastOrganicLayout.prototype.calcRepulsion = function()
Calculates the repulsive forces between all laid out nodes
mxMedianHybridCrossingReduction.prototype.calculateCrossings = function(model)
Calculates the total number of edge crossing in the current graph.
mxCoordinateAssignment.prototype.calculatedWeightedValue = function(
   currentCell,
   collection
)
Calculates the priority the specified cell has based on the type of its cell and the cells it is connected to on the next layer
mxMedianHybridCrossingReduction.prototype.calculateRankCrossing = function(
   i,
   model
)
Calculates the number of edges crossings between the specified rank and the rank below it.
mxCoordinateAssignment.prototype.calculateWidestRank = function(graph,
model)
Calculates the width rank in the hierarchy.
mxGraph.prototype.canExportCell = function(cell)
Returns true if the given cell may be exported to the clipboard.
mxGraph.prototype.canImportCell = function(cell)
Returns true if the given cell may be imported from the clipboard.
mxUndoManager.prototype.canRedo = function()
Returns true if a redo is possible.
mxUndoManager.prototype.canUndo = function()
Returns true if an undo is possible.
cascadeOpacity: function(graph,
cell,
opacity)
Sets the opacity on the given cell and its descendants.
cascadeOpacity: function(graph,
cell,
opacity)
See mxEffects.cascadeOpacity.
mxGraphModel.prototype.cellAdded = function(cell)
Inner callback to update cells when a cell has been added.
mxGraphSelectionModel.prototype.cellAdded = function(cell)
Inner callback to add the specified mxCell to the selection.
mxGraphModel.prototype.cellCloned = function(cell)
Hook for cloning the cell.
mxGraph.prototype.cellConnected = function(edge,
terminal,
source,
constraint)
Sets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.
mxGraph.prototype.cellLabelChanged = function(cell,
value,
autoSize)
Sets the new label for a cell.
mxGraphModel.prototype.cellRemoved = function(cell)
Inner callback to update cells when a cell has been removed.
mxGraphSelectionModel.prototype.cellRemoved = function(cell)
Inner callback to remove the specified mxCell from the selection.
mxSession.prototype.cellRemoved = function(cell,
codec)
Adds removed cells to the codec object lookup for references to the removed cells after this point in time.
mxSpaceManager.prototype.cellResized = function(cell)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxGraph.prototype.cellsAdded = function(cells,
parent,
index,
source,
target,
absolute,
constrain)
Adds the specified cells to the given parent.
mxSwimlaneManager.prototype.cellsAdded = function(cells)
Called if any cells have been added.
mxGraph.prototype.cellsFolded = function(cells,
collapse,
recurse,
checkFoldable)
Sets the collapsed state of the specified cells.
mxGraph.prototype.cellSizeUpdated = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using getPreferredSizeForCell to get the new size.
mxGraph.prototype.cellsMoved = function(cells,
dx,
dy,
disconnect,
constrain)
Moves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.
mxLayoutManager.prototype.cellsMoved = function(cells,
evt)
Called from the moveHandler.
mxGraph.prototype.cellsOrdered = function(cells,
back)
Moves the given cells to the front or back.
mxGraph.prototype.cellsRemoved = function(cells)
Removes the given cells from the model.
mxGraph.prototype.cellsResized = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.
mxSpaceManager.prototype.cellsResized = function(cells)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSwimlaneManager.prototype.cellsResized = function(cells)
Called if any cells have been resizes.
mxGraph.prototype.cellsToggled = function(cells,
show)
Sets the visible state of the specified cells.
mxEdgeSegmentHandler.prototype.changePoints = function(edge,
points)
Changes the points of the given edge to reflect the current state of the handler.
mxEdgeHandler.prototype.changePoints = function(edge,
points)
Changes the control points of the given edge in the graph model.
mxGraphSelectionModel.prototype.changeSelection = function(added,
removed)
Inner callback to add the specified mxCell to the selection.
mxEdgeSegmentHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Calls refresh after mxEdgeHandler.changeTerminalPoint.
mxEdgeHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Changes the terminal point of the given edge.
mxMultiplicity.prototype.check = function(graph,
edge,
source,
target,
sourceOut,
targetIn)
Checks the multiplicity for the given arguments and returns the error for the given connection or null if the multiplicity does not apply.
mxMultiplicity.prototype.checkNeighbors = function(graph,
edge,
source,
target)
Checks if there are any valid neighbours in validNeighbors.
mxMultiplicity.prototype.checkTerminal = function(graph,
terminal,
edge)
Checks the given terminal cell and returns true if this rule applies.
mxMultiplicity.prototype.checkType = function(graph,
value,
type,
attr,
attrValue)
Checks the type of the given value.
mxGraphView.prototype.childMoved = function(parent,
child)
Invoked when a child state was moved as a result of late evaluation of its position.
mxCircleLayout.prototype.circle = function(vertices,
r,
left,
top)
Executes the circular layout for the specified array of vertices and the given radius.
mxDictionary.prototype.clear = function()
Clears the dictionary.
mxGraphModel.prototype.clear = function()
Sets a new root using createRoot.
mxGraphSelectionModel.prototype.clear = function()
Clears the selection and fires a change event if the selection was not empty.
mxGraphView.prototype.clear = function(cell,
force,
recurse)
Removes the state of the given cell and all descendants if the given cell is not the current root.
clear: function(obj)
Removes the object id from the given object.
mxUndoManager.prototype.clear = function()
Clears the command history.
mxGraph.prototype.clearCellOverlays = function(cell)
Removes all mxCellOverlays in the graph for the given cell and all its descendants.
mxGraph.prototype.clearSelection = function()
Clears the selection using mxGraphSelectionModel.clear.
clearSelection: function()
Clears the current selection in the page.
mxGraph.prototype.click = function(me)
Processes a singleclick on an optional cell and fires a click event.
clip: function()
Uses the current path for clipping.
clip: function()
Uses the current path for clipping.
mxCell.prototype.clone = function()
Returns a clone of the cell.
mxCellState.prototype.clone = function()
Returns a clone of this mxPoint.
mxLine.prototype.clone = function()
Overrides the clone method to add special fields.
mxPoint.prototype.clone = function()
Returns a clone of this mxPoint.
clone: function(obj,
transients,
shallow)
Recursively clones the specified object ignoring all fieldnames in the given array of transient fields.
mxGraphModel.prototype.cloneCell = function(cell)
Returns a deep clone of the given mxCell (including the children) which is created using cloneCells.
mxGraphModel.prototype.cloneCellImpl = function(cell,
mapping,
includeChildren)
Inner helper method for cloning cells recursively.
mxGraph.prototype.cloneCells = function(cells,
allowInvalidEdges)
Returns the clones for the given cells.
mxGraphModel.prototype.cloneCells = function(cells,
includeChildren)
Returns an array of clones for the given array of mxCells.
mxEdgeHandler.prototype.clonePreviewState = function(point,
terminal)
Returns a clone of the current preview state for the given point and terminal.
mxObjectCodec.prototype.cloneTemplate = function()
Returns a new instance of the template for this codec.
mxCell.prototype.cloneValue = function()
Returns a clone of the cell’s user object.
mxPath.prototype.close = function()
Closes the path.
mxPrintPreview.prototype.close = function()
Closes the print preview window.
close: function()
Closes the current path.
close: function()
Closes the current path.
mxGraphModel.prototype.collapsedStateForCellChanged = function(cell,
collapsed)
Inner callback to update the collapsed state of the given mxCell using mxCell.setCollapsed and return the previous collapsed state.
MedianCellSorter.prototype.compare = function(a,
b)
Compares two MedianCellSorters.
compare: function(p1,
p2)
Compares the given cell paths and returns -1 if p1 is smaller, 0 if p1 is equal and 1 if p1 is greater than p2.
WeightedCellSorter.prototype.compare = function(a,
b)
Compares two WeightedCellSorters.
mxStencil.prototype.computeAspect = function(state,
bounds,
direction)
Returns a rectangle that contains the offset in x and y and the horizontal and vertical scale in width and height used to draw this shape inside the given mxRectangle.
mxEditor.prototype.configure = function (node)
Configures the editor using the specified node.
mxConnector.prototype.configureHtmlShape = function(node)
Overrides mxShape.configureHtmlShape to clear the border and background.
mxShape.prototype.configureHtmlShape = function(node)
Configures the specified HTML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureHtmlShape = function(node)
Overrides method to set the overflow style to visible.
mxCellRenderer.prototype.configureShape = function(state)
Configures the shape for the given cell state.
mxImageShape.prototype.configureSvgShape = function(node)
Extends method to set opacity on images.
mxShape.prototype.configureSvgShape = function(node)
Configures the specified SVG node by applying the current color, bounds, shadow, opacity etc.
mxArrow.prototype.configureTransparentBackground = function(node)
Overidden to remove transparent background.
mxImageShape.prototype.configureTransparentBackground = function(node)
Workaround for security warning in IE if this is used in the overlay pane of a diagram.
mxShape.prototype.configureTransparentBackground = function(node)
Hook to make the background of a shape transparent.
mxShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
confirm: function(message)
Displays the given message in a confirm dialog.
mxEdgeSegmentHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Calls refresh after mxEdgeHandler.connect.
mxConnectionHandler.prototype.connect = function(source,
target,
evt,
dropTarget)
Connects the given source and target using a new edge.
mxDefaultToolbar.prototype.connect = function(vertex,
evt,
source)
Handles a drop by connecting the given vertex to the given source cell.
mxEdgeHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Changes the terminal or terminal point of the given edge in the graph model.
mxEditor.prototype.connect = function (urlInit,
urlPoll,
urlNotify,
onChange)
Creates and returns a session for the specified parameters, installing the onChange function as a change listener for the session.
mxGraph.prototype.connectCell = function(edge,
terminal,
source,
constraint)
Connects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.
mxGraph.prototype.constrainChild = function(cell)
Keeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.
consume: function(evt,
preventDefault,
stopPropagation)
Consumes the given event.
mxEventObject.prototype.consume = function()
Consumes the event.
mxMouseEvent.prototype.consume = function(preventDefault)
Sets consumed to true and invokes preventDefault on the native event if such a method is defined.
mxEditor.prototype.consumeCycleAttribute = function (cell)
Returns the next attribute in cycleAttributeValues or null, if not attribute should be used in the specified cell.
mxPanningHandler.prototype.consumePanningTrigger = function(me)
Consumes the given mxMouseEvent if it was a panning trigger in mouseDown.
mxGraphModel.prototype.contains = function(cell)
Returns true if the model contains the given mxCell.
contains: function(bounds,
x,
y)
Returns true if the specified point (x, y) is contained in the given rectangle.
convert: function(url)
Converts the given URL to an absolute URL.
mxEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
mxElbowEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
convertPoint: function(container,
x,
y)
Converts the specified point (x, y) using the offset of the specified container and returns a new mxPoint with the result.
mxObjectCodec.prototype.convertValueFromXml = function(value)
Converts booleans and numeric values to the respective types.
mxGraph.prototype.convertValueToString = function(cell)
Returns the textual representation for the given cell.
mxObjectCodec.prototype.convertValueToXml = function(value)
Converts true to “1” and false to “0”.
mxConnectionHandler.prototype.convertWaypoint = function(point)
Converts the given point from screen coordinates to model coordinates.
copy: function(graph,
cells)
Copies the given array of mxCells from the specified graph to cells.Returns the original array of cells that has been cloned.
copy: function(content)
Copies the specified content to the local clipboard.
create: function(cell)
Creates the cell path for the given cell.
mxCylinder.prototype.create = function(container)
Overrides the method to make sure the stroke is never null.
mxGraphView.prototype.createHtml = function()
Creates the DOM nodes for the HTML display.
mxImageShape.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxPolyline.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxShape.prototype.create = function(container)
Creates and returns the DOM node(s) for the shape in the given container.
mxText.prototype.create = function(container)
Override to create HTML regardless of gradient and rounded property.
mxXmlRequest.prototype.create = function()
Creates and returns the inner request object.
mxGraphView.prototype.createBackgroundPageShape = function(bounds)
Creates and returns the shape used as the background page.
mxEdgeSegmentHandler.prototype.createBends = function()
Adds custom bends for the center of each segment.
mxEdgeHandler.prototype.createBends = function()
Creates and returns the bends used for modifying the edge.
mxElbowEdgeHandler.prototype.createBends = function()
Overrides mxEdgeHandler.createBends to create custom bends.
mxShape.prototype.createBoundingBox = function()
Returns a new rectangle that represents the bounding box of the bare shape with no shadows or strokewidths.
Helper method to create an mxRectangle around the given centerpoint with a width and height of 2*s or 6, if no s is given.
mxGraph.prototype.createCellEditor = function()
Creates a new mxCellEditor to be used in this graph.
mxCellRenderer.prototype.createCellOverlays = function(state)
Creates the actual shape for showing the overlay for the given cell state.
mxGraph.prototype.createCellRenderer = function()
Creates a new mxCellRenderer to be used in this graph.
mxDefaultPopupMenu.prototype.createConditions = function(editor,
cell,
evt)
Evaluates the default conditions for the given context.
mxCellRenderer.prototype.createControl = function(state)
Creates the control for the given cell state.
mxConnector.prototype.createDashPattern = function(factor)
Creates a dash pattern for the given factor.
mxStylesheet.prototype.createDefaultEdgeStyle = function()
Creates and returns the default edge style.
mxStylesheet.prototype.createDefaultVertexStyle = function()
Creates and returns the default vertex style.
mxEditor.prototype.createDiagramLayout = function ()
Creates the layout instance used to layout the swimlanes in the diagram.
mxDragSource.prototype.createDragElement = function(evt)
Creates and returns a clone of the dragElementPrototype or the element if the former is not defined.
mxConnectionHandler.prototype.createEdge = function(value,
source,
target,
style)
Creates and returns a new edge using factoryMethod if one exists.
mxEditor.prototype.createEdge = function (source,
target)
Uses defaultEdge as the prototype for creating new edges in the connection handler of the graph.
mxGraph.prototype.createEdge = function(parent,
id,
value,
source,
target,
style)
Hook method that creates the new edge for insertEdge.
mxConnectionHandler.prototype.createEdgeState = function(me)
Hook to return an mxCellState which may be used during the preview.
mxText.prototype.createForeignObject = function()
Creates and returns the foreignObject node to represent this shape.
mxEditor.prototype.createGraph = function ()
Creates the graph for the editor.
mxGraph.prototype.createGraphView = function()
Creates a new mxGraphView to be used in this graph.
mxEditor.prototype.createGroup = function ()
Creates and returns a clone of defaultGroup to be used as a new group cell in group.
mxGraph.prototype.createGroupCell = function(cells)
Hook for creating the group cell to hold the given array of mxCells if no group cell was given to the group function.
mxGuide.prototype.createGuideShape = function(horizontal)
Returns the mxShape to be used for painting the respective guide.
mxGraph.prototype.createHandler = function(state)
Creates a new handler for the given cell state.
mxGraph.prototype.createHandlers = function(container)
Creates the tooltip-, panning-, connection- and graph-handler (in this order).
mxEdgeHandler.prototype.createHandleShape = function(index)
Creates the shape used to display the given bend.
mxLabel.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRectangleShape.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRhombus.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxShape.prototype.createHtml = function()
Creates and returns the HTML DOM node(s) to represent this shape.
mxSwimlane.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxText.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxGraphView.prototype.createHtmlPane = function(width,
height)
Creates and returns a drawing pane in HTML (DIV).
mxText.prototype.createHtmlTable = function()
Creates and returns a HTML table with a table body and a single row with a single cell.
mxConnectionHandler.prototype.createIcons = function(state)
Creates the array mxImageShapes that represent the connect icons for the given mxCellState.
mxGraphModel.prototype.createId = function(cell)
Hook method to create an Id for the specified cell.
createImage: function(src)
Creates and returns an image (IMG node) or VML image (v:image) in IE6 in quirs mode.
mxGraphHierarchyModel.prototype.createInternalCells = function(layout,
vertices,
internalVertices)
Creates all edges in the internal model
mxCellRenderer.prototype.createLabel = function(state,
value)
Creates the label for the given cell state.
mxEditor.prototype.createLayoutManager = function (graph)
Creates a layout manager for the swimlane and diagram layouts, that is, the locally defined inter- and intraswimlane layouts.
mxCompactTreeLayout.prototype.createLine = function(dx,
dy,
next)
mxConnectionHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxEdgeHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxDefaultPopupMenu.prototype.createMenu = function(editor,
menu,
cell,
evt)
This function is called from mxEditor to add items to the given menu based on config.
mxCompactTreeLayout.prototype.createNode = function(cell)
mxPrintPreview.prototype.createPageSelector = function(vpages,
hpages)
Creates the page selector table.
mxGraph.prototype.createPanningManager = function()
Creates and returns an mxPanningManager.
mxShape.prototype.createPath = function(arg)
Creates an mxPath for the specified format and origin.
mxShape.prototype.createPoints = function(moveCmd,
lineCmd,
curveCmd,
isRelative)
Creates a path expression using the specified commands for this.points.
mxEditor.prototype.createPopupMenu = function (menu,
cell,
evt)
Uses popupHandler to create the menu in the graph’s panning handler.
mxDragSource.prototype.createPreviewElement = function(graph)
Creates and returns an element which can be used as a preview in the given graph.
mxGraphHandler.prototype.createPreviewShape = function(bounds)
Creates the shape used to draw the preview for the given bounds.
mxEditor.prototype.createProperties = function (cell)
Creates and returns the DOM node that represents the contents of the properties dialog for the given cell.
mxGraphModel.prototype.createRoot = function()
Creates a new root cell with a default layer (child 0).
mxGraph.prototype.createSelectionModel = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxEdgeHandler.prototype.createSelectionShape = function(points)
Creates the shape used to draw the selection border.
mxVertexHandler.prototype.createSelectionShape = function(bounds)
Creates the shape used to draw the selection border.
mxEditor.prototype.createSession = function ()
Creates the built-in session using urlInit, urlPoll and urlNotify.
mxCellHighlight.prototype.createShape = function(state)
Creates and returns the highlight shape for the given state.
mxCellRenderer.prototype.createShape = function(state)
Creates the shape for the given cell state.
mxConnectionHandler.prototype.createShape = function()
Creates the preview shape for new connections.
mxImageExport.prototype.createShape = function(state,
canvas)
Creates a shape wrapper for the custom shape in the given cell state and links its output to the given canvas.
mxRubberband.prototype.createShape = function()
Creates the rubberband selection shape.
mxOutline.prototype.createSizer = function()
Creates the shape used as the sizer.
mxVertexHandler.prototype.createSizer = function(cursor,
index,
size,
fillColor)
Creates a sizer handle for the specified cursor and index and returns the new mxRectangleShape that represents the handle.
mxVertexHandler.prototype.createSizerShape = function(bounds,
index,
fillColor)
Creates the shape used for the sizer handle for the specified bounds and index.
mxGraphView.prototype.createState = function(cell)
Creates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.
mxGraph.prototype.createStylesheet = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxPopupMenu.prototype.createSubmenu = function(parent)
Creates the nodes required to add submenu items inside the given parent item.
mxActor.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxArrow.prototype.createSvg = function()
Extends mxActor.createSvg to ignore fill if enableFill is false and create an event handling shape if this.addPipe is true.
mxConnector.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxCylinder.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxDoubleEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxLabel.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxLine.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxPolyline.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxRectangleShape.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxRhombus.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxStencilShape.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxSwimlane.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxText.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxShape.prototype.createSvgGradient = function(id,
start,
end,
node)
Creates a gradient object for SVG using the specified startcolor, endcolor and opacity.
mxShape.prototype.createSvgGroup = function(shape)
Creates a SVG group element and adds the given shape as a child of the element.
mxShape.prototype.createSvgPipe = function(id,
start,
end,
node)
Creates an invisible path which is used to increase the hit detection for edges in SVG.
mxShape.prototype.createSvgShadow = function(node)
Creates a clone of the given node and configures the node’s color to use mxConstants.SHADOWCOLOR.
Updates the path for the given SVG node.
mxText.prototype.createSvgSpan = function(text)
Creats an SVG tspan node for the given text.
mxEditor.prototype.createSwimlaneLayout = function ()
Creates the layout instance used to layout the children of each swimlane.
mxEditor.prototype.createSwimlaneManager = function (graph)
Sets the graph’s container using mxGraph.init.
mxConnectionHandler.prototype.createTargetVertex = function(evt,
source)
Hook method for creating new vertices on the fly if no target was under the mouse.
mxEditor.prototype.createTasks = function (div)
Updates the contents of the given DOM node to display the tasks associated with the current editor state.
mxEditor.prototype.createToolbar = function ()
Creates the toolbar with no container.
mxGraphModel.prototype.createUndoableEdit = function()
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event through the mxUndoableEdit’s source.
mxSession.prototype.createUndoableEdit = function(changes)
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event via the model.
mxGraph.prototype.createVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Hook method that creates the new vertex for insertVertex.
mxElbowEdgeHandler.prototype.createVirtualBend = function()
Creates a virtual bend that supports double clicking and calls mxGraph.flipEdge.
mxActor.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxArrow.prototype.createVml = function()
Extends mxShape.createVml to ignore fill if enableFill is false.
mxConnector.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxCylinder.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxDoubleEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLabel.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLine.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRectangleShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRhombus.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxStencilShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxSwimlane.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxText.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxLabel.prototype.createVmlImage = function(src,
opacity)
Creates an image node for the given image src and opacity to be used in VML.
mxGraphView.prototype.createVmlPane = function(width,
height)
Creates a drawing pane in VML (group).
mxShape.prototype.createVmlShadow = function(node)
Creates the VML shadow node.
createXmlDocument: function()
Returns a new, empty XML document.
mxHierarchicalLayout.prototype.crossingStage = function(parent)
Executes the crossing stage using mxMedianHybridCrossingReduction.
mxPath.prototype.curveTo = function(x1,
y1,
x2,
y2,
x,
y)
Draws a cubic Bézier curve from the current point to (x, y) using (x1, y1) as the control point at the beginning of the curve and (x2, y2) as the control point at the end of the curve.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
cut: function(graph,
cells)
Cuts the given array of mxCells from the specified graph.
mxEditor.prototype.cycleAttribute = function (cell)
Uses the returned value from consumeCycleAttribute as the value for the cycleAttributeName key in the given cell’s style.
mxHierarchicalLayout.prototype.cycleStage = function(parent)
Executes the cycle stage using mxMinimumCycleRemover.
+
mxFastOrganicLayout.prototype.calcAttraction = function()
Calculates the attractive forces between all laid out nodes linked by edges
mxFastOrganicLayout.prototype.calcPositions = function()
Takes the displacements calculated for each cell and applies them to the local cache of cell positions.
mxFastOrganicLayout.prototype.calcRepulsion = function()
Calculates the repulsive forces between all laid out nodes
mxMedianHybridCrossingReduction.prototype.calculateCrossings = function(model)
Calculates the total number of edge crossing in the current graph.
mxCoordinateAssignment.prototype.calculatedWeightedValue = function(
   currentCell,
   collection
)
Calculates the priority the specified cell has based on the type of its cell and the cells it is connected to on the next layer
mxMedianHybridCrossingReduction.prototype.calculateRankCrossing = function(
   i,
   model
)
Calculates the number of edges crossings between the specified rank and the rank below it.
mxCoordinateAssignment.prototype.calculateWidestRank = function(graph,
model)
Calculates the width rank in the hierarchy.
mxGraph.prototype.canExportCell = function(cell)
Returns true if the given cell may be exported to the clipboard.
mxGraph.prototype.canImportCell = function(cell)
Returns true if the given cell may be imported from the clipboard.
mxUndoManager.prototype.canRedo = function()
Returns true if a redo is possible.
mxUndoManager.prototype.canUndo = function()
Returns true if an undo is possible.
cascadeOpacity: function(graph,
cell,
opacity)
Sets the opacity on the given cell and its descendants.
cascadeOpacity: function(graph,
cell,
opacity)
See mxEffects.cascadeOpacity.
mxGraphModel.prototype.cellAdded = function(cell)
Inner callback to update cells when a cell has been added.
mxGraphSelectionModel.prototype.cellAdded = function(cell)
Inner callback to add the specified mxCell to the selection.
mxGraphModel.prototype.cellCloned = function(cell)
Hook for cloning the cell.
mxGraph.prototype.cellConnected = function(edge,
terminal,
source,
constraint)
Sets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.
mxGraph.prototype.cellLabelChanged = function(cell,
value,
autoSize)
Sets the new label for a cell.
mxGraphModel.prototype.cellRemoved = function(cell)
Inner callback to update cells when a cell has been removed.
mxGraphSelectionModel.prototype.cellRemoved = function(cell)
Inner callback to remove the specified mxCell from the selection.
mxSession.prototype.cellRemoved = function(cell,
codec)
Adds removed cells to the codec object lookup for references to the removed cells after this point in time.
mxSpaceManager.prototype.cellResized = function(cell)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxGraph.prototype.cellsAdded = function(cells,
parent,
index,
source,
target,
absolute,
constrain)
Adds the specified cells to the given parent.
mxSwimlaneManager.prototype.cellsAdded = function(cells)
Called if any cells have been added.
mxGraph.prototype.cellsFolded = function(cells,
collapse,
recurse,
checkFoldable)
Sets the collapsed state of the specified cells.
mxGraph.prototype.cellSizeUpdated = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using getPreferredSizeForCell to get the new size.
mxGraph.prototype.cellsMoved = function(cells,
dx,
dy,
disconnect,
constrain)
Moves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.
mxLayoutManager.prototype.cellsMoved = function(cells,
evt)
Called from the moveHandler.
mxGraph.prototype.cellsOrdered = function(cells,
back)
Moves the given cells to the front or back.
mxGraph.prototype.cellsRemoved = function(cells)
Removes the given cells from the model.
mxGraph.prototype.cellsResized = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.
mxSpaceManager.prototype.cellsResized = function(cells)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSwimlaneManager.prototype.cellsResized = function(cells)
Called if any cells have been resizes.
mxGraph.prototype.cellsToggled = function(cells,
show)
Sets the visible state of the specified cells.
mxEdgeSegmentHandler.prototype.changePoints = function(edge,
points)
Changes the points of the given edge to reflect the current state of the handler.
mxEdgeHandler.prototype.changePoints = function(edge,
points)
Changes the control points of the given edge in the graph model.
mxGraphSelectionModel.prototype.changeSelection = function(added,
removed)
Inner callback to add the specified mxCell to the selection.
mxEdgeSegmentHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Calls refresh after mxEdgeHandler.changeTerminalPoint.
mxEdgeHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Changes the terminal point of the given edge.
mxMultiplicity.prototype.check = function(graph,
edge,
source,
target,
sourceOut,
targetIn)
Checks the multiplicity for the given arguments and returns the error for the given connection or null if the multiplicity does not apply.
mxMultiplicity.prototype.checkNeighbors = function(graph,
edge,
source,
target)
Checks if there are any valid neighbours in validNeighbors.
mxMultiplicity.prototype.checkTerminal = function(graph,
terminal,
edge)
Checks the given terminal cell and returns true if this rule applies.
mxMultiplicity.prototype.checkType = function(graph,
value,
type,
attr,
attrValue)
Checks the type of the given value.
mxGraphView.prototype.childMoved = function(parent,
child)
Invoked when a child state was moved as a result of late evaluation of its position.
mxCircleLayout.prototype.circle = function(vertices,
r,
left,
top)
Executes the circular layout for the specified array of vertices and the given radius.
mxDictionary.prototype.clear = function()
Clears the dictionary.
mxGraphModel.prototype.clear = function()
Sets a new root using createRoot.
mxGraphSelectionModel.prototype.clear = function()
Clears the selection and fires a change event if the selection was not empty.
mxGraphView.prototype.clear = function(cell,
force,
recurse)
Removes the state of the given cell and all descendants if the given cell is not the current root.
clear: function(obj)
Removes the object id from the given object.
mxUndoManager.prototype.clear = function()
Clears the command history.
mxGraph.prototype.clearCellOverlays = function(cell)
Removes all mxCellOverlays in the graph for the given cell and all its descendants.
mxGraph.prototype.clearSelection = function()
Clears the selection using mxGraphSelectionModel.clear.
clearSelection: function()
Clears the current selection in the page.
mxGraph.prototype.click = function(me)
Processes a singleclick on an optional cell and fires a click event.
clip: function()
Uses the current path for clipping.
clip: function()
Uses the current path for clipping.
mxCell.prototype.clone = function()
Returns a clone of the cell.
mxCellState.prototype.clone = function()
Returns a clone of this mxPoint.
mxLine.prototype.clone = function()
Overrides the clone method to add special fields.
mxPoint.prototype.clone = function()
Returns a clone of this mxPoint.
clone: function(obj,
transients,
shallow)
Recursively clones the specified object ignoring all fieldnames in the given array of transient fields.
mxGraphModel.prototype.cloneCell = function(cell)
Returns a deep clone of the given mxCell (including the children) which is created using cloneCells.
mxGraphModel.prototype.cloneCellImpl = function(cell,
mapping,
includeChildren)
Inner helper method for cloning cells recursively.
mxGraph.prototype.cloneCells = function(cells,
allowInvalidEdges)
Returns the clones for the given cells.
mxGraphModel.prototype.cloneCells = function(cells,
includeChildren)
Returns an array of clones for the given array of mxCells.
mxEdgeHandler.prototype.clonePreviewState = function(point,
terminal)
Returns a clone of the current preview state for the given point and terminal.
mxObjectCodec.prototype.cloneTemplate = function()
Returns a new instance of the template for this codec.
mxCell.prototype.cloneValue = function()
Returns a clone of the cell’s user object.
mxPath.prototype.close = function()
Closes the path.
mxPrintPreview.prototype.close = function()
Closes the print preview window.
close: function()
Closes the current path.
close: function()
Closes the current path.
mxGraphModel.prototype.collapsedStateForCellChanged = function(cell,
collapsed)
Inner callback to update the collapsed state of the given mxCell using mxCell.setCollapsed and return the previous collapsed state.
MedianCellSorter.prototype.compare = function(a,
b)
Compares two MedianCellSorters.
compare: function(p1,
p2)
Compares the given cell paths and returns -1 if p1 is smaller, 0 if p1 is equal and 1 if p1 is greater than p2.
WeightedCellSorter.prototype.compare = function(a,
b)
Compares two WeightedCellSorters.
mxStencil.prototype.computeAspect = function(state,
bounds,
direction)
Returns a rectangle that contains the offset in x and y and the horizontal and vertical scale in width and height used to draw this shape inside the given mxRectangle.
mxEditor.prototype.configure = function (node)
Configures the editor using the specified node.
mxConnector.prototype.configureHtmlShape = function(node)
Overrides mxShape.configureHtmlShape to clear the border and background.
mxShape.prototype.configureHtmlShape = function(node)
Configures the specified HTML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureHtmlShape = function(node)
Overrides method to set the overflow style to visible.
mxCellRenderer.prototype.configureShape = function(state)
Configures the shape for the given cell state.
mxImageShape.prototype.configureSvgShape = function(node)
Extends method to set opacity on images.
mxShape.prototype.configureSvgShape = function(node)
Configures the specified SVG node by applying the current color, bounds, shadow, opacity etc.
mxArrow.prototype.configureTransparentBackground = function(node)
Overidden to remove transparent background.
mxImageShape.prototype.configureTransparentBackground = function(node)
Workaround for security warning in IE if this is used in the overlay pane of a diagram.
mxShape.prototype.configureTransparentBackground = function(node)
Hook to make the background of a shape transparent.
mxShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
confirm: function(message)
Displays the given message in a confirm dialog.
mxEdgeSegmentHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Calls refresh after mxEdgeHandler.connect.
mxConnectionHandler.prototype.connect = function(source,
target,
evt,
dropTarget)
Connects the given source and target using a new edge.
mxDefaultToolbar.prototype.connect = function(vertex,
evt,
source)
Handles a drop by connecting the given vertex to the given source cell.
mxEdgeHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Changes the terminal or terminal point of the given edge in the graph model.
mxEditor.prototype.connect = function (urlInit,
urlPoll,
urlNotify,
onChange)
Creates and returns a session for the specified parameters, installing the onChange function as a change listener for the session.
mxGraph.prototype.connectCell = function(edge,
terminal,
source,
constraint)
Connects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.
mxGraph.prototype.constrainChild = function(cell)
Keeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.
consume: function(evt,
preventDefault,
stopPropagation)
Consumes the given event.
mxEventObject.prototype.consume = function()
Consumes the event.
mxMouseEvent.prototype.consume = function(preventDefault)
Sets consumed to true and invokes preventDefault on the native event if such a method is defined.
mxEditor.prototype.consumeCycleAttribute = function (cell)
Returns the next attribute in cycleAttributeValues or null, if not attribute should be used in the specified cell.
mxPanningHandler.prototype.consumePanningTrigger = function(me)
Consumes the given mxMouseEvent if it was a panning trigger in mouseDown.
mxGraphModel.prototype.contains = function(cell)
Returns true if the model contains the given mxCell.
contains: function(bounds,
x,
y)
Returns true if the specified point (x, y) is contained in the given rectangle.
convert: function(url)
Converts the given URL to an absolute URL.
mxEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
mxElbowEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
convertPoint: function(container,
x,
y)
Converts the specified point (x, y) using the offset of the specified container and returns a new mxPoint with the result.
mxObjectCodec.prototype.convertValueFromXml = function(value)
Converts booleans and numeric values to the respective types.
mxGraph.prototype.convertValueToString = function(cell)
Returns the textual representation for the given cell.
mxObjectCodec.prototype.convertValueToXml = function(value)
Converts true to “1” and false to “0”.
mxConnectionHandler.prototype.convertWaypoint = function(point)
Converts the given point from screen coordinates to model coordinates.
copy: function(graph,
cells)
Copies the given array of mxCells from the specified graph to cells.Returns the original array of cells that has been cloned.
copy: function(content)
Copies the specified content to the local clipboard.
create: function(cell)
Creates the cell path for the given cell.
mxCylinder.prototype.create = function(container)
Overrides the method to make sure the stroke is never null.
mxGraphView.prototype.createHtml = function()
Creates the DOM nodes for the HTML display.
mxImageShape.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxPolyline.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxShape.prototype.create = function(container)
Creates and returns the DOM node(s) for the shape in the given container.
mxText.prototype.create = function(container)
Override to create HTML regardless of gradient and rounded property.
mxXmlRequest.prototype.create = function()
Creates and returns the inner request object.
mxGraphView.prototype.createBackgroundPageShape = function(bounds)
Creates and returns the shape used as the background page.
mxEdgeSegmentHandler.prototype.createBends = function()
Adds custom bends for the center of each segment.
mxEdgeHandler.prototype.createBends = function()
Creates and returns the bends used for modifying the edge.
mxElbowEdgeHandler.prototype.createBends = function()
Overrides mxEdgeHandler.createBends to create custom bends.
mxShape.prototype.createBoundingBox = function()
Returns a new rectangle that represents the bounding box of the bare shape with no shadows or strokewidths.
Helper method to create an mxRectangle around the given centerpoint with a width and height of 2*s or 6, if no s is given.
mxGraph.prototype.createCellEditor = function()
Creates a new mxCellEditor to be used in this graph.
mxCellRenderer.prototype.createCellOverlays = function(state)
Creates the actual shape for showing the overlay for the given cell state.
mxGraph.prototype.createCellRenderer = function()
Creates a new mxCellRenderer to be used in this graph.
mxDefaultPopupMenu.prototype.createConditions = function(editor,
cell,
evt)
Evaluates the default conditions for the given context.
mxCellRenderer.prototype.createControl = function(state)
Creates the control for the given cell state.
mxConnector.prototype.createDashPattern = function(factor)
Creates a dash pattern for the given factor.
mxStylesheet.prototype.createDefaultEdgeStyle = function()
Creates and returns the default edge style.
mxStylesheet.prototype.createDefaultVertexStyle = function()
Creates and returns the default vertex style.
mxEditor.prototype.createDiagramLayout = function ()
Creates the layout instance used to layout the swimlanes in the diagram.
mxDragSource.prototype.createDragElement = function(evt)
Creates and returns a clone of the dragElementPrototype or the element if the former is not defined.
mxConnectionHandler.prototype.createEdge = function(value,
source,
target,
style)
Creates and returns a new edge using factoryMethod if one exists.
mxEditor.prototype.createEdge = function (source,
target)
Uses defaultEdge as the prototype for creating new edges in the connection handler of the graph.
mxGraph.prototype.createEdge = function(parent,
id,
value,
source,
target,
style)
Hook method that creates the new edge for insertEdge.
mxConnectionHandler.prototype.createEdgeState = function(me)
Hook to return an mxCellState which may be used during the preview.
mxText.prototype.createForeignObject = function()
Creates and returns the foreignObject node to represent this shape.
mxEditor.prototype.createGraph = function ()
Creates the graph for the editor.
mxGraph.prototype.createGraphView = function()
Creates a new mxGraphView to be used in this graph.
mxEditor.prototype.createGroup = function ()
Creates and returns a clone of defaultGroup to be used as a new group cell in group.
mxGraph.prototype.createGroupCell = function(cells)
Hook for creating the group cell to hold the given array of mxCells if no group cell was given to the group function.
mxGuide.prototype.createGuideShape = function(horizontal)
Returns the mxShape to be used for painting the respective guide.
mxGraph.prototype.createHandler = function(state)
Creates a new handler for the given cell state.
mxGraph.prototype.createHandlers = function(container)
Creates the tooltip-, panning-, connection- and graph-handler (in this order).
mxEdgeHandler.prototype.createHandleShape = function(index)
Creates the shape used to display the given bend.
mxLabel.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRectangleShape.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRhombus.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxShape.prototype.createHtml = function()
Creates and returns the HTML DOM node(s) to represent this shape.
mxSwimlane.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxText.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxGraphView.prototype.createHtmlPane = function(width,
height)
Creates and returns a drawing pane in HTML (DIV).
mxText.prototype.createHtmlTable = function()
Creates and returns a HTML table with a table body and a single row with a single cell.
mxConnectionHandler.prototype.createIcons = function(state)
Creates the array mxImageShapes that represent the connect icons for the given mxCellState.
mxGraphModel.prototype.createId = function(cell)
Hook method to create an Id for the specified cell.
createImage: function(src)
Creates and returns an image (IMG node) or VML image (v:image) in IE6 in quirs mode.
mxGraphHierarchyModel.prototype.createInternalCells = function(layout,
vertices,
internalVertices)
Creates all edges in the internal model
mxCellRenderer.prototype.createLabel = function(state,
value)
Creates the label for the given cell state.
mxEditor.prototype.createLayoutManager = function (graph)
Creates a layout manager for the swimlane and diagram layouts, that is, the locally defined inter- and intraswimlane layouts.
mxCompactTreeLayout.prototype.createLine = function(dx,
dy,
next)
mxConnectionHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxEdgeHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxDefaultPopupMenu.prototype.createMenu = function(editor,
menu,
cell,
evt)
This function is called from mxEditor to add items to the given menu based on config.
mxCompactTreeLayout.prototype.createNode = function(cell)
mxPrintPreview.prototype.createPageSelector = function(vpages,
hpages)
Creates the page selector table.
mxGraph.prototype.createPanningManager = function()
Creates and returns an mxPanningManager.
mxShape.prototype.createPath = function(arg)
Creates an mxPath for the specified format and origin.
mxShape.prototype.createPoints = function(moveCmd,
lineCmd,
curveCmd,
isRelative)
Creates a path expression using the specified commands for this.points.
mxEditor.prototype.createPopupMenu = function (menu,
cell,
evt)
Uses popupHandler to create the menu in the graph’s panning handler.
mxDragSource.prototype.createPreviewElement = function(graph)
Creates and returns an element which can be used as a preview in the given graph.
mxGraphHandler.prototype.createPreviewShape = function(bounds)
Creates the shape used to draw the preview for the given bounds.
mxEditor.prototype.createProperties = function (cell)
Creates and returns the DOM node that represents the contents of the properties dialog for the given cell.
mxGraphModel.prototype.createRoot = function()
Creates a new root cell with a default layer (child 0).
mxGraph.prototype.createSelectionModel = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxEdgeHandler.prototype.createSelectionShape = function(points)
Creates the shape used to draw the selection border.
mxVertexHandler.prototype.createSelectionShape = function(bounds)
Creates the shape used to draw the selection border.
mxEditor.prototype.createSession = function ()
Creates the built-in session using urlInit, urlPoll and urlNotify.
mxCellHighlight.prototype.createShape = function()
Creates and returns the highlight shape for the given state.
mxCellRenderer.prototype.createShape = function(state)
Creates the shape for the given cell state.
mxConnectionHandler.prototype.createShape = function()
Creates the preview shape for new connections.
mxImageExport.prototype.createShape = function(state,
canvas)
Creates a shape wrapper for the custom shape in the given cell state and links its output to the given canvas.
mxRubberband.prototype.createShape = function()
Creates the rubberband selection shape.
mxOutline.prototype.createSizer = function()
Creates the shape used as the sizer.
mxVertexHandler.prototype.createSizer = function(cursor,
index,
size,
fillColor)
Creates a sizer handle for the specified cursor and index and returns the new mxRectangleShape that represents the handle.
mxVertexHandler.prototype.createSizerShape = function(bounds,
index,
fillColor)
Creates the shape used for the sizer handle for the specified bounds and index.
mxGraphView.prototype.createState = function(cell)
Creates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.
mxGraph.prototype.createStylesheet = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxPopupMenu.prototype.createSubmenu = function(parent)
Creates the nodes required to add submenu items inside the given parent item.
mxActor.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxArrow.prototype.createSvg = function()
Extends mxActor.createSvg to ignore fill if enableFill is false and create an event handling shape if this.addPipe is true.
mxConnector.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxCylinder.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxDoubleEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxLabel.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxLine.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxPolyline.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxRectangleShape.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxRhombus.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxStencilShape.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxSwimlane.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxText.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxShape.prototype.createSvgGradient = function(id,
start,
end,
node)
Creates a gradient object for SVG using the specified startcolor, endcolor and opacity.
mxShape.prototype.createSvgGroup = function(shape)
Creates a SVG group element and adds the given shape as a child of the element.
mxShape.prototype.createSvgPipe = function(id,
start,
end,
node)
Creates an invisible path which is used to increase the hit detection for edges in SVG.
mxShape.prototype.createSvgShadow = function(node)
Creates a clone of the given node and configures the node’s color to use mxConstants.SHADOWCOLOR.
Updates the path for the given SVG node.
mxText.prototype.createSvgSpan = function(text)
Creats an SVG tspan node for the given text.
mxEditor.prototype.createSwimlaneLayout = function ()
Creates the layout instance used to layout the children of each swimlane.
mxEditor.prototype.createSwimlaneManager = function (graph)
Sets the graph’s container using mxGraph.init.
mxConnectionHandler.prototype.createTargetVertex = function(evt,
source)
Hook method for creating new vertices on the fly if no target was under the mouse.
mxEditor.prototype.createTasks = function (div)
Updates the contents of the given DOM node to display the tasks associated with the current editor state.
mxEditor.prototype.createToolbar = function ()
Creates the toolbar with no container.
mxGraphModel.prototype.createUndoableEdit = function()
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event through the mxUndoableEdit’s source.
mxSession.prototype.createUndoableEdit = function(changes)
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event via the model.
mxGraph.prototype.createVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Hook method that creates the new vertex for insertVertex.
mxElbowEdgeHandler.prototype.createVirtualBend = function()
Creates a virtual bend that supports double clicking and calls mxGraph.flipEdge.
mxActor.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxArrow.prototype.createVml = function()
Extends mxShape.createVml to ignore fill if enableFill is false.
mxConnector.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxCylinder.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxDoubleEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLabel.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLine.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRectangleShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRhombus.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxStencilShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxSwimlane.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxText.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxLabel.prototype.createVmlImage = function(src,
opacity)
Creates an image node for the given image src and opacity to be used in VML.
mxGraphView.prototype.createVmlPane = function(width,
height)
Creates a drawing pane in VML (group).
mxShape.prototype.createVmlShadow = function(node)
Creates the VML shadow node.
createXmlDocument: function()
Returns a new, empty XML document.
mxHierarchicalLayout.prototype.crossingStage = function(parent)
Executes the crossing stage using mxMedianHybridCrossingReduction.
mxPath.prototype.curveTo = function(x1,
y1,
x2,
y2,
x,
y)
Draws a cubic Bézier curve from the current point to (x, y) using (x1, y1) as the control point at the beginning of the curve and (x2, y2) as the control point at the end of the curve.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
cut: function(graph,
cells)
Cuts the given array of mxCells from the specified graph.
mxEditor.prototype.cycleAttribute = function (cell)
Uses the returned value from consumeCycleAttribute as the value for the cycleAttributeName key in the given cell’s style.
mxHierarchicalLayout.prototype.cycleStage = function(parent)
Executes the cycle stage using mxMinimumCycleRemover.
diff --git a/docs/js-api/index/Functions4.html b/docs/js-api/index/Functions4.html index 9cbef1ddf..30410d561 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
 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.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(state)
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.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/General15.html b/docs/js-api/index/General15.html index 21183d759..3a7659429 100644 --- a/docs/js-api/index/General15.html +++ b/docs/js-api/index/General15.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 radius
 radiusSquared, mxFastOrganicLayout
 rankBottomY, mxCoordinateAssignment
 rankCoordinates, mxCoordinateAssignment
 rankIndex, WeightedCellSorter
 rankMedianPosition, mxCoordinateAssignment
 ranks, mxGraphHierarchyModel
 rankTopY, mxCoordinateAssignment
 rankWidths, mxCoordinateAssignment
 rankY, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 RECEIVE
 received, mxSession
 reconfigure
 rect
 RECTANGLE_ROUNDING_FACTOR, mxConstants
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 redirectMouseEvents, mxEvent
 redo
 REDO
 redone, mxUndoableEdit
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawForeignObject, mxText
 redrawHtml
 redrawHtmlTable, mxText
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawMarker, mxConnector
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxStencilShape
 redrawSvg
 redrawSvgTextNodes, mxText
 redrawTextbox, mxText
 redrawVml
 reduceTemperature, mxFastOrganicLayout
 reference, mxCodec
 refresh
 REFRESH
 refreshHandler, mxSelectionCellsHandler
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relative, mxGeometry
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgClip, mxText
 remove
 REMOVE_CELLS
 REMOVE_CELLS_FROM_PARENT
 REMOVE_OVERLAY
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent
 removeCursors, mxUtils
 removeEdge, mxCell
 removeEnabled, mxEdgeHandler
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderDom, mxStencil
 renderHint, mxGraph
 rendering, mxGraphView
 RENDERING_HINT_EXACT, mxConstants
 RENDERING_HINT_FASTER, mxConstants
 RENDERING_HINT_FASTEST, mxConstants
 renderPage, mxPrintPreview
 repaint, mxRubberband
 repaintGraph, mxUtils
 reparseVml, mxShape
 replaceLinefeeds, mxText
 repositionValid, mxCoordinateAssignment
 request, mxXmlRequest
 reset
 resetEdge, mxGraph
 resetEdges
 resetEdgesOnConnect, mxGraph
 resetEdgesOnMove, mxGraph
 resetEdgesOnResize, mxGraph
 resetFirstTime, mxEditor
 resetHandler
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resetViewOnRootChange, mxGraph
 resize, mxDivResizer
 RESIZE, mxEvent
 RESIZE_CELLS
 RESIZE_END, mxEvent
 RESIZE_START, mxEvent
 resizeCell
 resizeCells, mxGraph
 resizeContainer, mxGraph
 resizeEnabled, mxSwimlaneManager
 resizeHandler, mxSpaceManager
 resizeHeight, mxDivResizer
 resizeLast, mxStackLayout
 resizeParent
 resizeSwimlane, mxSwimlaneManager
 resizeVertices, mxPartitionLayout
 resizeWidth, mxDivResizer
 resolve, mxCellPath
 resolveColor, mxCellRenderer
 resources, mxResources
 restore
 restoreClone, mxGraphModel
 resume, mxSession
 RESUME
 revalidate, mxGraphView
 revalidateState, mxCellStatePreview
 reverse, mxObjectCodec
 reversePortConstraints, mxUtils
 RhombusPerimeter, mxPerimeter
 root, mxGraphModel
 ROOT
 rootChanged, mxGraphModel
 roots
 rotate
 ROTATION_HANDLE, mxEvent
 roundedCrispSvg, mxShape
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run, mxHierarchicalLayout
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 radius
 radiusSquared, mxFastOrganicLayout
 rankBottomY, mxCoordinateAssignment
 rankCoordinates, mxCoordinateAssignment
 rankIndex, WeightedCellSorter
 rankMedianPosition, mxCoordinateAssignment
 ranks, mxGraphHierarchyModel
 rankTopY, mxCoordinateAssignment
 rankWidths, mxCoordinateAssignment
 rankY, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 RECEIVE
 received, mxSession
 reconfigure
 rect
 RECTANGLE_ROUNDING_FACTOR, mxConstants
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 redirectMouseEvents, mxEvent
 redo
 REDO
 redone, mxUndoableEdit
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawForeignObject, mxText
 redrawHtml
 redrawHtmlTable, mxText
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawMarker, mxConnector
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxStencilShape
 redrawSvg
 redrawSvgTextNodes, mxText
 redrawTextbox, mxText
 redrawVml
 reduceTemperature, mxFastOrganicLayout
 reference, mxCodec
 refresh
 REFRESH
 refreshHandler, mxSelectionCellsHandler
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relative, mxGeometry
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgClip, mxText
 remove
 REMOVE_CELLS
 REMOVE_CELLS_FROM_PARENT
 REMOVE_OVERLAY
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent
 removeCursors, mxUtils
 removeEdge, mxCell
 removeEnabled, mxEdgeHandler
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderDom, mxStencil
 renderHint, mxGraph
 rendering, mxGraphView
 RENDERING_HINT_EXACT, mxConstants
 RENDERING_HINT_FASTER, mxConstants
 RENDERING_HINT_FASTEST, mxConstants
 renderPage, mxPrintPreview
 repaint
 repaintGraph, mxUtils
 reparseVml, mxShape
 replaceLinefeeds, mxText
 repositionValid, mxCoordinateAssignment
 request, mxXmlRequest
 reset
 resetEdge, mxGraph
 resetEdges
 resetEdgesOnConnect, mxGraph
 resetEdgesOnMove, mxGraph
 resetEdgesOnResize, mxGraph
 resetFirstTime, mxEditor
 resetHandler
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resetViewOnRootChange, mxGraph
 resize, mxDivResizer
 RESIZE, mxEvent
 RESIZE_CELLS
 RESIZE_END, mxEvent
 RESIZE_START, mxEvent
 resizeCell
 resizeCells, mxGraph
 resizeContainer, mxGraph
 resizeEnabled, mxSwimlaneManager
 resizeHandler, mxSpaceManager
 resizeHeight, mxDivResizer
 resizeLast, mxStackLayout
 resizeParent
 resizeSwimlane, mxSwimlaneManager
 resizeVertices, mxPartitionLayout
 resizeWidth, mxDivResizer
 resolve, mxCellPath
 resolveColor, mxCellRenderer
 resources, mxResources
 restore
 restoreClone, mxGraphModel
 resume, mxSession
 RESUME
 revalidate, mxGraphView
 revalidateState, mxCellStatePreview
 reverse, mxObjectCodec
 reversePortConstraints, mxUtils
 RhombusPerimeter, mxPerimeter
 root, mxGraphModel
 ROOT
 rootChanged, mxGraphModel
 roots
 rotate
 ROTATION_HANDLE, mxEvent
 roundedCrispSvg, mxShape
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run, mxHierarchicalLayout
-
mxCircleLayout.prototype.radius
Integer specifying the size of the radius.
mxFastOrganicLayout.prototype.radius
The approximate radius of each cell, nodes only.
mxFastOrganicLayout.prototype.radiusSquared
The approximate radius squared of each cell, nodes only.
mxCoordinateAssignment.prototype.rankBottomY
Internal cache of bottom-most value of Y for each rank
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
WeightedCellSorter.prototype.rankIndex
The index this cell is in the model rank.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxGraphHierarchyModel.prototype.ranks
Mapping from rank number to actual rank
mxCoordinateAssignment.prototype.rankTopY
Internal cache of top-most values of Y for each rank
mxCoordinateAssignment.prototype.rankWidths
The width of all the ranks
mxCoordinateAssignment.prototype.rankY
The Y-coordinate of all the ranks
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
Specifies the event name for receive.
Fires after an XML node was received in receive.
mxSession.prototype.received
Total number of received bytes.
mxArrow.prototype.reconfigure = function()
Extends mxActor.reconfigure to ignore fill if enableFill is false.
mxCylinder.prototype.reconfigure = function()
Overrides the method to make sure the stroke is applied to the foreground.
mxLabel.prototype.reconfigure = function()
Reconfigures this shape.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSwimlane.prototype.reconfigure = function(node)
Overrides to avoid filled content area in HTML and updates the shadow in SVG.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
Defines the rounding factor for rounded rectangles in percent between 0 and 1.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
Specifies the event name for redo.
Fires afer a significant edit was redone in redo.
mxUndoableEdit.prototype.redone
Specifies if this edit has been redone.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redraw = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Overrides redraw to define a unified implementation for redrawing all supported dialects.
mxShape.prototype.redraw = function()
Invokes redrawSvg, redrawVml or redrawHtml depending on the dialect of the shape.
mxStencilShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state)
Redraws the control for the given cell state.
mxText.prototype.redrawForeignObject = function()
Redraws the foreign object for this text.
mxRhombus.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawHtml = function()
Redraws this HTML shape by invoking updateHtmlShape on this.node.
mxSwimlane.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtmlTable = function()
Redraws the HTML table.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state)
Redraws the label for the given cell state.
mxConnector.prototype.redrawMarker = function(node,
type,
p0,
pe,
color,
size)
Updates the given SVG or VML marker.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxArrow.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(path,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxStencilShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxActor.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxArrow.prototype.redrawSvg = function()
Extends mxActor.redrawSvg to update the event handling shape if one exists.
mxConnector.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxCylinder.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxImageShape.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxLine.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxPolyline.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxRhombus.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawSvg = function()
Redraws this SVG shape by invoking updateSvgShape on this.node, this.innerNode and this.shadowNode.
mxSwimlane.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvgTextNodes = function(x,
y,
dy)
Hook to update the position of the SVG text nodes.
mxText.prototype.redrawTextbox = function()
Redraws the textbox for this text.
mxActor.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxCylinder.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxPolyline.prototype.redrawVml = function()
Overrides the method to update the bounds if they have not been assigned.
mxRhombus.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawVml = function()
Redraws this VML shape by invoking updateVmlShape on this.node.
mxSwimlane.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
Specifies the event name for refresh.
Fires after refresh was executed.
mxSelectionCellsHandler.prototype.refreshHandler
Keeps a reference to an event listener for later removal.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.prototype.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
mxGeometry.prototype.relative
Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxText.prototype.releaseSvgClip = function()
Releases the given SVG clip removing it from the DOM if required.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
Specifies the event name for removeCells.
Fires between begin- and endUpdate in removeCells.
Specifies the event name for removeCellsFromParent.
Fires between begin- and endUpdate in removeCellsFromParent.
Specifies the event name for removeOverlay.
Fires after an overlay is removed in removeCellOverlay and removeCellOverlays.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
mxGraphHandler.prototype.removeCellsFromParent
Specifies if cells may be moved out of their parents.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxEdgeHandler.prototype.removeEnabled
Specifies if removing bends by shift-click is enabled.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxStencil.prototype.renderDom = function(shape,
bounds,
parentNode,
state)
Updates the SVG or VML shape.
mxGraph.prototype.renderHint
RenderHint as it was passed to the constructor.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
Defines the exact rendering hint.
Defines the faster rendering hint.
Defines the fastest rendering hint.
mxPrintPreview.prototype.renderPage = function(w,
h,
dx,
dy,
scale,
pageNumber)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
repaintGraph: function(graph,
pt)
Normally not required, this contains the code to workaround a repaint issue and force a repaint of the graph container in AppleWebKit.
mxShape.prototype.reparseVml = function()
Forces a parsing of the outerHTML of this node and restores all references specified in vmlNodes.
mxText.prototype.replaceLinefeeds
Specifies if linefeeds in HTML labels should be replaced with BR tags.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxXmlRequest.prototype.request
Holds the inner, browser-specific request object.
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxCircleLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxCompactTreeLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxFastOrganicLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxGraph.prototype.resetEdgesOnConnect
Specifies if edge control points should be reset after the the edge has been reconnected.
mxGraph.prototype.resetEdgesOnMove
Specifies if edge control points should be reset after the move of a connected cell.
mxGraph.prototype.resetEdgesOnResize
Specifies if edge control points should be reset after the resize of a connected cell.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxCellHighlight.prototype.resetHandler
Holds the handler that automatically invokes reset if the highlight should be hidden.
mxDefaultToolbar.prototype.resetHandler
Reference to the function used to reset the toolbar.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxGraph.prototype.resetViewOnRootChange
Specifies if the scale and translate should be reset if the root changes in the model.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
Specifies the event name for resize.
Specifies the event name for resizeCells.
Fires between begin- and endUpdate in resizeCells.
Specifies the event name for resizeEnd.
Specifies the event name for resizeStart.
mxGraph.prototype.resizeCell = function(cell,
bounds)
Sets the bounds of the given cell using resizeCells.
mxVertexHandler.prototype.resizeCell = function(cell,
dx,
dy,
index,
gridEnabled)
Uses the given vector to change the bounds of the given cell in the graph using mxGraph.resizeCell.
mxGraph.prototype.resizeCells = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
mxGraph.prototype.resizeContainer
Specifies if the container should be resized to the graph size when the graph size has changed.
mxSwimlaneManager.prototype.resizeEnabled
Specifies if resizing of swimlanes should be handled.
mxSpaceManager.prototype.resizeHandler
Holds the function that handles the move event.
Boolean specifying if the height should be updated.
mxStackLayout.prototype.resizeLast
If the last element should be resized to fill out the parent.
mxCompactTreeLayout.prototype.resizeParent
If the parents should be resized to match the width/height of the children.
mxHierarchicalLayout.prototype.resizeParent
Specifies if the parent should be resized after the layout so that it contains all the child cells.
mxStackLayout.prototype.resizeParent
If the parent should be resized to match the width/height of the stack.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
mxPartitionLayout.prototype.resizeVertices
Boolean that specifies if vertices should be resized.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
Associative array that maps from keys to values.
restore: function()
Restores the state of the graphics object.
restore: function()
Restores the state of the graphics object.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
Specifies the event name for suspend.
Fires after the session was resumed in resume.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
mxObjectCodec.prototype.reverse
Maps from from XML attribute names to fieldnames.
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
Fires when the current root has changed, or when the title of the current root has changed.
Specifies the event name for root.
Fires if the root in the model has changed.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
mxGraphHierarchyModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxHierarchicalLayout.prototype.roots
Holds the array of mxGraphLayouts that this layout contains.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
Index for the rotation handle in an mxMouseEvent.
mxShape.prototype.roundedCrispSvg
Specifies if crisp rendering should be enabled for rounded shapes.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
+
mxCircleLayout.prototype.radius
Integer specifying the size of the radius.
mxFastOrganicLayout.prototype.radius
The approximate radius of each cell, nodes only.
mxFastOrganicLayout.prototype.radiusSquared
The approximate radius squared of each cell, nodes only.
mxCoordinateAssignment.prototype.rankBottomY
Internal cache of bottom-most value of Y for each rank
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
WeightedCellSorter.prototype.rankIndex
The index this cell is in the model rank.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxGraphHierarchyModel.prototype.ranks
Mapping from rank number to actual rank
mxCoordinateAssignment.prototype.rankTopY
Internal cache of top-most values of Y for each rank
mxCoordinateAssignment.prototype.rankWidths
The width of all the ranks
mxCoordinateAssignment.prototype.rankY
The Y-coordinate of all the ranks
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
Specifies the event name for receive.
Fires after an XML node was received in receive.
mxSession.prototype.received
Total number of received bytes.
mxArrow.prototype.reconfigure = function()
Extends mxActor.reconfigure to ignore fill if enableFill is false.
mxCylinder.prototype.reconfigure = function()
Overrides the method to make sure the stroke is applied to the foreground.
mxLabel.prototype.reconfigure = function()
Reconfigures this shape.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSwimlane.prototype.reconfigure = function(node)
Overrides to avoid filled content area in HTML and updates the shadow in SVG.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
Defines the rounding factor for rounded rectangles in percent between 0 and 1.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
Specifies the event name for redo.
Fires afer a significant edit was redone in redo.
mxUndoableEdit.prototype.redone
Specifies if this edit has been redone.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redraw = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Overrides redraw to define a unified implementation for redrawing all supported dialects.
mxShape.prototype.redraw = function()
Invokes redrawSvg, redrawVml or redrawHtml depending on the dialect of the shape.
mxStencilShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state)
Redraws the control for the given cell state.
mxText.prototype.redrawForeignObject = function()
Redraws the foreign object for this text.
mxRhombus.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawHtml = function()
Redraws this HTML shape by invoking updateHtmlShape on this.node.
mxSwimlane.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtmlTable = function()
Redraws the HTML table.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state)
Redraws the label for the given cell state.
mxConnector.prototype.redrawMarker = function(node,
type,
p0,
pe,
color,
size)
Updates the given SVG or VML marker.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxArrow.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(path,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxStencilShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxActor.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxArrow.prototype.redrawSvg = function()
Extends mxActor.redrawSvg to update the event handling shape if one exists.
mxConnector.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxCylinder.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxImageShape.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxLine.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxPolyline.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxRhombus.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawSvg = function()
Redraws this SVG shape by invoking updateSvgShape on this.node, this.innerNode and this.shadowNode.
mxSwimlane.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvgTextNodes = function(x,
y,
dy)
Hook to update the position of the SVG text nodes.
mxText.prototype.redrawTextbox = function()
Redraws the textbox for this text.
mxActor.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxCylinder.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxPolyline.prototype.redrawVml = function()
Overrides the method to update the bounds if they have not been assigned.
mxRhombus.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawVml = function()
Redraws this VML shape by invoking updateVmlShape on this.node.
mxSwimlane.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
Specifies the event name for refresh.
Fires after refresh was executed.
mxSelectionCellsHandler.prototype.refreshHandler
Keeps a reference to an event listener for later removal.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.prototype.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
mxGeometry.prototype.relative
Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxText.prototype.releaseSvgClip = function()
Releases the given SVG clip removing it from the DOM if required.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
Specifies the event name for removeCells.
Fires between begin- and endUpdate in removeCells.
Specifies the event name for removeCellsFromParent.
Fires between begin- and endUpdate in removeCellsFromParent.
Specifies the event name for removeOverlay.
Fires after an overlay is removed in removeCellOverlay and removeCellOverlays.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
mxGraphHandler.prototype.removeCellsFromParent
Specifies if cells may be moved out of their parents.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxEdgeHandler.prototype.removeEnabled
Specifies if removing bends by shift-click is enabled.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxStencil.prototype.renderDom = function(shape,
bounds,
parentNode,
state)
Updates the SVG or VML shape.
mxGraph.prototype.renderHint
RenderHint as it was passed to the constructor.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
Defines the exact rendering hint.
Defines the faster rendering hint.
Defines the fastest rendering hint.
mxPrintPreview.prototype.renderPage = function(w,
h,
dx,
dy,
scale,
pageNumber)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxCellHighlight.prototype.repaint = function()
Updates the highlight after a change of the model or view.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
repaintGraph: function(graph,
pt)
Normally not required, this contains the code to workaround a repaint issue and force a repaint of the graph container in AppleWebKit.
mxShape.prototype.reparseVml = function()
Forces a parsing of the outerHTML of this node and restores all references specified in vmlNodes.
mxText.prototype.replaceLinefeeds
Specifies if linefeeds in HTML labels should be replaced with BR tags.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxXmlRequest.prototype.request
Holds the inner, browser-specific request object.
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxCircleLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxCompactTreeLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxFastOrganicLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxGraph.prototype.resetEdgesOnConnect
Specifies if edge control points should be reset after the the edge has been reconnected.
mxGraph.prototype.resetEdgesOnMove
Specifies if edge control points should be reset after the move of a connected cell.
mxGraph.prototype.resetEdgesOnResize
Specifies if edge control points should be reset after the resize of a connected cell.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxCellHighlight.prototype.resetHandler
Holds the handler that automatically invokes reset if the highlight should be hidden.
mxDefaultToolbar.prototype.resetHandler
Reference to the function used to reset the toolbar.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxGraph.prototype.resetViewOnRootChange
Specifies if the scale and translate should be reset if the root changes in the model.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
Specifies the event name for resize.
Specifies the event name for resizeCells.
Fires between begin- and endUpdate in resizeCells.
Specifies the event name for resizeEnd.
Specifies the event name for resizeStart.
mxGraph.prototype.resizeCell = function(cell,
bounds)
Sets the bounds of the given cell using resizeCells.
mxVertexHandler.prototype.resizeCell = function(cell,
dx,
dy,
index,
gridEnabled)
Uses the given vector to change the bounds of the given cell in the graph using mxGraph.resizeCell.
mxGraph.prototype.resizeCells = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
mxGraph.prototype.resizeContainer
Specifies if the container should be resized to the graph size when the graph size has changed.
mxSwimlaneManager.prototype.resizeEnabled
Specifies if resizing of swimlanes should be handled.
mxSpaceManager.prototype.resizeHandler
Holds the function that handles the move event.
Boolean specifying if the height should be updated.
mxStackLayout.prototype.resizeLast
If the last element should be resized to fill out the parent.
mxCompactTreeLayout.prototype.resizeParent
If the parents should be resized to match the width/height of the children.
mxHierarchicalLayout.prototype.resizeParent
Specifies if the parent should be resized after the layout so that it contains all the child cells.
mxStackLayout.prototype.resizeParent
If the parent should be resized to match the width/height of the stack.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
mxPartitionLayout.prototype.resizeVertices
Boolean that specifies if vertices should be resized.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
Associative array that maps from keys to values.
restore: function()
Restores the state of the graphics object.
restore: function()
Restores the state of the graphics object.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
Specifies the event name for suspend.
Fires after the session was resumed in resume.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
mxObjectCodec.prototype.reverse
Maps from from XML attribute names to fieldnames.
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
Fires when the current root has changed, or when the title of the current root has changed.
Specifies the event name for root.
Fires if the root in the model has changed.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
mxGraphHierarchyModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxHierarchicalLayout.prototype.roots
Holds the array of mxGraphLayouts that this layout contains.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
Index for the rotation handle in an mxMouseEvent.
mxShape.prototype.roundedCrispSvg
Specifies if crisp rendering should be enabled for rounded shapes.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
diff --git a/docs/js-api/index/General16.html b/docs/js-api/index/General16.html index 052d90e36..4962ed53c 100644 --- a/docs/js-api/index/General16.html +++ b/docs/js-api/index/General16.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 save
 SAVE
 saveAs, mxUtils
 scale
 SCALE
 SCALE_AND_TRANSLATE
 scaleAndTranslate, mxGraphView
 scaleGrid, mxGraphHandler
 scanRanksFromSinks, mxGraphHierarchyModel
 scheduleUpdateAspect, mxImageShape
 scrollCellToVisible, mxGraph
 scrollOnMove, mxGraphHandler
 scrollPointToVisible, mxGraph
 scrollRectToVisible, mxGraph
 SegmentConnector, mxEdgeStyle
 segments, mxCellState
 select, mxConnectionHandler
 SELECT
 selectAll, mxGraph
 selectCell, mxGraph
 selectCellForEvent, mxGraph
 selectCells
 selectCellsForEvent, mxGraph
 selectChildCell, mxGraph
 selectDelayed, mxGraphHandler
 selectEnabled, mxGraphHandler
 Selection, mxGraph
 Selection state, mxGraph
 SELECTION_DASHED, mxConstants
 selectionModel, mxGraph
 selectMode, mxToolbar
 selectNextCell, mxGraph
 selectOnPopup, mxPanningHandler
 selectParentCell, mxGraph
 selectPreviousCell, mxGraph
 selectRegion, mxGraph
 selectVertices, mxGraph
 send
 sent, mxSession
 SESSION
 setAbsoluteTerminalPoint, mxCellState
 setAddEnabled, mxSwimlaneManager
 setAllowDanglingEdges, mxGraph
 setAllowEval, mxGraphView
 setAllowLoops, mxGraph
 setAlpha
 setAttribute
 setAutoAntiAlias, mxSvgCanvas2D
 setAutoSizeCells, mxGraph
 setBackgroundImage, mxGraph
 setBaseUrl, mxUrlConverter
 setBinary, mxXmlRequest
 setBorder, mxGraph
 setBubbling, mxLayoutManager
 setCell, mxGraphSelectionModel
 setCellLocations, mxCoordinateAssignment
 setCells, mxGraphSelectionModel
 setCellsBendable, mxGraph
 setCellsCloneable, mxGraph
 setCellsDeletable, mxGraph
 setCellsDisconnectable, mxGraph
 setCellsEditable, mxGraph
 setCellsMovable, mxGraph
 setCellsResizable, mxGraph
 setCellsSelectable, mxGraph
 setCellStyle, mxGraph
 setCellStyleFlags
 setCellStyles
 setCellWarning, mxGraph
 setCloneEnabled, mxGraphHandler
 setCloneInvalidEdges, mxGraph
 setClosable, mxWindow
 setCollapsed
 setCompressed, mxXmlCanvas2D
 setConnectable
 setConnectableEdges, mxGraph
 setConnectionConstraint, mxGraph
 setConstrainChildren, mxGraph
 setCreateIds, mxGraphModel
 setCreateTarget, mxConnectionHandler
 setCurrentRoot, mxGraphView
 setCursor
 setDashed
 setDashPattern
 setDefaultParent, mxGraph
 setDisconnectOnMove, mxGraph
 setDropEnabled, mxGraph
 setEdge, mxCell
 setEdgePoints, mxGraphLayout
 setEdgePosition, mxCoordinateAssignment
 setEdgeStyleEnabled, mxGraphLayout
 setEnabled
 setEnterStopsCellEditing, mxGraph
 setEscapeEnabled, mxGraph
 setEventsEnabled, mxEventSource
 setEventSource, mxEventSource
 setExtendParents, mxGraph
 setExtendParentsOnAdd, mxGraph
 setFillColor
 setFoEnabled, mxSvgCanvas2D
 setFontColor
 setFontFamily
 setFontSize
 setFontStyle
 setGeneralPurposeVariable
 setGeometry
 setGlassGradient
 setGradient
 setGraph
 setGraphBounds, mxGraphView
 setGraphContainer, mxEditor
 setGridEnabled
 setGridSize, mxGraph
 setGuidesEnabled, mxDragSource
 setHideOnHover, mxTooltipHandler
 setHighlightColor
 setHorizontal, mxSwimlaneManager
 setHotspot, mxCellMarker
 setHotspotEnabled, mxCellMarker
 setHtmlLabels, mxGraph
 setId, mxCell
 setImage, mxWindow
 setInvokesStopCellEditing, mxGraph
 setLineCap
 setLineJoin
 setLocation, mxWindow
 setLocked, mxGraph
 setMaximizable, mxWindow
 setMinimizable, mxWindow
 setMiterLimit
 setMode, mxEditor
 setModified
 setMoveEnabled, mxGraphHandler
 setMultigraph, mxGraph
 setOpacity, mxUtils
 setOrthogonalEdge, mxGraphLayout
 setPanning, mxGraph
 setPanningEnabled, mxPanningHandler
 setParent, mxCell
 setPortsEnabled, mxGraph
 setPreviewColor, mxEdgeHandler
 setRect, mxRectangle
 setRemoveCellsFromParent, mxGraphHandler
 setRendering, mxGraphView
 setRequestHeaders, mxXmlRequest
 setResizable, mxWindow
 setResizeContainer, mxGraph
 setResizeEnabled, mxSwimlaneManager
 setRoot, mxGraphModel
 setScale, mxGraphView
 setScrollable, mxWindow
 setSelectEnabled, mxGraphHandler
 setSelectionCell, mxGraph
 setSelectionCells, mxGraph
 setSelectionModel, mxGraph
 setShiftDownwards, mxSpaceManager
 setShiftRightwards, mxSpaceManager
 setSingleSelection, mxGraphSelectionModel
 setSize, mxWindow
 setSplitEnabled, mxGraph
 setStates
 setStatus, mxEditor
 setStatusContainer, mxEditor
 setStrokeColor
 setStrokeWidth
 setStyle
 setStyleFlag, mxUtils
 setStylesheet, mxGraph
 setSwimlaneNesting, mxGraph
 setSwimlaneSelectionEnabled, mxGraph
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTextEnabled
 setTitle, mxWindow
 setTitleContainer, mxEditor
 setTolerance, mxGraph
 setToolbarContainer, mxEditor
 setTooltips, mxGraph
 setTranslate
 setValue
 setVertex, mxCell
 setVertexLabelsMovable, mxGraph
 setVertexLocation
 setVisible
 setVisibleTerminalState, mxCellState
 setX, mxGraphAbstractHierarchyCell
 setY, mxGraphAbstractHierarchyCell
 setZoomEnabled, mxOutline
 shadow
 SHADOW_OFFSET_X, mxConstants
 SHADOW_OFFSET_Y, mxConstants
 SHADOW_OPACITY, mxConstants
 SHADOWCOLOR, mxConstants
 shape
 SHAPE_ACTOR, mxConstants
 SHAPE_ARROW, mxConstants
 SHAPE_CLOUD, mxConstants
 SHAPE_CONNECTOR, mxConstants
 SHAPE_CYLINDER, mxConstants
 SHAPE_DOUBLE_ELLIPSE, mxConstants
 SHAPE_ELLIPSE, mxConstants
 SHAPE_HEXAGON, mxConstants
 SHAPE_IMAGE, mxConstants
 SHAPE_LABEL, mxConstants
 SHAPE_LINE, mxConstants
 SHAPE_RECTANGLE, mxConstants
 SHAPE_RHOMBUS, mxConstants
 SHAPE_SWIMLANE, mxConstants
 SHAPE_TRIANGLE, mxConstants
 shapes
 sharedDiv, mxRubberband
 shiftCell, mxSpaceManager
 shiftDownwards, mxSpaceManager
 shiftKeys, mxKeyHandler
 shiftRightwards, mxSpaceManager
 shouldRemoveCellsFromParent, mxGraphHandler
 show
 SHOW
 showHelp, mxEditor
 showMenu, mxPopupMenu
 showOutline, mxEditor
 showProperties, mxEditor
 showSubmenu, mxPopupMenu
 showTasks, mxEditor
 showViewport, mxOutline
 SideToSide, mxEdgeStyle
 significant, mxUndoableEdit
 significantRemoteChanges, mxSession
 simulate, mxXmlRequest
 singleSelection, mxGraphSelectionModel
 singleSizer, mxVertexHandler
 size, mxUndoManager
 SIZE
 sizeDidChange, mxGraph
 sizerImage, mxOutline
 smartSeparators, mxPopupMenu
 snap
 snapToTerminals, mxEdgeHandler
 sortCells, mxUtils
 source
 sourcePoint, mxGeometry
 SOURCESCANSTARTRANK, mxGraphHierarchyModel
 spacing
 SPLIT_EDGE
 splitEdge, mxGraph
 splitEnabled, mxGraph
 src, mxImage
 start
 START_EDITING
 startAnimation, mxAnimation
 startDrag, mxDragSource
 startEditing
 startEditingAtCell, mxGraph
 startOffset, mxShape
 state
 states, mxGuide
 status, mxEditor
 stencil, mxStencilShape
 step, mxMorphing
 steps, mxMorphing
 STEPSIZE, mxClipboard
 stop, mxSession
 stopAnimation, mxAnimation
 stopDrag, mxDragSource
 stopEditing
 stopRecursion, mxMorphing
 stroke
 strokedBackground, mxCylinder
 strokewidth
 style
 STYLE_ALIGN, mxConstants
 STYLE_ARCSIZE, mxConstants
 STYLE_AUTOSIZE, mxConstants
 STYLE_BENDABLE, mxConstants
 STYLE_CLONEABLE, mxConstants
 STYLE_DASHED, mxConstants
 STYLE_DELETABLE, mxConstants
 STYLE_DIRECTION, mxConstants
 STYLE_EDGE, mxConstants
 STYLE_EDITABLE, mxConstants
 STYLE_ELBOW, mxConstants
 STYLE_ENDARROW, mxConstants
 STYLE_ENDFILL, mxConstants
 STYLE_ENDSIZE, mxConstants
 STYLE_ENTRY_PERIMETER, mxConstants
 STYLE_ENTRY_X, mxConstants
 STYLE_ENTRY_Y, mxConstants
 STYLE_EXIT_PERIMETER, mxConstants
 STYLE_EXIT_X, mxConstants
 STYLE_EXIT_Y, mxConstants
 STYLE_FILLCOLOR, mxConstants
 STYLE_FOLDABLE, mxConstants
 STYLE_FONTCOLOR, mxConstants
 STYLE_FONTFAMILY, mxConstants
 STYLE_FONTSIZE, mxConstants
 STYLE_FONTSTYLE, mxConstants
 STYLE_GLASS, mxConstants
 STYLE_GRADIENT_DIRECTION, mxConstants
 STYLE_GRADIENTCOLOR, mxConstants
 STYLE_HORIZONTAL, mxConstants
 STYLE_IMAGE, mxConstants
 STYLE_IMAGE_ALIGN, mxConstants
 STYLE_IMAGE_ASPECT, mxConstants
 STYLE_IMAGE_BACKGROUND, mxConstants
 STYLE_IMAGE_BORDER, mxConstants
 STYLE_IMAGE_FLIPH, mxConstants
 STYLE_IMAGE_FLIPV, mxConstants
 STYLE_IMAGE_HEIGHT, mxConstants
 STYLE_IMAGE_VERTICAL_ALIGN, mxConstants
 STYLE_IMAGE_WIDTH, mxConstants
 STYLE_INDICATOR_COLOR, mxConstants
 STYLE_INDICATOR_DIRECTION, mxConstants
 STYLE_INDICATOR_GRADIENTCOLOR, mxConstants
 STYLE_INDICATOR_HEIGHT, mxConstants
 STYLE_INDICATOR_IMAGE, mxConstants
 STYLE_INDICATOR_SHAPE, mxConstants
 STYLE_INDICATOR_SPACING, mxConstants
 STYLE_INDICATOR_STROKECOLOR, mxConstants
 STYLE_INDICATOR_WIDTH, mxConstants
 STYLE_LABEL_BACKGROUNDCOLOR, mxConstants
 STYLE_LABEL_BORDERCOLOR, mxConstants
 STYLE_LABEL_PADDING, mxConstants
 STYLE_LABEL_POSITION, mxConstants
 STYLE_LOOP, mxConstants
 STYLE_MOVABLE, mxConstants
 STYLE_NOEDGESTYLE, mxConstants
 STYLE_NOLABEL, mxConstants
 STYLE_OPACITY, mxConstants
 STYLE_ORTHOGONAL, mxConstants
 STYLE_OVERFLOW, mxConstants
 STYLE_PERIMETER, mxConstants
 STYLE_PERIMETER_SPACING, mxConstants
 STYLE_PORT_CONSTRAINT, mxConstants
 STYLE_RESIZABLE, mxConstants
 STYLE_ROTATION, mxConstants
 STYLE_ROUNDED, mxConstants
 STYLE_ROUTING_CENTER_X, mxConstants
 STYLE_ROUTING_CENTER_Y, mxConstants
 STYLE_SEGMENT, mxConstants
 STYLE_SEPARATORCOLOR, mxConstants
 STYLE_SHADOW, mxConstants
 STYLE_SHAPE, mxConstants
 STYLE_SMOOTH, mxConstants
 STYLE_SOURCE_PERIMETER_SPACING, mxConstants
 STYLE_SOURCE_PORT, mxConstants
 STYLE_SPACING, mxConstants
 STYLE_SPACING_BOTTOM, mxConstants
 STYLE_SPACING_LEFT, mxConstants
 STYLE_SPACING_RIGHT, mxConstants
 STYLE_SPACING_TOP, mxConstants
 STYLE_STARTARROW, mxConstants
 STYLE_STARTFILL, mxConstants
 STYLE_STARTSIZE, mxConstants
 STYLE_STENCIL_FLIPH, mxConstants
 STYLE_STENCIL_FLIPV, mxConstants
 STYLE_STROKECOLOR, mxConstants
 STYLE_STROKEWIDTH, mxConstants
 STYLE_TARGET_PERIMETER_SPACING, mxConstants
 STYLE_TARGET_PORT, mxConstants
 STYLE_TEXT_OPACITY, mxConstants
 STYLE_VERTICAL_ALIGN, mxConstants
 STYLE_VERTICAL_LABEL_POSITION, mxConstants
 STYLE_WHITE_SPACE, mxConstants
 styleForCellChanged, mxGraphModel
 styles, mxStylesheet
 stylesheet, mxGraph
 submenuImage, mxPopupMenu
 submit, mxUtils
 suspend, mxSession
 SUSPEND
 suspended, mxOutline
 SVG_STROKE_TOLERANCE, mxShape
 swap, mxGeometry
 swapBounds, mxGraph
 swapStyles, mxEditor
 swimlaneAdded, mxSwimlaneManager
 swimlaneIndicatorColorAttribute, mxGraph
 swimlaneNesting, mxGraph
 swimlaneRequired, mxEditor
 swimlaneSelectionEnabled, mxGraph
 swimlaneSpacing, mxEditor
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 save
 SAVE
 saveAs, mxUtils
 scale
 SCALE
 SCALE_AND_TRANSLATE
 scaleAndTranslate, mxGraphView
 scaleGrid, mxGraphHandler
 scanRanksFromSinks, mxGraphHierarchyModel
 scheduleUpdateAspect, mxImageShape
 scrollCellToVisible, mxGraph
 scrollOnMove, mxGraphHandler
 scrollPointToVisible, mxGraph
 scrollRectToVisible, mxGraph
 SegmentConnector, mxEdgeStyle
 segments, mxCellState
 select, mxConnectionHandler
 SELECT
 selectAll, mxGraph
 selectCell, mxGraph
 selectCellForEvent, mxGraph
 selectCells
 selectCellsForEvent, mxGraph
 selectChildCell, mxGraph
 selectDelayed, mxGraphHandler
 selectEnabled, mxGraphHandler
 Selection, mxGraph
 Selection state, mxGraph
 SELECTION_DASHED, mxConstants
 selectionModel, mxGraph
 selectMode, mxToolbar
 selectNextCell, mxGraph
 selectOnPopup, mxPanningHandler
 selectParentCell, mxGraph
 selectPreviousCell, mxGraph
 selectRegion, mxGraph
 selectVertices, mxGraph
 send
 sent, mxSession
 SESSION
 setAbsoluteTerminalPoint, mxCellState
 setAddEnabled, mxSwimlaneManager
 setAllowDanglingEdges, mxGraph
 setAllowEval, mxGraphView
 setAllowLoops, mxGraph
 setAlpha
 setAttribute
 setAutoAntiAlias, mxSvgCanvas2D
 setAutoSizeCells, mxGraph
 setBackgroundImage, mxGraph
 setBaseUrl, mxUrlConverter
 setBinary, mxXmlRequest
 setBorder, mxGraph
 setBubbling, mxLayoutManager
 setCell, mxGraphSelectionModel
 setCellLocations, mxCoordinateAssignment
 setCells, mxGraphSelectionModel
 setCellsBendable, mxGraph
 setCellsCloneable, mxGraph
 setCellsDeletable, mxGraph
 setCellsDisconnectable, mxGraph
 setCellsEditable, mxGraph
 setCellsMovable, mxGraph
 setCellsResizable, mxGraph
 setCellsSelectable, mxGraph
 setCellStyle, mxGraph
 setCellStyleFlags
 setCellStyles
 setCellWarning, mxGraph
 setCloneEnabled, mxGraphHandler
 setCloneInvalidEdges, mxGraph
 setClosable, mxWindow
 setCollapsed
 setCompressed, mxXmlCanvas2D
 setConnectable
 setConnectableEdges, mxGraph
 setConnectionConstraint, mxGraph
 setConstrainChildren, mxGraph
 setCreateIds, mxGraphModel
 setCreateTarget, mxConnectionHandler
 setCurrentRoot, mxGraphView
 setCursor
 setDashed
 setDashPattern
 setDefaultParent, mxGraph
 setDisconnectOnMove, mxGraph
 setDropEnabled, mxGraph
 setEdge, mxCell
 setEdgePoints, mxGraphLayout
 setEdgePosition, mxCoordinateAssignment
 setEdgeStyleEnabled, mxGraphLayout
 setEnabled
 setEnterStopsCellEditing, mxGraph
 setEscapeEnabled, mxGraph
 setEventsEnabled, mxEventSource
 setEventSource, mxEventSource
 setExtendParents, mxGraph
 setExtendParentsOnAdd, mxGraph
 setFillColor
 setFoEnabled, mxSvgCanvas2D
 setFontColor
 setFontFamily
 setFontSize
 setFontStyle
 setGeneralPurposeVariable
 setGeometry
 setGlassGradient
 setGradient
 setGraph
 setGraphBounds, mxGraphView
 setGraphContainer, mxEditor
 setGridEnabled
 setGridSize, mxGraph
 setGuidesEnabled, mxDragSource
 setHideOnHover, mxTooltipHandler
 setHighlightColor
 setHorizontal, mxSwimlaneManager
 setHotspot, mxCellMarker
 setHotspotEnabled, mxCellMarker
 setHtmlLabels, mxGraph
 setId, mxCell
 setImage, mxWindow
 setInvokesStopCellEditing, mxGraph
 setLineCap
 setLineJoin
 setLocation, mxWindow
 setLocked, mxGraph
 setMaximizable, mxWindow
 setMinimizable, mxWindow
 setMiterLimit
 setMode, mxEditor
 setModified
 setMoveEnabled, mxGraphHandler
 setMultigraph, mxGraph
 setOpacity, mxUtils
 setOrthogonalEdge, mxGraphLayout
 setPanning, mxGraph
 setPanningEnabled, mxPanningHandler
 setParent, mxCell
 setPortsEnabled, mxGraph
 setPreviewColor, mxEdgeHandler
 setRect, mxRectangle
 setRemoveCellsFromParent, mxGraphHandler
 setRendering, mxGraphView
 setRequestHeaders, mxXmlRequest
 setResizable, mxWindow
 setResizeContainer, mxGraph
 setResizeEnabled, mxSwimlaneManager
 setRoot, mxGraphModel
 setScale, mxGraphView
 setScrollable, mxWindow
 setSelectEnabled, mxGraphHandler
 setSelectionCell, mxGraph
 setSelectionCells, mxGraph
 setSelectionModel, mxGraph
 setShiftDownwards, mxSpaceManager
 setShiftRightwards, mxSpaceManager
 setSingleSelection, mxGraphSelectionModel
 setSize, mxWindow
 setSplitEnabled, mxGraph
 setStates
 setStatus, mxEditor
 setStatusContainer, mxEditor
 setStrokeColor
 setStrokeWidth
 setStyle
 setStyleFlag, mxUtils
 setStylesheet, mxGraph
 setSwimlaneNesting, mxGraph
 setSwimlaneSelectionEnabled, mxGraph
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTextEnabled
 setTitle, mxWindow
 setTitleContainer, mxEditor
 setTolerance, mxGraph
 setToolbarContainer, mxEditor
 setTooltips, mxGraph
 setTranslate
 setValue
 setVertex, mxCell
 setVertexLabelsMovable, mxGraph
 setVertexLocation
 setVisible
 setVisibleTerminalState, mxCellState
 setX, mxGraphAbstractHierarchyCell
 setY, mxGraphAbstractHierarchyCell
 setZoomEnabled, mxOutline
 shadow
 SHADOW_OFFSET_X, mxConstants
 SHADOW_OFFSET_Y, mxConstants
 SHADOW_OPACITY, mxConstants
 SHADOWCOLOR, mxConstants
 shape
 SHAPE_ACTOR, mxConstants
 SHAPE_ARROW, mxConstants
 SHAPE_CLOUD, mxConstants
 SHAPE_CONNECTOR, mxConstants
 SHAPE_CYLINDER, mxConstants
 SHAPE_DOUBLE_ELLIPSE, mxConstants
 SHAPE_ELLIPSE, mxConstants
 SHAPE_HEXAGON, mxConstants
 SHAPE_IMAGE, mxConstants
 SHAPE_LABEL, mxConstants
 SHAPE_LINE, mxConstants
 SHAPE_RECTANGLE, mxConstants
 SHAPE_RHOMBUS, mxConstants
 SHAPE_SWIMLANE, mxConstants
 SHAPE_TRIANGLE, mxConstants
 shapes
 sharedDiv, mxRubberband
 shiftCell, mxSpaceManager
 shiftDownwards, mxSpaceManager
 shiftKeys, mxKeyHandler
 shiftRightwards, mxSpaceManager
 shouldRemoveCellsFromParent, mxGraphHandler
 show
 SHOW
 showHelp, mxEditor
 showMenu, mxPopupMenu
 showOutline, mxEditor
 showProperties, mxEditor
 showSubmenu, mxPopupMenu
 showTasks, mxEditor
 showViewport, mxOutline
 SideToSide, mxEdgeStyle
 significant, mxUndoableEdit
 significantRemoteChanges, mxSession
 simulate, mxXmlRequest
 singleSelection, mxGraphSelectionModel
 singleSizer, mxVertexHandler
 size, mxUndoManager
 SIZE
 sizeDidChange, mxGraph
 sizerImage, mxOutline
 smartSeparators, mxPopupMenu
 snap
 snapToTerminals, mxEdgeHandler
 sortCells, mxUtils
 source
 sourcePoint, mxGeometry
 SOURCESCANSTARTRANK, mxGraphHierarchyModel
 spacing
 SPLIT_EDGE
 splitEdge, mxGraph
 splitEnabled, mxGraph
 src, mxImage
 start
 START_EDITING
 startAnimation, mxAnimation
 startDrag, mxDragSource
 startEditing
 startEditingAtCell, mxGraph
 startOffset, mxShape
 state
 states, mxGuide
 status, mxEditor
 stencil, mxStencilShape
 step, mxMorphing
 steps, mxMorphing
 STEPSIZE, mxClipboard
 stop, mxSession
 stopAnimation, mxAnimation
 stopDrag, mxDragSource
 stopEditing
 stopRecursion, mxMorphing
 stroke
 strokedBackground, mxCylinder
 strokewidth
 style
 STYLE_ALIGN, mxConstants
 STYLE_ARCSIZE, mxConstants
 STYLE_AUTOSIZE, mxConstants
 STYLE_BENDABLE, mxConstants
 STYLE_CLONEABLE, mxConstants
 STYLE_DASHED, mxConstants
 STYLE_DELETABLE, mxConstants
 STYLE_DIRECTION, mxConstants
 STYLE_EDGE, mxConstants
 STYLE_EDITABLE, mxConstants
 STYLE_ELBOW, mxConstants
 STYLE_ENDARROW, mxConstants
 STYLE_ENDFILL, mxConstants
 STYLE_ENDSIZE, mxConstants
 STYLE_ENTRY_PERIMETER, mxConstants
 STYLE_ENTRY_X, mxConstants
 STYLE_ENTRY_Y, mxConstants
 STYLE_EXIT_PERIMETER, mxConstants
 STYLE_EXIT_X, mxConstants
 STYLE_EXIT_Y, mxConstants
 STYLE_FILLCOLOR, mxConstants
 STYLE_FOLDABLE, mxConstants
 STYLE_FONTCOLOR, mxConstants
 STYLE_FONTFAMILY, mxConstants
 STYLE_FONTSIZE, mxConstants
 STYLE_FONTSTYLE, mxConstants
 STYLE_GLASS, mxConstants
 STYLE_GRADIENT_DIRECTION, mxConstants
 STYLE_GRADIENTCOLOR, mxConstants
 STYLE_HORIZONTAL, mxConstants
 STYLE_IMAGE, mxConstants
 STYLE_IMAGE_ALIGN, mxConstants
 STYLE_IMAGE_ASPECT, mxConstants
 STYLE_IMAGE_BACKGROUND, mxConstants
 STYLE_IMAGE_BORDER, mxConstants
 STYLE_IMAGE_FLIPH, mxConstants
 STYLE_IMAGE_FLIPV, mxConstants
 STYLE_IMAGE_HEIGHT, mxConstants
 STYLE_IMAGE_VERTICAL_ALIGN, mxConstants
 STYLE_IMAGE_WIDTH, mxConstants
 STYLE_INDICATOR_COLOR, mxConstants
 STYLE_INDICATOR_DIRECTION, mxConstants
 STYLE_INDICATOR_GRADIENTCOLOR, mxConstants
 STYLE_INDICATOR_HEIGHT, mxConstants
 STYLE_INDICATOR_IMAGE, mxConstants
 STYLE_INDICATOR_SHAPE, mxConstants
 STYLE_INDICATOR_SPACING, mxConstants
 STYLE_INDICATOR_STROKECOLOR, mxConstants
 STYLE_INDICATOR_WIDTH, mxConstants
 STYLE_LABEL_BACKGROUNDCOLOR, mxConstants
 STYLE_LABEL_BORDERCOLOR, mxConstants
 STYLE_LABEL_PADDING, mxConstants
 STYLE_LABEL_POSITION, mxConstants
 STYLE_LOOP, mxConstants
 STYLE_MOVABLE, mxConstants
 STYLE_NOEDGESTYLE, mxConstants
 STYLE_NOLABEL, mxConstants
 STYLE_OPACITY, mxConstants
 STYLE_ORTHOGONAL, mxConstants
 STYLE_OVERFLOW, mxConstants
 STYLE_PERIMETER, mxConstants
 STYLE_PERIMETER_SPACING, mxConstants
 STYLE_PORT_CONSTRAINT, mxConstants
 STYLE_RESIZABLE, mxConstants
 STYLE_ROTATION, mxConstants
 STYLE_ROUNDED, mxConstants
 STYLE_ROUTING_CENTER_X, mxConstants
 STYLE_ROUTING_CENTER_Y, mxConstants
 STYLE_SEGMENT, mxConstants
 STYLE_SEPARATORCOLOR, mxConstants
 STYLE_SHADOW, mxConstants
 STYLE_SHAPE, mxConstants
 STYLE_SMOOTH, mxConstants
 STYLE_SOURCE_PERIMETER_SPACING, mxConstants
 STYLE_SOURCE_PORT, mxConstants
 STYLE_SPACING, mxConstants
 STYLE_SPACING_BOTTOM, mxConstants
 STYLE_SPACING_LEFT, mxConstants
 STYLE_SPACING_RIGHT, mxConstants
 STYLE_SPACING_TOP, mxConstants
 STYLE_STARTARROW, mxConstants
 STYLE_STARTFILL, mxConstants
 STYLE_STARTSIZE, mxConstants
 STYLE_STENCIL_FLIPH, mxConstants
 STYLE_STENCIL_FLIPV, mxConstants
 STYLE_STROKECOLOR, mxConstants
 STYLE_STROKEWIDTH, mxConstants
 STYLE_TARGET_PERIMETER_SPACING, mxConstants
 STYLE_TARGET_PORT, mxConstants
 STYLE_TEXT_OPACITY, mxConstants
 STYLE_VERTICAL_ALIGN, mxConstants
 STYLE_VERTICAL_LABEL_POSITION, mxConstants
 STYLE_WHITE_SPACE, mxConstants
 styleForCellChanged, mxGraphModel
 styles, mxStylesheet
 stylesheet, mxGraph
 submenuImage, mxPopupMenu
 submit, mxUtils
 suspend, mxSession
 SUSPEND
 suspended, mxOutline
 SVG_STROKE_TOLERANCE, mxShape
 swap, mxGeometry
 swapBounds, mxGraph
 swapStyles, mxEditor
 swimlaneAdded, mxSwimlaneManager
 swimlaneIndicatorColorAttribute, mxGraph
 swimlaneNesting, mxGraph
 swimlaneRequired, mxEditor
 swimlaneSelectionEnabled, mxGraph
 swimlaneSpacing, mxEditor
-
mxAutoSaveManager.prototype.save = function()
Empty hook that is called if the graph should be saved.
mxEditor.prototype.save = function (url,
linefeed)
Posts the string returned by writeGraphModel to the given URL or the URL returned by getUrlPost.
save: function()
Saves the state of the graphics object.
save: function(filename,
content)
Saves the specified content in the given file on the local file system.
save: function()
Saves the state of the graphics object.
Fires after the current file was saved in save.
Specifies the event name for open.
saveAs: function(content)
Saves the specified content by displaying a dialog to save the content as a file on the local filesystem.
mxGraphView.prototype.scale
Specifies the scale.
mxPath.prototype.scale
Number that specifies the translation of the path.
mxPrintPreview.prototype.scale
Holds the scale of the print preview.
mxShape.prototype.scale
Holds the scale in which the shape is being painted.
scale: function(value)
Scales the current graphics object.
scale: function(value)
Scales the current graphics object.
Specifies the event name for scale.
Fires after the scale was changed in setScale.
Specifies the event name for scaleAndTranslate.
Fires after the scale and translate have been changed in scaleAndTranslate.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxGraphHandler.prototype.scaleGrid
Specifies if the grid should be scaled.
mxGraphHierarchyModel.prototype.scanRanksFromSinks
Whether the rank assignment is done from the sinks or sources.
mxImageShape.prototype.scheduleUpdateAspect = function()
Schedules an asynchronous updateAspect using the current image.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraphHandler.prototype.scrollOnMove
Specifies if the view should be scrolled so that a moved cell is visible.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
SegmentConnector: function(state,
source,
target,
hints,
result)
Implements an orthogonal edge style.
mxCellState.prototype.segments
Array of numbers that represent the cached length of each segment of the edge.
mxConnectionHandler.prototype.select
Specifies if new edges should be selected.
Specifies the event name for select.
Fires when an item was selected in the toolbar.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxConnectionHandler.prototype.selectCells = function(edge,
target)
Selects the given edge after adding a new connection.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraphHandler.prototype.selectDelayed = function(me)
Implements the delayed selection for the given mouse event.
mxGraphHandler.prototype.selectEnabled
Specifies if selecting is enabled.
Defines the dashed state to be used for the vertex selection border.
mxGraph.prototype.selectionModel
Holds the mxGraphSelectionModel that models the current selection.
mxToolbar.prototype.selectMode = function(domNode,
funct)
Resets the state of the previously selected mode and displays the given DOM node as selected.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxPanningHandler.prototype.selectOnPopup
Specifies if cells should be selected if a popupmenu is displayed for them.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxXmlRequest.prototype.send = function(onload,
onerror)
Send the request to the target URL using the specified functions to process the response asychronously.
mxSession.prototype.sent
Total number of sent bytes.
Fires when anything in the session has changed.
Specifies the event name for session.
mxCellState.prototype.setAbsoluteTerminalPoint = function (point,
isSource)
Sets the first or last point in absolutePoints depending on isSource.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
setAlpha: function(alpha)
Sets the current alpha.
setAlpha: function(alpha)
Sets the current alpha.
mxCell.prototype.setAttribute = function(name,
value)
Sets the specified attribute on the user object if it is an XML node.
mxCodec.prototype.setAttribute = function(node,
attribute,
value)
Sets the attribute on the specified node to value.
setAutoAntiAlias: function(value)
Sets autoAntiAlias.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
setBaseUrl: function(value)
Sets baseUrl.
mxXmlRequest.prototype.setBinary = function(value)
Sets binary.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxLayoutManager.prototype.setBubbling = function(value)
Sets bubbling.
mxGraphSelectionModel.prototype.setCell = function(cell)
Selects the specified mxCell using setCells.
mxCoordinateAssignment.prototype.setCellLocations = function(graph,
model)
Sets the cell locations in the facade to those stored after this layout processing step has completed.
mxGraphSelectionModel.prototype.setCells = function(cells)
Selects the given array of mxCells and fires a change event.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlags: function(model,
cells,
key,
flag,
value)
Sets or toggles the flag bit for the given key in the cell’s styles.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
setCellStyles: function(model,
cells,
key,
value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraphHandler.prototype.setCloneEnabled = function(value)
Sets cloneEnabled.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxWindow.prototype.setClosable = function(closable)
Sets the image associated with the window.
mxCell.prototype.setCollapsed = function(collapsed)
Sets the collapsed state.
mxGraphModel.prototype.setCollapsed = function(cell,
collapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
setCompressed: function(value)
Sets compressed.
mxCell.prototype.setConnectable = function(connectable)
Sets the connectable state.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraphModel.prototype.setCreateIds = function(value)
Sets createIds.
mxConnectionHandler.prototype.setCreateTarget = function(value)
Sets createTarget.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxCellState.prototype.setCursor = function (cursor)
Sets the given cursor on the shape and text shape.
mxShape.prototype.setCursor = function(cursor)
Sets the cursor on the given shape.
setDashed: function(value)
Sets the dashed state to true or false.
setDashed: function(value)
Sets the dashed state to true or false.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxCell.prototype.setEdge = function(edge)
Specifies if the cell is an edge.
mxGraphLayout.prototype.setEdgePoints = function(edge,
points)
Replaces the array of mxPoints in the geometry of the given edge with the given array of mxPoints.
mxCoordinateAssignment.prototype.setEdgePosition = function(cell)
Fixes the control points
mxGraphLayout.prototype.setEdgeStyleEnabled = function(edge,
value)
Disables or enables the edge style of the given edge.
mxAutoSaveManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxCellMarker.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConnectionHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConstraintHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxDragSource.prototype.setEnabled = function(value)
Sets enabled.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraphHandler.prototype.setEnabled = function(value)
Sets enabled.
mxKeyHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling by updating enabled.
mxLayoutManager.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxOutline.prototype.setEnabled = function(value)
Enables or disables event handling.
mxPopupMenu.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxRubberband.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxSelectionCellsHandler.prototype.setEnabled = function(value)
Sets enabled.
mxSpaceManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxTooltipHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
setEnabled: function(value)
Sets enabled.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxEventSource.prototype.setEventsEnabled = function(value)
Sets eventsEnabled.
mxEventSource.prototype.setEventSource = function(value)
Sets eventSource.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
setFillColor: function(value)
Sets the fillcolor.
setFillColor: function(value)
Sets the fillcolor.
setFoEnabled: function(value)
Sets foEnabled.
setFontColor: function(value)
Sets the fontcolor.
setFontColor: function(value)
Sets the fontcolor.
setFontFamily: function(value)
Sets the fontfamily.
setFontFamily: function(value)
Sets the fontfamily.
setFontSize: function(value)
Sets the fontsize.
setFontSize: function(value)
Sets the fontsize.
setFontStyle: function(value)
Sets the fontstyle.
setFontStyle: function(value)
Sets the fontstyle.
mxGraphAbstractHierarchyCell.prototype.setGeneralPurposeVariable = function(
   layer,
   value
)
Set the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxGraphHierarchyNode.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxCell.prototype.setGeometry = function(geometry)
Sets the mxGeometry to be used as the geometry.
mxGraphModel.prototype.setGeometry = function(cell,
geometry)
Sets the mxGeometry of the given mxCell.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
mxAutoSaveManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxLayoutManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSpaceManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxEditor.prototype.setGraphContainer = function (container)
Sets the graph’s container using mxGraph.init.
mxDragSource.prototype.setGridEnabled = function(value)
Sets gridEnabled.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxDragSource.prototype.setGuidesEnabled = function(value)
Sets guidesEnabled.
mxTooltipHandler.prototype.setHideOnHover = function(value)
Sets hideOnHover.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxGraphHandler.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxCellMarker.prototype.setHotspot = function(hotspot)
Sets the hotspot.
mxCellMarker.prototype.setHotspotEnabled = function(enabled)
Specifies whether the hotspot should be used in intersects.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxCell.prototype.setId = function(id)
Sets the Id of the cell to the given string.
mxWindow.prototype.setImage = function(image)
Sets the image associated with the window.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
setLineCap: function(value)
Sets the linecap.
setLineCap: function(value)
Sets the linecap.
setLineJoin: function(value)
Sets the linejoin.
setLineJoin: function(value)
Sets the linejoin.
mxWindow.prototype.setLocation = function(x,
y)
Sets the upper, left corner of the window.
Sets if any cell may be moved, sized, bended, disconnected, edited or selected.
mxWindow.prototype.setMaximizable = function(maximizable)
Sets if the window is maximizable.
mxWindow.prototype.setMinimizable = function(minimizable)
Sets if the window is minimizable.
setMiterLimit: function(value)
Sets the miterlimit.
setMiterLimit: function(value)
Sets the miterlimit.
mxEditor.prototype.setMode = function(modename)
Puts the graph into the specified mode.
mxCellEditor.prototype.setModified = function(value)
Sets modified to the specified boolean value.
mxEditor.prototype.setModified = function (value)
Sets modified to the specified boolean value.
mxGraphHandler.prototype.setMoveEnabled = function(value)
Sets moveEnabled.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
setOpacity: function(node,
value)
Sets the opacity of the specified DOM node to the given value in %.
mxGraphLayout.prototype.setOrthogonalEdge = function(edge,
value)
Disables or enables orthogonal end segments of the given edge.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxCell.prototype.setParent = function(parent)
Sets the parent cell.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
mxEdgeHandler.prototype.setPreviewColor = function(color)
Sets the color of the preview to the given value.
mxRectangle.prototype.setRect = function(x,
y,
w,
h)
Sets this rectangle to the specified values
mxGraphHandler.prototype.setRemoveCellsFromParent = function(value)
Sets removeCellsFromParent.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxXmlRequest.prototype.setRequestHeaders = function(request,
params)
Sets the headers for the given request and parameters.
mxWindow.prototype.setResizable = function(resizable)
Sets if the window should be resizable.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxGraphModel.prototype.setRoot = function(root)
Sets the root of the model using mxRootChange and adds the change to the current transaction.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxWindow.prototype.setScrollable = function(scrollable)
Sets if the window contents should be scrollable.
mxGraphHandler.prototype.setSelectEnabled = function(value)
Sets selectEnabled.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxSpaceManager.prototype.setShiftDownwards = function(value)
Enables or disables event handling.
mxSpaceManager.prototype.setShiftRightwards = function(value)
Enables or disables event handling.
mxGraphSelectionModel.prototype.setSingleSelection = function(singleSelection)
Sets the singleSelection flag.
mxWindow.prototype.setSize = function(width,
height)
Sets the size of the window.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGuide.prototype.setStates = function(states)
Sets the mxCellStates that should be used for alignment.
mxEditor.prototype.setStatus = function (message)
Display the specified message in the status bar.
mxEditor.prototype.setStatusContainer = function (container)
Creates the status using the specified container.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeWidth: function(value)
Sets the stroke width.
setStrokeWidth: function(value)
Sets the stroke width.
mxCell.prototype.setStyle = function(style)
Sets the string to be used as the style.
mxGraphModel.prototype.setStyle = function(cell,
style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
setStyle: function(style,
key,
value)
Adds or removes the given key, value pair to the style and returns the new style.
setStyleFlag: function(style,
key,
flag,
value)
Sets or removes the given key from the specified style and returns the new style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxCell.prototype.setTerminal = function(terminal,
isSource)
Sets the source or target terminal and returns the new terminal.
mxGraphModel.prototype.setTerminal = function(edge,
terminal,
isSource)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
mxGeometry.prototype.setTerminalPoint = function(point,
isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
mxGraphModel.prototype.setTerminals = function(edge,
source,
target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
setTextEnabled: function(value)
Sets textEnabled.
setTextEnabled: function(value)
Sets textEnabled.
mxWindow.prototype.setTitle = function(title)
Sets the window title to the given string.
mxEditor.prototype.setTitleContainer = function (container)
Creates a listener to update the inner HTML of the specified DOM node with the value of getTitle.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxEditor.prototype.setToolbarContainer = function (container)
Initializes the toolbar for the given container.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxPath.prototype.setTranslate = function(x,
y)
Set the global translation of this path, that is, the origin of the coordinate system.
mxCell.prototype.setValue = function(value)
Sets the user object of the cell.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxCell.prototype.setVertex = function(vertex)
Specifies if the cell is a vertex.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxCoordinateAssignment.prototype.setVertexLocation = function(cell)
Fixes the position of the specified vertex.
mxGraphLayout.prototype.setVertexLocation = function(cell,
x,
y)
Sets the new position of the given cell taking into account the size of the bounding box if useBoundingBox is true.
mxCell.prototype.setVisible = function(visible)
Specifies if the cell is visible.
mxGraphModel.prototype.setVisible = function(cell,
visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
setVisible: function(visible)
Shows or hides the console.
mxWindow.prototype.setVisible = function(visible)
Shows or hides the window depending on the given flag.
mxCellState.prototype.setVisibleTerminalState = function (terminalState,
source)
Sets the visible source or target terminal state.
mxGraphAbstractHierarchyCell.prototype.setX = function(layer,
value)
Set the value of x for the specified layer
mxGraphAbstractHierarchyCell.prototype.setY = function(layer,
value)
Set the value of y for the specified layer
mxOutline.prototype.setZoomEnabled = function(value)
Enables or disables the zoom handling by showing or hiding the respective handle.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
Specifies the x-offset of the shadow.
Specifies the y-offset of the shadow.
Defines the opacity for shadows.
Defines the color to be used to draw shadows in shapes and windows.
mxCellState.prototype.shape
Holds the mxShape that represents the cell graphically.
mxEdgeHandler.prototype.shape
Holds the mxShape that represents the preview edge.
mxGraphHandler.prototype.shape
Reference to the mxShape that represents the preview.
Name under which mxActor is registered in mxCellRenderer.
Name under which mxArrow is registered in mxCellRenderer.
Name under which mxCloud is registered in mxCellRenderer.
Name under which mxConnector is registered in mxCellRenderer.
Name under which mxCylinder is registered in mxCellRenderer.
Name under which mxDoubleEllipse is registered in mxCellRenderer.
Name under which mxEllipse is registered in mxCellRenderer.
Name under which mxHexagon is registered in mxCellRenderer.
Name under which mxImageShape is registered in mxCellRenderer.
Name under which mxLabel is registered in mxCellRenderer.
Name under which mxLine is registered in mxCellRenderer.
Name under which mxRectangleShape is registered in mxCellRenderer.
Name under which mxRhombus is registered in mxCellRenderer.
Name under which mxSwimlane is registered in mxCellRenderer.
Name under which mxTriangle is registered in mxCellRenderer.
mxCellRenderer.prototype.shapes
Array that maps from shape names to shape constructors.
mxImageExport.prototype.shapes
Holds implementations for the built-in shapes.
mxRubberband.prototype.sharedDiv
Holds the DIV element which is used to display the rubberband.
mxSpaceManager.prototype.shiftCell = function(cell,
dx,
dy,
Ox0,
y0,
right,
bottom,
fx,
fy,
extendParent)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSpaceManager.prototype.shiftDownwards
Specifies if event handling is enabled.
mxKeyHandler.prototype.shiftKeys
Maps from keycodes to functions for pressed shift keys.
mxSpaceManager.prototype.shiftRightwards
Specifies if event handling is enabled.
mxGraphHandler.prototype.shouldRemoveCellsFromParent = function(parent,
cells,
evt)
Returns true if the given cells should be removed from the parent for the specified mousereleased event.
mxCellStatePreview.prototype.show = function(visitor)
show: function()
Shows the console.
mxMorphing.prototype.show = function(move)
Shows the changes in the given mxCellStatePreview.
mxTooltipHandler.prototype.show = function(tip,
x,
y)
Shows the tooltip for the specified cell and optional index at the specified location (with a vertical offset of 10 pixels).
show: function(graph,
doc,
x0,
y0)
Copies the styles and the markup from the graph’s container into the given document and removes all cursor styles.
mxWindow.prototype.show = function()
Shows the window.
Specifies the event name for show.
Fires after the menu has been shown in popup.
mxEditor.prototype.showHelp = function (tasks)
Shows the help window.
mxPopupMenu.prototype.showMenu = function()
Shows the menu.
mxEditor.prototype.showOutline = function ()
Shows the outline window.
mxEditor.prototype.showProperties = function (cell)
Creates and shows the properties dialog for the given cell.
mxPopupMenu.prototype.showSubmenu = function(parent,
row)
Shows the submenu inside the given parent row.
mxEditor.prototype.showTasks = function ()
Shows the tasks window.
mxOutline.prototype.showViewport
Specifies a viewport rectangle should be shown.
SideToSide: function (state,
source,
target,
points,
result)
Implements a vertical elbow edge.
mxUndoableEdit.prototype.significant
Specifies if the undoable change is significant.
mxSession.prototype.significantRemoteChanges
Whether remote changes should be significant in the local command history.
mxXmlRequest.prototype.simulate = function(doc,
target)
Creates and posts a request to the given target URL using a dynamically created form inside the given document.
mxGraphSelectionModel.prototype.singleSelection
Specifies if only one selected item at a time is allowed.
mxVertexHandler.prototype.singleSizer
Specifies if only one sizer handle at the bottom, right corner should be used.
mxUndoManager.prototype.size
Maximum command history size.
Specifies the event name for size.
Fires after sizeDidChange was executed.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxOutline.prototype.sizerImage
Optional mxImage to be used for the sizer.
mxPopupMenu.prototype.smartSeparators
Specifies if separators should only be added if a menu item follows them.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraphHandler.prototype.snap = function(vector)
Snaps the given vector to the grid and returns the given mxPoint instance.
mxEdgeHandler.prototype.snapToTerminals
Specifies if waypoints should snap to the routing centers of terminals.
sortCells: function(cells,
ascending)
Sorts the given cells according to the order in the cell hierarchy.
mxCell.prototype.source
Reference to the source terminal.
mxGraphHierarchyEdge.prototype.source
The node this edge is sourced at
mxMultiplicity.prototype.source
Boolean that specifies if the rule is applied to the source or target terminal of an edge.
Reference to the source mxGraph.
mxUndoableEdit.prototype.source
Specifies the source of the edit.
mxGeometry.prototype.sourcePoint
Defines the source mxPoint of the edge.
mxGraphHierarchyModel.prototype.SOURCESCANSTARTRANK
High value to start source layering scan rank value from.
mxCellHighlight.prototype.spacing
Specifies the spacing between the highlight for vertices and the vertex.
mxDefaultToolbar.prototype.spacing
Defines the spacing between existing and new vertices in gridSize units when a new vertex is dropped on an existing cell.
mxLabel.prototype.spacing
Default value for spacing.
mxParallelEdgeLayout.prototype.spacing
Defines the spacing between the parallels.
mxPartitionLayout.prototype.spacing
Integer that specifies the absolute spacing in pixels between the children.
mxStackLayout.prototype.spacing
Specifies the spacing between the cells.
Specifies the event name for splitEdge.
Fires between begin- and endUpdate in splitEdge.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxGraph.prototype.splitEnabled
Specifies if dropping onto edges should be enabled.
mxImage.prototype.src
String that specifies the URL of the image.
mxConnectionHandler.prototype.start = function(state,
x,
y,
edgeState)
Starts a new connection for the given state and coordinates.
mxEdgeHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxGraphHandler.prototype.start = function(cell,
x,
y)
Starts the handling of the mouse gesture.
mxRubberband.prototype.start = function(x,
y)
Sets the start point for the rubberband selection.
mxSession.prototype.start = function()
mxVertexHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
Specifies the event name for startEditing.
Fires before the in-place editor starts in startEditingAtCell.
mxAnimation.prototype.startAnimation = function()
Starts the animation by repeatedly invoking updateAnimation.
mxDragSource.prototype.startDrag = function(evt)
Creates the dragElement using createDragElement.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxShape.prototype.startOffset
Specifies the offset in pixels from the first point in points and the actual start of the shape.
mxCellHighlight.prototype.state
Reference to the mxCellState.
mxEdgeHandler.prototype.state
Reference to the mxCellState being modified.
mxMouseEvent.prototype.state
Holds the optional mxCellState associated with this event.
mxStencilShape.prototype.state
Holds the mxCellState associated with this shape.
mxVertexHandler.prototype.state
Reference to the mxCellState being modified.
mxGuide.prototype.states
Contains the mxCellStates that are used for alignment.
mxEditor.prototype.status
DOM container that holds the statusbar.
mxStencilShape.prototype.stencil
Holds the mxStencil that defines the shape.
mxMorphing.prototype.step
Contains the current step.
mxMorphing.prototype.steps
Specifies the maximum number of steps for the morphing.
Defines the step size to offset the cells after each paste operation.
mxSession.prototype.stop = function(reason)
Stops the session and fires a disconnect event.
mxAnimation.prototype.stopAnimation = function()
Stops the animation by deleting the timer and fires an mxEvent.DONE.
mxDragSource.prototype.stopDrag = function(evt)
Removes and destroys the dragElement.
mxCellEditor.prototype.stopEditing = function(cancel)
Stops the editor and applies the value if cancel is false.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxMorphing.prototype.stopRecursion = function(state,
delta)
Returns true if the animation should not recursively find more deltas for children if the given parent state has been animated.
stroke: function()
Paints the outline of the current path.
stroke: function()
Paints the outline of the current path.
mxCylinder.prototype.strokedBackground
Specifies if the background should be stroked.
mxShape.prototype.strokewidth
Holds the current strokewidth.
mxStencil.prototype.strokewidth
Holds the strokewidth direction from the description.
mxCell.prototype.style
Holds the style as a string of the form [(stylename|key=value);].
mxCellState.prototype.style
Contains an array of key, value pairs that represent the style of the cell.
mxShape.prototype.style
Holds the style of the cell state that corresponds to this shape.
Defines the key for the align style.
Defines the rounding factor for a rounded rectangle in percent (without the percent sign).
Defines the key for the autosize style.
Defines the key for the bendable style.
Defines the key for the cloneable style.
Defines the key for the endSize style.
Defines the key for the deletable style.
Defines the key for the direction style.
Defines the key for the edge style.
Defines the key for the editable style.
Defines the key for the elbow style.
Defines the key for the end arrow marker.
Defines the key for the endFill style.
Defines the key for the endSize style.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the target.
Defines the key for the horizontal relative coordinate connection point of an edge with its target terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its target terminal.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the source.
Defines the key for the horizontal relative coordinate connection point of an edge with its source terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its source terminal.
Defines the key for the fill color.
Defines the key for the foldable style.
Defines the key for the fontColor style.
Defines the key for the fontFamily style.
Defines the key for the fontSize style (in points).
Defines the key for the fontStyle style.
Defines the key for the glass style.
Defines the key for the gradient direction.
Defines the key for the gradient color.
Defines the key for the horizontal style.
Defines the key for the image style.
Defines the key for the align style.
Defines the key for the image aspect style.
Defines the key for the image background color.
Defines the key for the image border color.
Defines the key for the horizontal image flip.
Defines the key for the vertical image flip.
Defines the key for the imageHeight style.
Defines the key for the verticalAlign style.
Defines the key for the imageWidth style.
Defines the key for the indicatorColor style.
Defines the key for the indicatorDirection style.
Defines the key for the indicatorGradientColor style.
Defines the key for the indicator height.
Defines the key for the indicator image used within an mxLabel.
Defines the key for the indicator shape used within an mxLabel.
The defines the key for the spacing between the label and the indicator in mxLabel.
Defines the key for the indicator stroke color in mxLabel.
Defines the key for the indicator width.
Defines the key for the label background color.
Defines the key for the label border color.
Defines the key for the label padding, ie.
Defines the key for the horizontal label position of vertices.
Defines the key for the loop style.
Defines the key for the movable style.
Defines the key for the noEdgeStyle style.
Defines the key for the noLabel style.
Defines the key for the opacity style.
Defines if the connection points on either end of the edge should be computed so that the edge is vertical or horizontal if possible and if the point is not at a fixed location.
Defines the key for the overflow style.
Defines the key for the perimeter style.
Defines the key for the perimeter spacing.
Defines the direction(s) that edges are allowed to connect to cells in.
Defines the key for the resizable style.
Defines the key for the rotation style.
Defines the key for the rounded style.
Defines the key for the horizontal routing center.
Defines the key for the vertical routing center.
Defines the key for the segment style.
Defines the key for the separatorColor style.
Defines the key for the shadow style.
Defines the key for the shape.
An experimental style for edges.
Defines the key for the source perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the source for an edge.
Defines the key for the spacing.
Defines the key for the spacingBottom style The value represents the spacing, in pixels, added to the bottom side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingLeft style.
Defines the key for the spacingRight style The value represents the spacing, in pixels, added to the right side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingTop style.
Defines the key for the start arrow marker.
Defines the key for the startFill style.
Defines the key for the startSize style.
Defines the key for the horizontal stencil flip.
Defines the key for the vertical stencil flip.
Defines the key for the strokeColor style.
Defines the key for the strokeWidth style.
Defines the key for the target perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the target for an edge.
Defines the key for the text opacity style.
Defines the key for the verticalAlign style.
Defines the key for the vertical label position of vertices.
Defines the key for the white-space style.
mxGraphModel.prototype.styleForCellChanged = function(cell,
style)
Inner callback to update the style of the given mxCell using mxCell.setStyle and return the previous style.
Maps from names to cell styles.
mxGraph.prototype.stylesheet
Holds the mxStylesheet that defines the appearance of the cells.
mxPopupMenu.prototype.submenuImage
URL of the image to be used for the submenu icon.
submit: function(url,
params,
doc,
target)
Submits the given parameters to the specified URL using mxXmlRequest.simulate and returns the mxXmlRequest.
mxSession.prototype.suspend = function()
Suspends the polling.
Specifies the event name for suspend.
Fires after suspend was called an the session was not already in suspended state.
mxOutline.prototype.suspended
Optional boolean flag to suspend updates.
mxShape.prototype.SVG_STROKE_TOLERANCE
Event-tolerance for SVG strokes (in px).
mxGeometry.prototype.swap = function()
Swaps the x, y, width and height with the values stored in alternateBounds and puts the previous values into alternateBounds as a rectangle.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxEditor.prototype.swapStyles = function (first,
second)
Swaps the styles for the given names in the graph’s stylesheet and refreshes the graph.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
mxGraph.prototype.swimlaneIndicatorColorAttribute
The attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.
mxGraph.prototype.swimlaneNesting
Specifies if nesting of swimlanes is allowed.
mxEditor.prototype.swimlaneRequired
Specifies if new cells must be inserted into an existing swimlane.
mxGraph.prototype.swimlaneSelectionEnabled
Specifies if swimlanes should be selectable via the content if the mouse is released.
mxEditor.prototype.swimlaneSpacing
Specifies the spacing between swimlanes if automatic layout is turned on in layoutDiagram.
+
mxAutoSaveManager.prototype.save = function()
Empty hook that is called if the graph should be saved.
mxEditor.prototype.save = function (url,
linefeed)
Posts the string returned by writeGraphModel to the given URL or the URL returned by getUrlPost.
save: function()
Saves the state of the graphics object.
save: function(filename,
content)
Saves the specified content in the given file on the local file system.
save: function()
Saves the state of the graphics object.
Fires after the current file was saved in save.
Specifies the event name for open.
saveAs: function(content)
Saves the specified content by displaying a dialog to save the content as a file on the local filesystem.
mxGraphView.prototype.scale
Specifies the scale.
mxPath.prototype.scale
Number that specifies the translation of the path.
mxPrintPreview.prototype.scale
Holds the scale of the print preview.
mxShape.prototype.scale
Holds the scale in which the shape is being painted.
scale: function(value)
Scales the current graphics object.
scale: function(value)
Scales the current graphics object.
Specifies the event name for scale.
Fires after the scale was changed in setScale.
Specifies the event name for scaleAndTranslate.
Fires after the scale and translate have been changed in scaleAndTranslate.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxGraphHandler.prototype.scaleGrid
Specifies if the grid should be scaled.
mxGraphHierarchyModel.prototype.scanRanksFromSinks
Whether the rank assignment is done from the sinks or sources.
mxImageShape.prototype.scheduleUpdateAspect = function()
Schedules an asynchronous updateAspect using the current image.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraphHandler.prototype.scrollOnMove
Specifies if the view should be scrolled so that a moved cell is visible.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
SegmentConnector: function(state,
source,
target,
hints,
result)
Implements an orthogonal edge style.
mxCellState.prototype.segments
Array of numbers that represent the cached length of each segment of the edge.
mxConnectionHandler.prototype.select
Specifies if new edges should be selected.
Specifies the event name for select.
Fires when an item was selected in the toolbar.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxConnectionHandler.prototype.selectCells = function(edge,
target)
Selects the given edge after adding a new connection.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraphHandler.prototype.selectDelayed = function(me)
Implements the delayed selection for the given mouse event.
mxGraphHandler.prototype.selectEnabled
Specifies if selecting is enabled.
Defines the dashed state to be used for the vertex selection border.
mxGraph.prototype.selectionModel
Holds the mxGraphSelectionModel that models the current selection.
mxToolbar.prototype.selectMode = function(domNode,
funct)
Resets the state of the previously selected mode and displays the given DOM node as selected.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxPanningHandler.prototype.selectOnPopup
Specifies if cells should be selected if a popupmenu is displayed for them.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxXmlRequest.prototype.send = function(onload,
onerror)
Send the request to the target URL using the specified functions to process the response asychronously.
mxSession.prototype.sent
Total number of sent bytes.
Fires when anything in the session has changed.
Specifies the event name for session.
mxCellState.prototype.setAbsoluteTerminalPoint = function (point,
isSource)
Sets the first or last point in absolutePoints depending on isSource.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
setAlpha: function(alpha)
Sets the current alpha.
setAlpha: function(alpha)
Sets the current alpha.
mxCell.prototype.setAttribute = function(name,
value)
Sets the specified attribute on the user object if it is an XML node.
mxCodec.prototype.setAttribute = function(node,
attribute,
value)
Sets the attribute on the specified node to value.
setAutoAntiAlias: function(value)
Sets autoAntiAlias.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
setBaseUrl: function(value)
Sets baseUrl.
mxXmlRequest.prototype.setBinary = function(value)
Sets binary.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxLayoutManager.prototype.setBubbling = function(value)
Sets bubbling.
mxGraphSelectionModel.prototype.setCell = function(cell)
Selects the specified mxCell using setCells.
mxCoordinateAssignment.prototype.setCellLocations = function(graph,
model)
Sets the cell locations in the facade to those stored after this layout processing step has completed.
mxGraphSelectionModel.prototype.setCells = function(cells)
Selects the given array of mxCells and fires a change event.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlags: function(model,
cells,
key,
flag,
value)
Sets or toggles the flag bit for the given key in the cell’s styles.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
setCellStyles: function(model,
cells,
key,
value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraphHandler.prototype.setCloneEnabled = function(value)
Sets cloneEnabled.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxWindow.prototype.setClosable = function(closable)
Sets the image associated with the window.
mxCell.prototype.setCollapsed = function(collapsed)
Sets the collapsed state.
mxGraphModel.prototype.setCollapsed = function(cell,
collapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
setCompressed: function(value)
Sets compressed.
mxCell.prototype.setConnectable = function(connectable)
Sets the connectable state.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraphModel.prototype.setCreateIds = function(value)
Sets createIds.
mxConnectionHandler.prototype.setCreateTarget = function(value)
Sets createTarget.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxCellState.prototype.setCursor = function (cursor)
Sets the given cursor on the shape and text shape.
mxShape.prototype.setCursor = function(cursor)
Sets the cursor on the given shape.
setDashed: function(value)
Sets the dashed state to true or false.
setDashed: function(value)
Sets the dashed state to true or false.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxCell.prototype.setEdge = function(edge)
Specifies if the cell is an edge.
mxGraphLayout.prototype.setEdgePoints = function(edge,
points)
Replaces the array of mxPoints in the geometry of the given edge with the given array of mxPoints.
mxCoordinateAssignment.prototype.setEdgePosition = function(cell)
Fixes the control points
mxGraphLayout.prototype.setEdgeStyleEnabled = function(edge,
value)
Disables or enables the edge style of the given edge.
mxAutoSaveManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxCellMarker.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConnectionHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConstraintHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxDragSource.prototype.setEnabled = function(value)
Sets enabled.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraphHandler.prototype.setEnabled = function(value)
Sets enabled.
mxKeyHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling by updating enabled.
mxLayoutManager.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxOutline.prototype.setEnabled = function(value)
Enables or disables event handling.
mxPopupMenu.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxRubberband.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxSelectionCellsHandler.prototype.setEnabled = function(value)
Sets enabled.
mxSpaceManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxTooltipHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
setEnabled: function(value)
Sets enabled.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxEventSource.prototype.setEventsEnabled = function(value)
Sets eventsEnabled.
mxEventSource.prototype.setEventSource = function(value)
Sets eventSource.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
setFillColor: function(value)
Sets the fillcolor.
setFillColor: function(value)
Sets the fillcolor.
setFoEnabled: function(value)
Sets foEnabled.
setFontColor: function(value)
Sets the fontcolor.
setFontColor: function(value)
Sets the fontcolor.
setFontFamily: function(value)
Sets the fontfamily.
setFontFamily: function(value)
Sets the fontfamily.
setFontSize: function(value)
Sets the fontsize.
setFontSize: function(value)
Sets the fontsize.
setFontStyle: function(value)
Sets the fontstyle.
setFontStyle: function(value)
Sets the fontstyle.
mxGraphAbstractHierarchyCell.prototype.setGeneralPurposeVariable = function(
   layer,
   value
)
Set the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxGraphHierarchyNode.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxCell.prototype.setGeometry = function(geometry)
Sets the mxGeometry to be used as the geometry.
mxGraphModel.prototype.setGeometry = function(cell,
geometry)
Sets the mxGeometry of the given mxCell.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
mxAutoSaveManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxLayoutManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSpaceManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxEditor.prototype.setGraphContainer = function (container)
Sets the graph’s container using mxGraph.init.
mxDragSource.prototype.setGridEnabled = function(value)
Sets gridEnabled.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxDragSource.prototype.setGuidesEnabled = function(value)
Sets guidesEnabled.
mxTooltipHandler.prototype.setHideOnHover = function(value)
Sets hideOnHover.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxGraphHandler.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxCellMarker.prototype.setHotspot = function(hotspot)
Sets the hotspot.
mxCellMarker.prototype.setHotspotEnabled = function(enabled)
Specifies whether the hotspot should be used in intersects.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxCell.prototype.setId = function(id)
Sets the Id of the cell to the given string.
mxWindow.prototype.setImage = function(image)
Sets the image associated with the window.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
setLineCap: function(value)
Sets the linecap.
setLineCap: function(value)
Sets the linecap.
setLineJoin: function(value)
Sets the linejoin.
setLineJoin: function(value)
Sets the linejoin.
mxWindow.prototype.setLocation = function(x,
y)
Sets the upper, left corner of the window.
Sets if any cell may be moved, sized, bended, disconnected, edited or selected.
mxWindow.prototype.setMaximizable = function(maximizable)
Sets if the window is maximizable.
mxWindow.prototype.setMinimizable = function(minimizable)
Sets if the window is minimizable.
setMiterLimit: function(value)
Sets the miterlimit.
setMiterLimit: function(value)
Sets the miterlimit.
mxEditor.prototype.setMode = function(modename)
Puts the graph into the specified mode.
mxCellEditor.prototype.setModified = function(value)
Sets modified to the specified boolean value.
mxEditor.prototype.setModified = function (value)
Sets modified to the specified boolean value.
mxGraphHandler.prototype.setMoveEnabled = function(value)
Sets moveEnabled.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
setOpacity: function(node,
value)
Sets the opacity of the specified DOM node to the given value in %.
mxGraphLayout.prototype.setOrthogonalEdge = function(edge,
value)
Disables or enables orthogonal end segments of the given edge.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxCell.prototype.setParent = function(parent)
Sets the parent cell.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
mxEdgeHandler.prototype.setPreviewColor = function(color)
Sets the color of the preview to the given value.
mxRectangle.prototype.setRect = function(x,
y,
w,
h)
Sets this rectangle to the specified values
mxGraphHandler.prototype.setRemoveCellsFromParent = function(value)
Sets removeCellsFromParent.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxXmlRequest.prototype.setRequestHeaders = function(request,
params)
Sets the headers for the given request and parameters.
mxWindow.prototype.setResizable = function(resizable)
Sets if the window should be resizable.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxGraphModel.prototype.setRoot = function(root)
Sets the root of the model using mxRootChange and adds the change to the current transaction.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxWindow.prototype.setScrollable = function(scrollable)
Sets if the window contents should be scrollable.
mxGraphHandler.prototype.setSelectEnabled = function(value)
Sets selectEnabled.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxSpaceManager.prototype.setShiftDownwards = function(value)
Enables or disables event handling.
mxSpaceManager.prototype.setShiftRightwards = function(value)
Enables or disables event handling.
mxGraphSelectionModel.prototype.setSingleSelection = function(singleSelection)
Sets the singleSelection flag.
mxWindow.prototype.setSize = function(width,
height)
Sets the size of the window.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGuide.prototype.setStates = function(states)
Sets the mxCellStates that should be used for alignment.
mxEditor.prototype.setStatus = function (message)
Display the specified message in the status bar.
mxEditor.prototype.setStatusContainer = function (container)
Creates the status using the specified container.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeWidth: function(value)
Sets the stroke width.
setStrokeWidth: function(value)
Sets the stroke width.
mxCell.prototype.setStyle = function(style)
Sets the string to be used as the style.
mxGraphModel.prototype.setStyle = function(cell,
style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
setStyle: function(style,
key,
value)
Adds or removes the given key, value pair to the style and returns the new style.
setStyleFlag: function(style,
key,
flag,
value)
Sets or removes the given key from the specified style and returns the new style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxCell.prototype.setTerminal = function(terminal,
isSource)
Sets the source or target terminal and returns the new terminal.
mxGraphModel.prototype.setTerminal = function(edge,
terminal,
isSource)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
mxGeometry.prototype.setTerminalPoint = function(point,
isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
mxGraphModel.prototype.setTerminals = function(edge,
source,
target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
setTextEnabled: function(value)
Sets textEnabled.
setTextEnabled: function(value)
Sets textEnabled.
mxWindow.prototype.setTitle = function(title)
Sets the window title to the given string.
mxEditor.prototype.setTitleContainer = function (container)
Creates a listener to update the inner HTML of the specified DOM node with the value of getTitle.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxEditor.prototype.setToolbarContainer = function (container)
Initializes the toolbar for the given container.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxPath.prototype.setTranslate = function(x,
y)
Set the global translation of this path, that is, the origin of the coordinate system.
mxCell.prototype.setValue = function(value)
Sets the user object of the cell.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxCell.prototype.setVertex = function(vertex)
Specifies if the cell is a vertex.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxCoordinateAssignment.prototype.setVertexLocation = function(cell)
Fixes the position of the specified vertex.
mxGraphLayout.prototype.setVertexLocation = function(cell,
x,
y)
Sets the new position of the given cell taking into account the size of the bounding box if useBoundingBox is true.
mxCell.prototype.setVisible = function(visible)
Specifies if the cell is visible.
mxGraphModel.prototype.setVisible = function(cell,
visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
setVisible: function(visible)
Shows or hides the console.
mxWindow.prototype.setVisible = function(visible)
Shows or hides the window depending on the given flag.
mxCellState.prototype.setVisibleTerminalState = function (terminalState,
source)
Sets the visible source or target terminal state.
mxGraphAbstractHierarchyCell.prototype.setX = function(layer,
value)
Set the value of x for the specified layer
mxGraphAbstractHierarchyCell.prototype.setY = function(layer,
value)
Set the value of y for the specified layer
mxOutline.prototype.setZoomEnabled = function(value)
Enables or disables the zoom handling by showing or hiding the respective handle.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
Specifies the x-offset of the shadow.
Specifies the y-offset of the shadow.
Defines the opacity for shadows.
Defines the color to be used to draw shadows in shapes and windows.
mxCellState.prototype.shape
Holds the mxShape that represents the cell graphically.
mxEdgeHandler.prototype.shape
Holds the mxShape that represents the preview edge.
mxGraphHandler.prototype.shape
Reference to the mxShape that represents the preview.
Name under which mxActor is registered in mxCellRenderer.
Name under which mxArrow is registered in mxCellRenderer.
Name under which mxCloud is registered in mxCellRenderer.
Name under which mxConnector is registered in mxCellRenderer.
Name under which mxCylinder is registered in mxCellRenderer.
Name under which mxDoubleEllipse is registered in mxCellRenderer.
Name under which mxEllipse is registered in mxCellRenderer.
Name under which mxHexagon is registered in mxCellRenderer.
Name under which mxImageShape is registered in mxCellRenderer.
Name under which mxLabel is registered in mxCellRenderer.
Name under which mxLine is registered in mxCellRenderer.
Name under which mxRectangleShape is registered in mxCellRenderer.
Name under which mxRhombus is registered in mxCellRenderer.
Name under which mxSwimlane is registered in mxCellRenderer.
Name under which mxTriangle is registered in mxCellRenderer.
mxCellRenderer.prototype.shapes
Array that maps from shape names to shape constructors.
mxImageExport.prototype.shapes
Holds implementations for the built-in shapes.
mxRubberband.prototype.sharedDiv
Holds the DIV element which is used to display the rubberband.
mxSpaceManager.prototype.shiftCell = function(cell,
dx,
dy,
Ox0,
y0,
right,
bottom,
fx,
fy,
extendParent)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSpaceManager.prototype.shiftDownwards
Specifies if event handling is enabled.
mxKeyHandler.prototype.shiftKeys
Maps from keycodes to functions for pressed shift keys.
mxSpaceManager.prototype.shiftRightwards
Specifies if event handling is enabled.
mxGraphHandler.prototype.shouldRemoveCellsFromParent = function(parent,
cells,
evt)
Returns true if the given cells should be removed from the parent for the specified mousereleased event.
mxCellStatePreview.prototype.show = function(visitor)
show: function()
Shows the console.
mxMorphing.prototype.show = function(move)
Shows the changes in the given mxCellStatePreview.
mxTooltipHandler.prototype.show = function(tip,
x,
y)
Shows the tooltip for the specified cell and optional index at the specified location (with a vertical offset of 10 pixels).
show: function(graph,
doc,
x0,
y0)
Copies the styles and the markup from the graph’s container into the given document and removes all cursor styles.
mxWindow.prototype.show = function()
Shows the window.
Specifies the event name for show.
Fires after the menu has been shown in popup.
mxEditor.prototype.showHelp = function (tasks)
Shows the help window.
mxPopupMenu.prototype.showMenu = function()
Shows the menu.
mxEditor.prototype.showOutline = function ()
Shows the outline window.
mxEditor.prototype.showProperties = function (cell)
Creates and shows the properties dialog for the given cell.
mxPopupMenu.prototype.showSubmenu = function(parent,
row)
Shows the submenu inside the given parent row.
mxEditor.prototype.showTasks = function ()
Shows the tasks window.
mxOutline.prototype.showViewport
Specifies a viewport rectangle should be shown.
SideToSide: function (state,
source,
target,
points,
result)
Implements a vertical elbow edge.
mxUndoableEdit.prototype.significant
Specifies if the undoable change is significant.
mxSession.prototype.significantRemoteChanges
Whether remote changes should be significant in the local command history.
mxXmlRequest.prototype.simulate = function(doc,
target)
Creates and posts a request to the given target URL using a dynamically created form inside the given document.
mxGraphSelectionModel.prototype.singleSelection
Specifies if only one selected item at a time is allowed.
mxVertexHandler.prototype.singleSizer
Specifies if only one sizer handle at the bottom, right corner should be used.
mxUndoManager.prototype.size
Maximum command history size.
Specifies the event name for size.
Fires after sizeDidChange was executed.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxOutline.prototype.sizerImage
Optional mxImage to be used for the sizer.
mxPopupMenu.prototype.smartSeparators
Specifies if separators should only be added if a menu item follows them.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraphHandler.prototype.snap = function(vector)
Snaps the given vector to the grid and returns the given mxPoint instance.
mxEdgeHandler.prototype.snapToTerminals
Specifies if waypoints should snap to the routing centers of terminals.
sortCells: function(cells,
ascending)
Sorts the given cells according to the order in the cell hierarchy.
mxCell.prototype.source
Reference to the source terminal.
mxGraphHierarchyEdge.prototype.source
The node this edge is sourced at
mxMultiplicity.prototype.source
Boolean that specifies if the rule is applied to the source or target terminal of an edge.
Reference to the source mxGraph.
mxUndoableEdit.prototype.source
Specifies the source of the edit.
mxGeometry.prototype.sourcePoint
Defines the source mxPoint of the edge.
mxGraphHierarchyModel.prototype.SOURCESCANSTARTRANK
High value to start source layering scan rank value from.
mxCellHighlight.prototype.spacing
Specifies the spacing between the highlight for vertices and the vertex.
mxDefaultToolbar.prototype.spacing
Defines the spacing between existing and new vertices in gridSize units when a new vertex is dropped on an existing cell.
mxLabel.prototype.spacing
Default value for spacing.
mxParallelEdgeLayout.prototype.spacing
Defines the spacing between the parallels.
mxPartitionLayout.prototype.spacing
Integer that specifies the absolute spacing in pixels between the children.
mxStackLayout.prototype.spacing
Specifies the spacing between the cells.
Specifies the event name for splitEdge.
Fires between begin- and endUpdate in splitEdge.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxGraph.prototype.splitEnabled
Specifies if dropping onto edges should be enabled.
mxImage.prototype.src
String that specifies the URL of the image.
mxConnectionHandler.prototype.start = function(state,
x,
y,
edgeState)
Starts a new connection for the given state and coordinates.
mxEdgeHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxGraphHandler.prototype.start = function(cell,
x,
y)
Starts the handling of the mouse gesture.
mxRubberband.prototype.start = function(x,
y)
Sets the start point for the rubberband selection.
mxSession.prototype.start = function()
mxVertexHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
Specifies the event name for startEditing.
Fires before the in-place editor starts in startEditingAtCell.
mxAnimation.prototype.startAnimation = function()
Starts the animation by repeatedly invoking updateAnimation.
mxDragSource.prototype.startDrag = function(evt)
Creates the dragElement using createDragElement.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxShape.prototype.startOffset
Specifies the offset in pixels from the first point in points and the actual start of the shape.
mxCellHighlight.prototype.state
Reference to the mxCellState.
mxEdgeHandler.prototype.state
Reference to the mxCellState being modified.
mxMouseEvent.prototype.state
Holds the optional mxCellState associated with this event.
mxStencilShape.prototype.state
Holds the mxCellState associated with this shape.
mxVertexHandler.prototype.state
Reference to the mxCellState being modified.
mxGuide.prototype.states
Contains the mxCellStates that are used for alignment.
mxEditor.prototype.status
DOM container that holds the statusbar.
mxStencilShape.prototype.stencil
Holds the mxStencil that defines the shape.
mxMorphing.prototype.step
Contains the current step.
mxMorphing.prototype.steps
Specifies the maximum number of steps for the morphing.
Defines the step size to offset the cells after each paste operation.
mxSession.prototype.stop = function(reason)
Stops the session and fires a disconnect event.
mxAnimation.prototype.stopAnimation = function()
Stops the animation by deleting the timer and fires an mxEvent.DONE.
mxDragSource.prototype.stopDrag = function(evt)
Removes and destroys the dragElement.
mxCellEditor.prototype.stopEditing = function(cancel)
Stops the editor and applies the value if cancel is false.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxMorphing.prototype.stopRecursion = function(state,
delta)
Returns true if the animation should not recursively find more deltas for children if the given parent state has been animated.
stroke: function()
Paints the outline of the current path.
stroke: function()
Paints the outline of the current path.
mxCylinder.prototype.strokedBackground
Specifies if the background should be stroked.
mxShape.prototype.strokewidth
Holds the current strokewidth.
mxStencil.prototype.strokewidth
Holds the strokewidth direction from the description.
mxCell.prototype.style
Holds the style as a string of the form [(stylename|key=value);].
mxCellState.prototype.style
Contains an array of key, value pairs that represent the style of the cell.
mxShape.prototype.style
Holds the style of the cell state that corresponds to this shape.
Defines the key for the align style.
Defines the rounding factor for a rounded rectangle in percent (without the percent sign).
Defines the key for the autosize style.
Defines the key for the bendable style.
Defines the key for the cloneable style.
Defines the key for the endSize style.
Defines the key for the deletable style.
Defines the key for the direction style.
Defines the key for the edge style.
Defines the key for the editable style.
Defines the key for the elbow style.
Defines the key for the end arrow marker.
Defines the key for the endFill style.
Defines the key for the endSize style.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the target.
Defines the key for the horizontal relative coordinate connection point of an edge with its target terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its target terminal.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the source.
Defines the key for the horizontal relative coordinate connection point of an edge with its source terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its source terminal.
Defines the key for the fill color.
Defines the key for the foldable style.
Defines the key for the fontColor style.
Defines the key for the fontFamily style.
Defines the key for the fontSize style (in points).
Defines the key for the fontStyle style.
Defines the key for the glass style.
Defines the key for the gradient direction.
Defines the key for the gradient color.
Defines the key for the horizontal style.
Defines the key for the image style.
Defines the key for the align style.
Defines the key for the image aspect style.
Defines the key for the image background color.
Defines the key for the image border color.
Defines the key for the horizontal image flip.
Defines the key for the vertical image flip.
Defines the key for the imageHeight style.
Defines the key for the verticalAlign style.
Defines the key for the imageWidth style.
Defines the key for the indicatorColor style.
Defines the key for the indicatorDirection style.
Defines the key for the indicatorGradientColor style.
Defines the key for the indicator height.
Defines the key for the indicator image used within an mxLabel.
Defines the key for the indicator shape used within an mxLabel.
The defines the key for the spacing between the label and the indicator in mxLabel.
Defines the key for the indicator stroke color in mxLabel.
Defines the key for the indicator width.
Defines the key for the label background color.
Defines the key for the label border color.
Defines the key for the label padding, ie.
Defines the key for the horizontal label position of vertices.
Defines the key for the loop style.
Defines the key for the movable style.
Defines the key for the noEdgeStyle style.
Defines the key for the noLabel style.
Defines the key for the opacity style.
Defines if the connection points on either end of the edge should be computed so that the edge is vertical or horizontal if possible and if the point is not at a fixed location.
Defines the key for the overflow style.
Defines the key for the perimeter style.
Defines the key for the perimeter spacing.
Defines the direction(s) that edges are allowed to connect to cells in.
Defines the key for the resizable style.
Defines the key for the rotation style.
Defines the key for the rounded style.
Defines the key for the horizontal routing center.
Defines the key for the vertical routing center.
Defines the key for the segment style.
Defines the key for the separatorColor style.
Defines the key for the shadow style.
Defines the key for the shape.
An experimental style for edges.
Defines the key for the source perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the source for an edge.
Defines the key for the spacing.
Defines the key for the spacingBottom style The value represents the spacing, in pixels, added to the bottom side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingLeft style.
Defines the key for the spacingRight style The value represents the spacing, in pixels, added to the right side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingTop style.
Defines the key for the start arrow marker.
Defines the key for the startFill style.
Defines the key for the startSize style.
Defines the key for the horizontal stencil flip.
Defines the key for the vertical stencil flip.
Defines the key for the strokeColor style.
Defines the key for the strokeWidth style.
Defines the key for the target perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the target for an edge.
Defines the key for the text opacity style.
Defines the key for the verticalAlign style.
Defines the key for the vertical label position of vertices.
Defines the key for the white-space style.
mxGraphModel.prototype.styleForCellChanged = function(cell,
style)
Inner callback to update the style of the given mxCell using mxCell.setStyle and return the previous style.
Maps from names to cell styles.
mxGraph.prototype.stylesheet
Holds the mxStylesheet that defines the appearance of the cells.
mxPopupMenu.prototype.submenuImage
URL of the image to be used for the submenu icon.
submit: function(url,
params,
doc,
target)
Submits the given parameters to the specified URL using mxXmlRequest.simulate and returns the mxXmlRequest.
mxSession.prototype.suspend = function()
Suspends the polling.
Specifies the event name for suspend.
Fires after suspend was called an the session was not already in suspended state.
mxOutline.prototype.suspended
Optional boolean flag to suspend updates.
mxShape.prototype.SVG_STROKE_TOLERANCE
Event-tolerance for SVG strokes (in px).
mxGeometry.prototype.swap = function()
Swaps the x, y, width and height with the values stored in alternateBounds and puts the previous values into alternateBounds as a rectangle.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxEditor.prototype.swapStyles = function (first,
second)
Swaps the styles for the given names in the graph’s stylesheet and refreshes the graph.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
mxGraph.prototype.swimlaneIndicatorColorAttribute
The attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.
mxGraph.prototype.swimlaneNesting
Specifies if nesting of swimlanes is allowed.
mxEditor.prototype.swimlaneRequired
Specifies if new cells must be inserted into an existing swimlane.
mxGraph.prototype.swimlaneSelectionEnabled
Specifies if swimlanes should be selectable via the content if the mouse is released.
mxEditor.prototype.swimlaneSpacing
Specifies the spacing between swimlanes if automatic layout is turned on in layoutDiagram.
diff --git a/docs/js-api/index/General17.html b/docs/js-api/index/General17.html index 24626275b..63e6a03df 100644 --- a/docs/js-api/index/General17.html +++ b/docs/js-api/index/General17.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 table, mxForm
 tapAndHold, mxConnectionHandler
 tapAndHoldDelay, mxConnectionHandler
 tapAndHoldEnabled, mxConnectionHandler
 tapAndHoldInProgress, mxConnectionHandler
 tapAndHoldTolerance, mxConnectionHandler
 tapAndHoldValid, mxConnectionHandler
 target
 TARGET_HIGHLIGHT_COLOR, mxConstants
 targetConnectImage, mxConnectionHandler
 targetPoint, mxGeometry
 tasks, mxEditor
 tasksResource, mxEditor
 tasksTop, mxEditor
 tasksWindowImage, mxEditor
 temp, mxGraphAbstractHierarchyCell
 temperature, mxFastOrganicLayout
 template, mxObjectCodec
 templates, mxEditor
 Templates, mxEditor
 terminalDistance, mxCellState
 terminalForCellChanged, mxGraphModel
 text
 textarea, mxCellEditor
 textEnabled
 textNode, mxCellEditor
 thread, mxAnimation
 tightenToSource
 timerAutoScroll, mxGraph
 title
 TOGGLE_CELLS
 toggleCells, mxGraph
 toggleCellStyle, mxGraph
 toggleCellStyleFlags, mxGraph
 toggleCellStyles, mxGraph
 tolerance
 toolbar
 tooltip, mxCellOverlay
 TOOLTIP_VERTICAL_OFFSET, mxConstants
 TopToBottom, mxEdgeStyle
 toRadians, mxUtils
 toString
 TRACE, mxLog
 transformControlPoint, mxGraphView
 translate
 TRANSLATE
 TRANSLATE_CONTROL_POINTS, mxGeometry
 translateCell, mxGraph
 translateState, mxCellStatePreview
 transpose, mxMedianHybridCrossingReduction
 traverse
 traverseAncestors, mxHierarchicalLayout
 treeLayout, mxEditor
 TrianglePerimeter, mxPerimeter
 trigger, mxCellEditor
 trim
 type, mxMultiplicity
 typeError, mxMultiplicity
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 table, mxForm
 tapAndHold, mxConnectionHandler
 tapAndHoldDelay, mxConnectionHandler
 tapAndHoldEnabled, mxConnectionHandler
 tapAndHoldInProgress, mxConnectionHandler
 tapAndHoldTolerance, mxConnectionHandler
 tapAndHoldValid, mxConnectionHandler
 target
 TARGET_HIGHLIGHT_COLOR, mxConstants
 targetConnectImage, mxConnectionHandler
 targetPoint, mxGeometry
 tasks, mxEditor
 tasksResource, mxEditor
 tasksTop, mxEditor
 tasksWindowImage, mxEditor
 temp, mxGraphAbstractHierarchyCell
 temperature, mxFastOrganicLayout
 template, mxObjectCodec
 templates, mxEditor
 Templates, mxEditor
 terminalDistance, mxCellState
 terminalForCellChanged, mxGraphModel
 text
 textarea, mxCellEditor
 textEnabled
 textNode, mxCellEditor
 thread, mxAnimation
 tightenToSource
 timerAutoScroll, mxGraph
 title
 TOGGLE_CELLS
 toggleCells, mxGraph
 toggleCellStyle, mxGraph
 toggleCellStyleFlags, mxGraph
 toggleCellStyles, mxGraph
 tolerance
 toolbar
 tooltip, mxCellOverlay
 TOOLTIP_VERTICAL_OFFSET, mxConstants
 TopToBottom, mxEdgeStyle
 toRadians, mxUtils
 toString
 TRACE, mxLog
 transformControlPoint, mxGraphView
 translate
 TRANSLATE
 TRANSLATE_CONTROL_POINTS, mxGeometry
 translateCell, mxGraph
 translateState, mxCellStatePreview
 transpose, mxMedianHybridCrossingReduction
 traverse
 traverseAncestors, mxHierarchicalLayout
 treeLayout, mxEditor
 TrianglePerimeter, mxPerimeter
 trigger, mxCellEditor
 trim
 type, mxMultiplicity
 typeError, mxMultiplicity
-
mxForm.prototype.table
Holds the DOM node that represents the table.
mxConnectionHandler.prototype.tapAndHold = function(me,
state)
Handles the mxMouseEvent by highlighting the mxCellState.
mxConnectionHandler.prototype.tapAndHoldDelay
Specifies the time for a tap and hold.
mxConnectionHandler.prototype.tapAndHoldEnabled
Specifies if tap and hold should be used for starting connections on touch-based devices.
mxConnectionHandler.prototype.tapAndHoldInProgress
True if the timer for tap and hold events is running.
mxConnectionHandler.prototype.tapAndHoldTolerance
Specifies the tolerance for a tap and hold.
mxConnectionHandler.prototype.tapAndHoldValid
True as long as the timer is running and the touch events stay within the given tapAndHoldTolerance.
mxCell.prototype.target
Reference to the target terminal.
mxGraphHierarchyEdge.prototype.target
The node this edge targets
mxKeyHandler.prototype.target
Reference to the target DOM, that is, the DOM node where the key event listeners are installed.
Defines the color to be used for highlighting a target cell for a new or changed connection.
mxConnectionHandler.prototype.targetConnectImage
Specifies if the connect icon should be centered on the target state while connections are being previewed.
mxGeometry.prototype.targetPoint
Defines the target mxPoint of the edge.
mxEditor.prototype.tasks
Holds the mxWindow created in showTasks.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.tasksTop
Specifies the top coordinate of the tasks window in pixels.
mxEditor.prototype.tasksWindowImage
Icon for the tasks window.
mxGraphAbstractHierarchyCell.prototype.temp
Temporary variable for general use.
mxFastOrganicLayout.prototype.temperature
Temperature to limit displacement at later stages of layout.
mxObjectCodec.prototype.template
Holds the template object associated with this codec.
mxEditor.prototype.templates
Maps from names to protoype cells to be used in the toolbar for inserting new cells into the diagram.
mxCellState.prototype.terminalDistance
Caches the distance between the end points for an edge.
mxGraphModel.prototype.terminalForCellChanged = function(edge,
terminal,
isSource)
Inner helper function to update the terminal of the edge using mxCell.insertEdge and return the previous terminal.
mxCellState.prototype.text
Holds the mxText that represents the label of the cell.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
mxCellEditor.prototype.textarea
Holds the input textarea.
var textEnabled
Specifies if text output should be enabled.
var textEnabled
Specifies if text output should be enabled.
mxCellEditor.prototype.textNode
Reference to the label DOM node that has been hidden.
mxAnimation.prototype.thread
Reference to the thread while the animation is running.
mxGraphHierarchyModel.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxHierarchicalLayout.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxGraph.prototype.timerAutoScroll
Specifies if timer-based autoscrolling should be used via mxPanningManager.
mxPrintPreview.prototype.title
Holds the title of the preview window.
mxWindow.prototype.title
Reference to the DOM node (TD) that contains the title.
Specifies the event name for toggleCells.
Fires between begin- and endUpdate in toggleCells.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
mxEdgeHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxGraph.prototype.tolerance
Tolerance for a move to be handled as a single click.
mxVertexHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxDefaultToolbar.prototype.toolbar
Holds the internal mxToolbar.
mxEditor.prototype.toolbar
Holds a mxDefaultToolbar for displaying the toolbar.
mxCellOverlay.prototype.tooltip
Holds the optional string to be used as the tooltip.
Defines the vertical offset for the tooltip.
TopToBottom: function(state,
source,
target,
points,
result)
Implements a horizontal elbow edge.
toRadians: function(deg)
Converts the given degree to radians.
mxCellOverlay.prototype.toString = function()
Returns the textual representation of the overlay to be used as the tooltip.
toString: function(obj)
Returns a textual representation of the specified object.
Specified if the output for enter and leave should be visible in the console.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxGeometry.prototype.translate = function(dx,
dy)
Translates the geometry by the specified amount.
mxGraphView.prototype.translate
mxPoint that specifies the current translation.
mxPath.prototype.translate
mxPoint that specifies the translation of the complete path.
translate: function(dx,
dy)
Translates the current graphics object.
translate: function(dx,
dy)
Translates the current graphics object.
Specifies the event name for translate.
Fires after the translate was changed in setTranslate.
mxGeometry.prototype.TRANSLATE_CONTROL_POINTS
Global switch to translate the points in translate.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxCellStatePreview.prototype.translateState = function(parentState,
state,
dx,
dy)
mxMedianHybridCrossingReduction.prototype.transpose = function(
   mainLoopIteration,
   model
)
Takes each possible adjacent cell pair on each rank and checks if swapping them around reduces the number of crossing
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraphLayout.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxHierarchicalLayout.prototype.traverseAncestors
Whether or not to navigate edges whose terminal vertices have different parents but are in the same ancestry chain
mxEditor.prototype.treeLayout = function (cell,
horizontal)
Executes a vertical or horizontal compact tree layout using the specified cell as an argument.
TrianglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a triangle perimeter.
mxCellEditor.prototype.trigger
Reference to the event that was used to start editing.
mxUndoManager.prototype.trim = function()
Removes all pending steps after indexOfNextAdd from the history, invoking die on each edit.
trim: function(str,
chars)
Strips all whitespaces from both end of the string.
mxMultiplicity.prototype.type
Defines the type of the source or target terminal.
mxMultiplicity.prototype.typeError
Holds the localized error message to be displayed if the type of the neighbor for a connection does not match the rule.
+
mxForm.prototype.table
Holds the DOM node that represents the table.
mxConnectionHandler.prototype.tapAndHold = function(me,
state)
Handles the mxMouseEvent by highlighting the mxCellState.
mxConnectionHandler.prototype.tapAndHoldDelay
Specifies the time for a tap and hold.
mxConnectionHandler.prototype.tapAndHoldEnabled
Specifies if tap and hold should be used for starting connections on touch-based devices.
mxConnectionHandler.prototype.tapAndHoldInProgress
True if the timer for tap and hold events is running.
mxConnectionHandler.prototype.tapAndHoldTolerance
Specifies the tolerance for a tap and hold.
mxConnectionHandler.prototype.tapAndHoldValid
True as long as the timer is running and the touch events stay within the given tapAndHoldTolerance.
mxCell.prototype.target
Reference to the target terminal.
mxGraphHierarchyEdge.prototype.target
The node this edge targets
mxKeyHandler.prototype.target
Reference to the target DOM, that is, the DOM node where the key event listeners are installed.
Defines the color to be used for highlighting a target cell for a new or changed connection.
mxConnectionHandler.prototype.targetConnectImage
Specifies if the connect icon should be centered on the target state while connections are being previewed.
mxGeometry.prototype.targetPoint
Defines the target mxPoint of the edge.
mxEditor.prototype.tasks
Holds the mxWindow created in showTasks.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.tasksTop
Specifies the top coordinate of the tasks window in pixels.
mxEditor.prototype.tasksWindowImage
Icon for the tasks window.
mxGraphAbstractHierarchyCell.prototype.temp
Temporary variable for general use.
mxFastOrganicLayout.prototype.temperature
Temperature to limit displacement at later stages of layout.
mxObjectCodec.prototype.template
Holds the template object associated with this codec.
mxEditor.prototype.templates
Maps from names to protoype cells to be used in the toolbar for inserting new cells into the diagram.
mxCellState.prototype.terminalDistance
Caches the distance between the end points for an edge.
mxGraphModel.prototype.terminalForCellChanged = function(edge,
terminal,
isSource)
Inner helper function to update the terminal of the edge using mxCell.insertEdge and return the previous terminal.
mxCellState.prototype.text
Holds the mxText that represents the label of the cell.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
mxCellEditor.prototype.textarea
Holds the input textarea.
var textEnabled
Specifies if text output should be enabled.
var textEnabled
Specifies if text output should be enabled.
mxCellEditor.prototype.textNode
Reference to the label DOM node that has been hidden.
mxAnimation.prototype.thread
Reference to the thread while the animation is running.
mxGraphHierarchyModel.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxHierarchicalLayout.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxGraph.prototype.timerAutoScroll
Specifies if timer-based autoscrolling should be used via mxPanningManager.
mxPrintPreview.prototype.title
Holds the title of the preview window.
mxWindow.prototype.title
Reference to the DOM node (TD) that contains the title.
Specifies the event name for toggleCells.
Fires between begin- and endUpdate in toggleCells.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
mxEdgeHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxGraph.prototype.tolerance
Tolerance for a move to be handled as a single click.
mxVertexHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxDefaultToolbar.prototype.toolbar
Holds the internal mxToolbar.
mxEditor.prototype.toolbar
Holds a mxDefaultToolbar for displaying the toolbar.
mxCellOverlay.prototype.tooltip
Holds the optional string to be used as the tooltip.
Defines the vertical offset for the tooltip.
TopToBottom: function(state,
source,
target,
points,
result)
Implements a horizontal elbow edge.
toRadians: function(deg)
Converts the given degree to radians.
mxCellOverlay.prototype.toString = function()
Returns the textual representation of the overlay to be used as the tooltip.
toString: function(obj)
Returns a textual representation of the specified object.
Specified if the output for enter and leave should be visible in the console.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxGeometry.prototype.translate = function(dx,
dy)
Translates the geometry by the specified amount.
mxGraphView.prototype.translate
mxPoint that specifies the current translation.
mxPath.prototype.translate
mxPoint that specifies the translation of the complete path.
translate: function(dx,
dy)
Translates the current graphics object.
translate: function(dx,
dy)
Translates the current graphics object.
Specifies the event name for translate.
Fires after the translate was changed in setTranslate.
mxGeometry.prototype.TRANSLATE_CONTROL_POINTS
Global switch to translate the points in translate.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxCellStatePreview.prototype.translateState = function(parentState,
state,
dx,
dy)
mxMedianHybridCrossingReduction.prototype.transpose = function(
   mainLoopIteration,
   model
)
Takes each possible adjacent cell pair on each rank and checks if swapping them around reduces the number of crossing
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraphLayout.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxHierarchicalLayout.prototype.traverseAncestors
Whether or not to navigate edges whose terminal vertices have different parents but are in the same ancestry chain
mxEditor.prototype.treeLayout = function (cell,
horizontal)
Executes a vertical or horizontal compact tree layout using the specified cell as an argument.
TrianglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a triangle perimeter.
mxCellEditor.prototype.trigger
Reference to the event that was used to start editing.
mxUndoManager.prototype.trim = function()
Removes all pending steps after indexOfNextAdd from the history, invoking die on each edit.
trim: function(str,
chars)
Strips all whitespaces from both end of the string.
mxMultiplicity.prototype.type
Defines the type of the source or target terminal.
mxMultiplicity.prototype.typeError
Holds the localized error message to be displayed if the type of the neighbor for a connection does not match the rule.
diff --git a/docs/js-api/index/General18.html b/docs/js-api/index/General18.html index d69678379..30e70d0d7 100644 --- a/docs/js-api/index/General18.html +++ b/docs/js-api/index/General18.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
U
 undo
 UNDO
 undoableEditHappened, mxUndoManager
 undoManager, mxEditor
 undone, mxUndoableEdit
 UNGROUP_CELLS
 ungroupCells, mxGraph
 union, mxVertexHandler
 unmark, mxCellMarker
 UP
 update
 UPDATE_CELL_SIZE
 updateAlternateBounds, mxGraph
 updateAnimation
 updateAspect, mxImageShape
 updateBoundingBox
 updateCellSize, mxGraph
 updateCurrentState, mxConnectionHandler
 updateCursor, mxGraphHandler
 updateDefaultMode, mxToolbar
 updateEdgeBounds, mxGraphView
 updateEdgeLabelOffset, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateGroupBounds, mxGraph
 updateHandler, mxLayoutManager
 updateHtmlCanvasSize, mxGraphView
 updateHtmlShape, mxShape
 updateIcons, mxConnectionHandler
 updateLevel, mxGraphModel
 updateMouseEvent, mxGraph
 updateOnPan, mxOutline
 updatePoints, mxGraphView
 updatePreviewShape, mxGraphHandler
 updatePreviewState, mxEdgeHandler
 updateStyle, mxGraphView
 updateSvgBounds, mxShape
 updateSvgGlassPane, mxShape
 updateSvgNode
 updateSvgPath, mxShape
 updateSvgScale, mxShape
 updateSvgShape, mxShape
 updateSvgTransform, mxShape
 updateTableStyle, mxText
 updateTableWidth, mxText
 updateVertexLabelOffset, mxGraphView
 updateVmlDashStyle, mxShape
 updateVmlFill, mxShape
 updateVmlGlassPane, mxShape
 updateVmlMarkerOpacity, mxConnector
 updateVmlShape, mxShape
 updateVmlStrokeColor, mxShape
 updateVmlStrokeNode, mxShape
 updatingDocumentResource, mxGraphView
 updatingSelectionResource, mxGraphSelectionModel
 url, mxXmlRequest
 urlHelp, mxEditor
 urlImage, mxEditor
 urlInit
 urlNotify
 urlPoll
 urlPost, mxEditor
 useBoundingBox, mxGraphLayout
 useGrid, mxPanningHandler
 useGuidesForEvent, mxGraphHandler
 useInputOrigin, mxFastOrganicLayout
 useLeftButtonForPanning, mxPanningHandler
 useLeftButtonForPopup, mxPopupMenu
 usePopupTrigger, mxPanningHandler
 username, mxXmlRequest
 useScrollbarsForPanning, mxGraph
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
U
 undo
 UNDO
 undoableEditHappened, mxUndoManager
 undoManager, mxEditor
 undone, mxUndoableEdit
 UNGROUP_CELLS
 ungroupCells, mxGraph
 union, mxVertexHandler
 unmark, mxCellMarker
 UP
 update
 UPDATE_CELL_SIZE
 updateAlternateBounds, mxGraph
 updateAnimation
 updateAspect, mxImageShape
 updateBoundingBox
 updateCellSize, mxGraph
 updateCurrentState, mxConnectionHandler
 updateCursor, mxGraphHandler
 updateDefaultMode, mxToolbar
 updateEdgeBounds, mxGraphView
 updateEdgeLabelOffset, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateGroupBounds, mxGraph
 updateHandler, mxLayoutManager
 updateHtmlCanvasSize, mxGraphView
 updateHtmlShape, mxShape
 updateIcons, mxConnectionHandler
 updateLevel, mxGraphModel
 updateMouseEvent, mxGraph
 updateOnPan, mxOutline
 updatePoints, mxGraphView
 updatePreviewShape, mxGraphHandler
 updatePreviewState, mxEdgeHandler
 updateStyle, mxGraphView
 updateSvgBounds, mxShape
 updateSvgGlassPane, mxShape
 updateSvgNode
 updateSvgPath, mxShape
 updateSvgScale, mxShape
 updateSvgShape, mxShape
 updateSvgTransform, mxShape
 updateTableStyle, mxText
 updateTableWidth, mxText
 updateVertexLabelOffset, mxGraphView
 updateVmlDashStyle, mxShape
 updateVmlFill, mxShape
 updateVmlGlassPane, mxShape
 updateVmlMarkerOpacity, mxConnector
 updateVmlShape, mxShape
 updateVmlStrokeColor, mxShape
 updateVmlStrokeNode, mxShape
 updatingDocumentResource, mxGraphView
 updatingSelectionResource, mxGraphSelectionModel
 url, mxXmlRequest
 urlHelp, mxEditor
 urlImage, mxEditor
 urlInit
 urlNotify
 urlPoll
 urlPost, mxEditor
 useBoundingBox, mxGraphLayout
 useGrid, mxPanningHandler
 useGuidesForEvent, mxGraphHandler
 useInputOrigin, mxFastOrganicLayout
 useLeftButtonForPanning, mxPanningHandler
 useLeftButtonForPopup, mxPopupMenu
 usePopupTrigger, mxPanningHandler
 username, mxXmlRequest
 useScrollbarsForPanning, mxGraph
-
mxEditor.prototype.undo = function ()
Undo the last change in graph.
mxUndoableEdit.prototype.undo = function()
Undoes all changes in this edit.
mxUndoManager.prototype.undo = function()
Undoes the last change.
Specifies the event name for undo.
Fires after the change was dispatched in endUpdate.
Fires after the selection was changed in changeSelection.
Fires after the root was changed in setCurrentRoot.
Fires afer a significant edit was undone in undo.
mxUndoManager.prototype.undoableEditHappened = function(undoableEdit)
Method to be called to add new undoable edits to the history.
mxEditor.prototype.undoManager
Holds an mxUndoManager for the command history.
mxUndoableEdit.prototype.undone
Specifies if this edit has been undone.
Specifies the event name for ungroupCells.
Fires between begin- and endUpdate in ungroupCells.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxVertexHandler.prototype.union = function(bounds,
dx,
dy,
index,
gridEnabled,
scale,
tr)
Returns the union of the given bounds and location for the specified handle index.
mxCellMarker.prototype.unmark = function()
Hides the marker and fires a mark event.
Specifies the event name for up.
Fire if the current root is changed by executing an mxCurrentRootChange.
mxConstraintHandler.prototype.update = function(me,
source)
Updates the state of this handler based on the given mxMouseEvent.
mxOutline.prototype.update = function(revalidate)
Updates the outline.
mxRubberband.prototype.update = function(x,
y)
Sets currentX and currentY and calls repaint.
Specifies the event name for updateCellSize.
Fires between begin- and endUpdate in updateCellSize.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxAnimation.prototype.updateAnimation = function()
Hook for subclassers to implement the animation.
mxMorphing.prototype.updateAnimation = function()
Animation step.
mxImageShape.prototype.updateAspect = function(w,
h)
Updates the aspect of the image for the given image width and height.
Updates the boundingBox for this shape.
mxShape.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using createBoundingBox and augmentBoundingBox and stores the result in boundingBox.
mxText.prototype.updateBoundingBox = function()
Overrides method to do nothing.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxConnectionHandler.prototype.updateCurrentState = function(me)
Updates the current state for a given mouse move event by using the marker.
mxGraphHandler.prototype.updateCursor
Specifies if a move cursor should be shown if the mouse is ove a movable cell.
mxToolbar.prototype.updateDefaultMode
Boolean indicating if the default mode should be the last selected switch mode or the first inserted switch mode.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of the absolute points.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxGraphModel.prototype.updateEdgeParent = function(edge,
root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
mxGraphModel.prototype.updateEdgeParents = function(cell,
root)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxLayoutManager.prototype.updateHandler
Holds the function that handles the endUpdate event.
mxGraphView.prototype.updateHtmlCanvasSize = function(width,
height)
Updates the size of the HTML canvas.
mxShape.prototype.updateHtmlShape = function(node)
Updates the bounds or points of the specified HTML node and updates the inner children to reflect the changes.
mxConnectionHandler.prototype.updateIcons = function(state,
icons,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxGraphModel.prototype.updateLevel
Counter for the depth of nested transactions.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required.
mxOutline.prototype.updateOnPan
Specifies if update should be called for mxEvent.PAN in the source graph.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphHandler.prototype.updatePreviewShape = function()
Updates the bounds of the preview shape.
mxEdgeHandler.prototype.updatePreviewState = function(edge,
point,
terminalState)
Updates the given preview state taking into account the state of the constraint handler.
mxGraphView.prototype.updateStyle
Specifies if the style should be updated in each validation step.
mxShape.prototype.updateSvgBounds = function(node)
Updates the bounds of the given node using bounds.
mxShape.prototype.updateSvgGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxDoubleEllipse.prototype.updateSvgNode = function(node,
inset)
Updates the given node to reflect the new bounds and scale.
mxEllipse.prototype.updateSvgNode = function(node)
Updates the given node to reflect the new bounds and scale.
mxShape.prototype.updateSvgPath = function(node)
Updates the path of the given node using points.
mxShape.prototype.updateSvgScale = function(node)
Updates the properties of the given node that depend on the scale and checks the crisp rendering attribute.
mxShape.prototype.updateSvgShape = function(node)
Updates the bounds or points of the specified SVG node and updates the inner children to reflect the changes.
mxShape.prototype.updateSvgTransform = function(node,
shadow)
Updates the tranform of the given node.
Updates the style of the given HTML table and the value within the table.
mxText.prototype.updateTableWidth = function(table)
Updates the width of the given HTML table.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxShape.prototype.updateVmlDashStyle = function()
Updates the dashstyle in the stroke node.
mxShape.prototype.updateVmlFill = function(node,
c1,
c2,
dir,
alpha)
Updates the given VML fill node.
mxShape.prototype.updateVmlGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxConnector.prototype.updateVmlMarkerOpacity = function()
Updates the opacity for the markers in VML.
mxShape.prototype.updateVmlShape = function(node)
Updates the bounds or points of the specified VML node and updates the inner children to reflect the changes.
mxShape.prototype.updateVmlStrokeColor = function(node)
Updates the VML stroke color for the given node.
mxShape.prototype.updateVmlStrokeNode = function(parent)
Creates the stroke node for VML.
Specifies the resource key for the status message while the document is being updated.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxXmlRequest.prototype.url
Holds the target URL of the request.
mxEditor.prototype.urlHelp
Specifies the URL to be used for the contents of the Online Help window.
mxEditor.prototype.urlImage
Specifies the URL to be used for creating a bitmap of the graph in the image action.
mxEditor.prototype.urlInit
Specifies the URL to be used for initializing the session.
mxSession.prototype.urlInit
URL to initialize the session.
mxEditor.prototype.urlNotify
Specifies the URL to be used for notifying the backend in the session.
mxSession.prototype.urlNotify
URL to send changes to the backend.
mxEditor.prototype.urlPoll
Specifies the URL to be used for polling in the session.
mxSession.prototype.urlPoll
URL for polling the backend.
mxEditor.prototype.urlPost
Specifies the URL to be used for posting the diagram to a backend in save.
mxGraphLayout.prototype.useBoundingBox
Boolean indicating if the bounding box of the label should be used if its available.
mxPanningHandler.prototype.useGrid
Specifies if the panning steps should be aligned to the grid size.
mxGraphHandler.prototype.useGuidesForEvent = function(me)
Returns true if the guides should be used for the given mxMouseEvent.
mxFastOrganicLayout.prototype.useInputOrigin
Specifies if the top left corner of the input cells should be the origin of the layout result.
mxPanningHandler.prototype.useLeftButtonForPanning
Specifies if panning should be active for the left mouse button.
mxPopupMenu.prototype.useLeftButtonForPopup
Specifies if popupmenus should be activated by clicking the left mouse button.
mxPanningHandler.prototype.usePopupTrigger
Specifies if the isPopupTrigger should also be used for panning.
mxXmlRequest.prototype.username
Specifies the username to be used for authentication.
mxGraph.prototype.useScrollbarsForPanning
Specifies if scrollbars should be used for panning in panGraph if any scrollbars are available.
+
mxEditor.prototype.undo = function ()
Undo the last change in graph.
mxUndoableEdit.prototype.undo = function()
Undoes all changes in this edit.
mxUndoManager.prototype.undo = function()
Undoes the last change.
Specifies the event name for undo.
Fires after the change was dispatched in endUpdate.
Fires after the selection was changed in changeSelection.
Fires after the root was changed in setCurrentRoot.
Fires afer a significant edit was undone in undo.
mxUndoManager.prototype.undoableEditHappened = function(undoableEdit)
Method to be called to add new undoable edits to the history.
mxEditor.prototype.undoManager
Holds an mxUndoManager for the command history.
mxUndoableEdit.prototype.undone
Specifies if this edit has been undone.
Specifies the event name for ungroupCells.
Fires between begin- and endUpdate in ungroupCells.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxVertexHandler.prototype.union = function(bounds,
dx,
dy,
index,
gridEnabled,
scale,
tr)
Returns the union of the given bounds and location for the specified handle index.
mxCellMarker.prototype.unmark = function()
Hides the marker and fires a mark event.
Specifies the event name for up.
Fire if the current root is changed by executing an mxCurrentRootChange.
mxConstraintHandler.prototype.update = function(me,
source)
Updates the state of this handler based on the given mxMouseEvent.
mxOutline.prototype.update = function(revalidate)
Updates the outline.
mxRubberband.prototype.update = function(x,
y)
Sets currentX and currentY and calls repaint.
Specifies the event name for updateCellSize.
Fires between begin- and endUpdate in updateCellSize.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxAnimation.prototype.updateAnimation = function()
Hook for subclassers to implement the animation.
mxMorphing.prototype.updateAnimation = function()
Animation step.
mxImageShape.prototype.updateAspect = function(w,
h)
Updates the aspect of the image for the given image width and height.
Updates the boundingBox for this shape.
mxShape.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using createBoundingBox and augmentBoundingBox and stores the result in boundingBox.
mxText.prototype.updateBoundingBox = function()
Overrides method to do nothing.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxConnectionHandler.prototype.updateCurrentState = function(me)
Updates the current state for a given mouse move event by using the marker.
mxGraphHandler.prototype.updateCursor
Specifies if a move cursor should be shown if the mouse is ove a movable cell.
mxToolbar.prototype.updateDefaultMode
Boolean indicating if the default mode should be the last selected switch mode or the first inserted switch mode.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of the absolute points.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxGraphModel.prototype.updateEdgeParent = function(edge,
root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
mxGraphModel.prototype.updateEdgeParents = function(cell,
root)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxLayoutManager.prototype.updateHandler
Holds the function that handles the endUpdate event.
mxGraphView.prototype.updateHtmlCanvasSize = function(width,
height)
Updates the size of the HTML canvas.
mxShape.prototype.updateHtmlShape = function(node)
Updates the bounds or points of the specified HTML node and updates the inner children to reflect the changes.
mxConnectionHandler.prototype.updateIcons = function(state,
icons,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxGraphModel.prototype.updateLevel
Counter for the depth of nested transactions.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required.
mxOutline.prototype.updateOnPan
Specifies if update should be called for mxEvent.PAN in the source graph.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphHandler.prototype.updatePreviewShape = function()
Updates the bounds of the preview shape.
mxEdgeHandler.prototype.updatePreviewState = function(edge,
point,
terminalState)
Updates the given preview state taking into account the state of the constraint handler.
mxGraphView.prototype.updateStyle
Specifies if the style should be updated in each validation step.
mxShape.prototype.updateSvgBounds = function(node)
Updates the bounds of the given node using bounds.
mxShape.prototype.updateSvgGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxDoubleEllipse.prototype.updateSvgNode = function(node,
inset)
Updates the given node to reflect the new bounds and scale.
mxEllipse.prototype.updateSvgNode = function(node)
Updates the given node to reflect the new bounds and scale.
mxShape.prototype.updateSvgPath = function(node)
Updates the path of the given node using points.
mxShape.prototype.updateSvgScale = function(node)
Updates the properties of the given node that depend on the scale and checks the crisp rendering attribute.
mxShape.prototype.updateSvgShape = function(node)
Updates the bounds or points of the specified SVG node and updates the inner children to reflect the changes.
mxShape.prototype.updateSvgTransform = function(node,
shadow)
Updates the tranform of the given node.
Updates the style of the given HTML table and the value within the table.
mxText.prototype.updateTableWidth = function(table)
Updates the width of the given HTML table.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxShape.prototype.updateVmlDashStyle = function()
Updates the dashstyle in the stroke node.
mxShape.prototype.updateVmlFill = function(node,
c1,
c2,
dir,
alpha)
Updates the given VML fill node.
mxShape.prototype.updateVmlGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxConnector.prototype.updateVmlMarkerOpacity = function()
Updates the opacity for the markers in VML.
mxShape.prototype.updateVmlShape = function(node)
Updates the bounds or points of the specified VML node and updates the inner children to reflect the changes.
mxShape.prototype.updateVmlStrokeColor = function(node)
Updates the VML stroke color for the given node.
mxShape.prototype.updateVmlStrokeNode = function(parent)
Creates the stroke node for VML.
Specifies the resource key for the status message while the document is being updated.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxXmlRequest.prototype.url
Holds the target URL of the request.
mxEditor.prototype.urlHelp
Specifies the URL to be used for the contents of the Online Help window.
mxEditor.prototype.urlImage
Specifies the URL to be used for creating a bitmap of the graph in the image action.
mxEditor.prototype.urlInit
Specifies the URL to be used for initializing the session.
mxSession.prototype.urlInit
URL to initialize the session.
mxEditor.prototype.urlNotify
Specifies the URL to be used for notifying the backend in the session.
mxSession.prototype.urlNotify
URL to send changes to the backend.
mxEditor.prototype.urlPoll
Specifies the URL to be used for polling in the session.
mxSession.prototype.urlPoll
URL for polling the backend.
mxEditor.prototype.urlPost
Specifies the URL to be used for posting the diagram to a backend in save.
mxGraphLayout.prototype.useBoundingBox
Boolean indicating if the bounding box of the label should be used if its available.
mxPanningHandler.prototype.useGrid
Specifies if the panning steps should be aligned to the grid size.
mxGraphHandler.prototype.useGuidesForEvent = function(me)
Returns true if the guides should be used for the given mxMouseEvent.
mxFastOrganicLayout.prototype.useInputOrigin
Specifies if the top left corner of the input cells should be the origin of the layout result.
mxPanningHandler.prototype.useLeftButtonForPanning
Specifies if panning should be active for the left mouse button.
mxPopupMenu.prototype.useLeftButtonForPopup
Specifies if popupmenus should be activated by clicking the left mouse button.
mxPanningHandler.prototype.usePopupTrigger
Specifies if the isPopupTrigger should also be used for panning.
mxXmlRequest.prototype.username
Specifies the username to be used for authentication.
mxGraph.prototype.useScrollbarsForPanning
Specifies if scrollbars should be used for panning in panGraph if any scrollbars are available.
diff --git a/docs/js-api/index/General19.html b/docs/js-api/index/General19.html index 1f90cb9df..d645f854b 100644 --- a/docs/js-api/index/General19.html +++ b/docs/js-api/index/General19.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 VALID_COLOR, mxConstants
 validate, mxGraphView
 validateBackground, mxGraphView
 validateBounds, mxGraphView
 validateCell, mxGraph
 validateConnection
 validateEdge, mxGraph
 validateGraph, mxGraph
 validatePoints, mxGraphView
 validating, mxEditor
 Validation, mxGraph
 validationAlert, mxGraph
 validColor, mxCellMarker
 validNeighbors, mxMultiplicity
 validNeighborsAllowed, mxMultiplicity
 validState, mxCellMarker
 value
 valueChanged, mxCell
 valueForCellChanged, mxGraphModel
 values, mxStyleRegistry
 Variables
MedianCellSortermxActormxAnimationmxArrowmxAutoSaveManagermxCellmxCellEditormxCellHighlightmxCellMarkermxCellOverlaymxCellPathmxCellRenderermxCellStatemxCellStatePreviewmxCircleLayoutmxClientmxClipboardmxCodecmxCodecRegistrymxCompactTreeLayoutmxCompositeLayoutmxConnectionConstraintmxConnectormxConstantsmxConstraintHandlermxCoordinateAssignmentmxCylindermxDefaultKeyHandlermxDefaultPopupMenumxDefaultToolbarmxDoubleEllipsemxDragSourcemxEdgeHandlermxElbowEdgeHandlermxEllipsemxEventmxEventObjectmxEventSourcemxFastOrganicLayoutmxFormmxGeometrymxGraphmxGraphAbstractHierarchyCellmxGraphHandlermxGraphHierarchyEdgemxGraphHierarchyModelmxGraphHierarchyNodemxGraphLayoutmxGraphModelmxGraphSelectionModelmxGraphViewmxGuidemxHierarchicalLayoutmxImagemxImageBundlemxImageExportmxImageShapemxKeyHandlermxLabelmxLayoutManagermxLinemxLogmxMarkermxMedianHybridCrossingReductionmxMinimumCycleRemovermxMorphingmxMouseEventmxMultiplicitymxObjectCodecmxObjectIdentitymxOutlinemxPanningHandlermxPanningManagermxParallelEdgeLayoutmxPartitionLayoutmxPathmxPointmxPolylinemxPopupMenumxPrintPreviewmxRectanglemxResourcesmxRhombusmxRubberbandmxSelectionCellsHandlermxSessionmxShapemxSpaceManagermxStackLayoutmxStencilmxStencilShapemxStyleRegistrymxSvgCanvas2DmxSwimlanemxSwimlaneManagermxTemporaryCellStatesmxTextmxToolbarmxTooltipHandlermxUndoableEditmxUndoManagermxUrlConvertermxUtilsmxVertexHandlermxWindowmxXmlCanvas2DmxXmlRequestWeightedCellSorter
 VERSION, mxClient
 vertex, mxCell
 VERTEX_SELECTION_COLOR, mxConstants
 VERTEX_SELECTION_STROKEWIDTH, mxConstants
 vertexArray, mxFastOrganicLayout
 vertexLabelsMovable, mxGraph
 vertexMapper, mxGraphHierarchyModel
 vertical, mxGuide
 verticalAlign, mxCellOverlay
 verticalLayout, mxCompactTreeLayout
 verticalTextDegree, mxText
 view
 visible
 visibleSourceState, mxCellState
 visibleStateForCellChanged, mxGraphModel
 visibleTargetState, mxCellState
 visit
 visited, WeightedCellSorter
 vmlNodes
 vmlScale
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 VALID_COLOR, mxConstants
 validate, mxGraphView
 validateBackground, mxGraphView
 validateBounds, mxGraphView
 validateCell, mxGraph
 validateConnection
 validateEdge, mxGraph
 validateGraph, mxGraph
 validatePoints, mxGraphView
 validating, mxEditor
 Validation, mxGraph
 validationAlert, mxGraph
 validColor, mxCellMarker
 validNeighbors, mxMultiplicity
 validNeighborsAllowed, mxMultiplicity
 validState, mxCellMarker
 value
 valueChanged, mxCell
 valueForCellChanged, mxGraphModel
 values, mxStyleRegistry
 Variables
MedianCellSortermxActormxAnimationmxArrowmxAutoSaveManagermxCellmxCellEditormxCellHighlightmxCellMarkermxCellOverlaymxCellPathmxCellRenderermxCellStatemxCellStatePreviewmxCircleLayoutmxClientmxClipboardmxCodecmxCodecRegistrymxCompactTreeLayoutmxCompositeLayoutmxConnectionConstraintmxConnectormxConstantsmxConstraintHandlermxCoordinateAssignmentmxCylindermxDefaultKeyHandlermxDefaultPopupMenumxDefaultToolbarmxDoubleEllipsemxDragSourcemxEdgeHandlermxElbowEdgeHandlermxEllipsemxEventmxEventObjectmxEventSourcemxFastOrganicLayoutmxFormmxGeometrymxGraphmxGraphAbstractHierarchyCellmxGraphHandlermxGraphHierarchyEdgemxGraphHierarchyModelmxGraphHierarchyNodemxGraphLayoutmxGraphModelmxGraphSelectionModelmxGraphViewmxGuidemxHierarchicalLayoutmxImagemxImageBundlemxImageExportmxImageShapemxKeyHandlermxLabelmxLayoutManagermxLinemxLogmxMarkermxMedianHybridCrossingReductionmxMinimumCycleRemovermxMorphingmxMouseEventmxMultiplicitymxObjectCodecmxObjectIdentitymxOutlinemxPanningHandlermxPanningManagermxParallelEdgeLayoutmxPartitionLayoutmxPathmxPointmxPolylinemxPopupMenumxPrintPreviewmxRectanglemxResourcesmxRhombusmxRubberbandmxSelectionCellsHandlermxSessionmxShapemxSpaceManagermxStackLayoutmxStencilmxStencilShapemxStyleRegistrymxSvgCanvas2DmxSwimlanemxSwimlaneManagermxTemporaryCellStatesmxTextmxToolbarmxTooltipHandlermxUndoableEditmxUndoManagermxUrlConvertermxUtilsmxVertexHandlermxWindowmxXmlCanvas2DmxXmlRequestWeightedCellSorter
 VERSION, mxClient
 vertex, mxCell
 VERTEX_SELECTION_COLOR, mxConstants
 VERTEX_SELECTION_STROKEWIDTH, mxConstants
 vertexArray, mxFastOrganicLayout
 vertexLabelsMovable, mxGraph
 vertexMapper, mxGraphHierarchyModel
 vertical, mxGuide
 verticalAlign, mxCellOverlay
 verticalLayout, mxCompactTreeLayout
 verticalTextDegree, mxText
 view
 visible
 visibleSourceState, mxCellState
 visibleStateForCellChanged, mxGraphModel
 visibleTargetState, mxCellState
 visit
 visited, WeightedCellSorter
 vmlNodes
 vmlScale
-
Defines the color to be used for the coloring valid connection previews.
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.validateBackground = function()
Validates the background image.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxEditor.prototype.validating
Specifies if mxGraph.validateGraph should automatically be invoked after each change.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCellMarker.prototype.validColor
Holds the valid marker color.
mxMultiplicity.prototype.validNeighbors
Holds an array of strings that specify the type of neighbor for which this rule applies.
mxMultiplicity.prototype.validNeighborsAllowed
Boolean indicating if the list of validNeighbors are those that are allowed for this rule or those that are not allowed for this rule.
mxCellMarker.prototype.validState
Holds the marked mxCellState if it is valid.
mxCell.prototype.value
Holds the user object.
mxMultiplicity.prototype.value
Optional string that specifies the value of the attribute to be passed to mxUtils.isNode to check if the rule applies to a cell.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
Maps from strings to objects.
Contains the current version of the mxGraph library.
mxCell.prototype.vertex
Specifies whether the cell is a vertex.
Defines the color to be used for the selection border of vertices.
Defines the strokewidth to be used for vertex selections.
mxFastOrganicLayout.prototype.vertexArray
An array of all vertices to be laid out.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraphHierarchyModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxGuide.prototype.vertical
Specifies if vertical guides are enabled.
mxCellOverlay.prototype.verticalAlign
Holds the vertical alignment for the overlay.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxText.prototype.verticalTextDegree
Specifies the degree to be used for vertical text.
mxCellState.prototype.view
Reference to the enclosing mxGraphView.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
mxTemporaryCellStates.prototype.view
Holds the width of the rectangle.
mxCell.prototype.visible
Specifies whether the cell is visible.
mxWindow.prototype.visible
Boolean flag that represents the visible state of the window.
mxCellState.prototype.visibleSourceState
Caches the visible source terminal state.
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxCellState.prototype.visibleTargetState
Caches the visible target terminal state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
WeightedCellSorter.prototype.visited
Whether or not this cell has been visited in the current assignment.
mxConnector.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxCylinder.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxDoubleEllipse.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxLabel.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxLine.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxShape.prototype.vmlNodes
Array if VML node names to fix in IE8 standards mode.
mxSwimlane.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxActor.prototype.vmlScale
Renders VML with a scale of 2.
mxCylinder.prototype.vmlScale
Renders VML with a scale of 2.
mxDoubleEllipse.prototype.vmlScale
Renders VML with a scale of 2.
mxShape.prototype.vmlScale
Internal scaling for VML using coordsize for better precision.
mxStencilShape.prototype.vmlScale
Renders VML with a scale of 4.
+
Defines the color to be used for the coloring valid connection previews.
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.validateBackground = function()
Validates the background image.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxEditor.prototype.validating
Specifies if mxGraph.validateGraph should automatically be invoked after each change.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCellMarker.prototype.validColor
Holds the valid marker color.
mxMultiplicity.prototype.validNeighbors
Holds an array of strings that specify the type of neighbor for which this rule applies.
mxMultiplicity.prototype.validNeighborsAllowed
Boolean indicating if the list of validNeighbors are those that are allowed for this rule or those that are not allowed for this rule.
mxCellMarker.prototype.validState
Holds the marked mxCellState if it is valid.
mxCell.prototype.value
Holds the user object.
mxMultiplicity.prototype.value
Optional string that specifies the value of the attribute to be passed to mxUtils.isNode to check if the rule applies to a cell.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
Maps from strings to objects.
Contains the current version of the mxGraph library.
mxCell.prototype.vertex
Specifies whether the cell is a vertex.
Defines the color to be used for the selection border of vertices.
Defines the strokewidth to be used for vertex selections.
mxFastOrganicLayout.prototype.vertexArray
An array of all vertices to be laid out.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraphHierarchyModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxGuide.prototype.vertical
Specifies if vertical guides are enabled.
mxCellOverlay.prototype.verticalAlign
Holds the vertical alignment for the overlay.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxText.prototype.verticalTextDegree
Specifies the degree to be used for vertical text.
mxCellState.prototype.view
Reference to the enclosing mxGraphView.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
mxTemporaryCellStates.prototype.view
Holds the width of the rectangle.
mxCell.prototype.visible
Specifies whether the cell is visible.
mxWindow.prototype.visible
Boolean flag that represents the visible state of the window.
mxCellState.prototype.visibleSourceState
Caches the visible source terminal state.
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxCellState.prototype.visibleTargetState
Caches the visible target terminal state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
WeightedCellSorter.prototype.visited
Whether or not this cell has been visited in the current assignment.
mxConnector.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxCylinder.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxDoubleEllipse.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxLabel.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxLine.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxShape.prototype.vmlNodes
Array if VML node names to fix in IE8 standards mode.
mxSwimlane.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxActor.prototype.vmlScale
Renders VML with a scale of 2.
mxCylinder.prototype.vmlScale
Renders VML with a scale of 2.
mxDoubleEllipse.prototype.vmlScale
Renders VML with a scale of 2.
mxShape.prototype.vmlScale
Internal scaling for VML using coordsize for better precision.
mxStencilShape.prototype.vmlScale
Renders VML with a scale of 4.
diff --git a/docs/js-api/index/General20.html b/docs/js-api/index/General20.html index 5e1281e78..2b1c1b136 100644 --- a/docs/js-api/index/General20.html +++ b/docs/js-api/index/General20.html @@ -11,21 +11,21 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
W
 w0, mxStencil
 warn, mxLog
 WARN, mxLog
 warningImage, mxGraph
 waypointsEnabled, mxConnectionHandler
 WeightedCellSorter
 weightedMedian, mxMedianHybridCrossingReduction
 weightedValue, WeightedCellSorter
 widestRank, mxCoordinateAssignment
 widestRankValue, mxCoordinateAssignment
 width
 Windows, mxEditor
 wnd, mxPrintPreview
 wrap, mxStackLayout
 write
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeGraphModel, mxEditor
 writeHead, mxPrintPreview
 writeln
 writePrimitiveAttribute, mxObjectCodec
X
 x
 x0
Y
 y
 y0
Z
 zIndex
 zoom, mxGraph
 zoomActual, mxGraph
 zoomFactor, mxGraph
 zoomIn, mxGraph
 zoomOut, mxGraph
 zoomTo, mxGraph
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
W
 w0, mxStencil
 warn, mxLog
 WARN, mxLog
 warningImage, mxGraph
 waypointsEnabled, mxConnectionHandler
 WeightedCellSorter
 weightedMedian, mxMedianHybridCrossingReduction
 weightedValue, WeightedCellSorter
 widestRank, mxCoordinateAssignment
 widestRankValue, mxCoordinateAssignment
 width
 Windows, mxEditor
 wnd, mxPrintPreview
 wrap, mxStackLayout
 write
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeGraphModel, mxEditor
 writeHead, mxPrintPreview
 writeln
 writePrimitiveAttribute, mxObjectCodec
X
 x
 x0
Y
 y
 y0
Z
 zIndex
 zoom, mxGraph
 zoomActual, mxGraph
 zoomFactor, mxGraph
 zoomIn, mxGraph
 zoomOut, mxGraph
 zoomTo, mxGraph
-
mxStencil.prototype.w0
Holds the width of the shape.
warn: function()
Adds all arguments to the console if WARN is enabled.
Specifies if the output for warn should be visible in the console.
mxGraph.prototype.warningImage
Specifies the mxImage for the image to be used to display a warning overlay.
mxConnectionHandler.prototype.waypointsEnabled
Specifies if single clicks should add waypoints on the new edge.
A utility class used to track cells whilst sorting occurs on the weighted sum of their connected edges.
function WeightedCellSorter(cell,
weightedValue)
Constructs a new weighted cell sorted for the given cell and weight.
mxMedianHybridCrossingReduction.prototype.weightedMedian = function(iteration,
model)
Sweeps up or down the layout attempting to minimise the median placement of connected cells on adjacent ranks
WeightedCellSorter.prototype.weightedValue
The weighted value of the cell stored.
mxCoordinateAssignment.prototype.widestRank
The rank that has the widest x position
mxCoordinateAssignment.prototype.widestRankValue
The X-coordinate of the edge of the widest rank
mxGraphAbstractHierarchyCell.prototype.width
The width of this cell
mxImage.prototype.width
Integer that specifies the width of the image.
mxRectangle.prototype.width
Holds the width of the rectangle.
mxPrintPreview.prototype.wnd
Reference to the preview window.
mxStackLayout.prototype.wrap
Value at which a new column or row should be created.
write: function()
Adds the specified strings to the console.
mxPath.prototype.write = function(string)
Writes directly into the path.
write: function(parent,
text)
Creates a text node for the given string and appends it to the given parent.
mxObjectCodec.prototype.writeAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
mxObjectCodec.prototype.writeComplexAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as a child node of the given node.
mxEditor.prototype.writeGraphModel = function (linefeed)
Hook to create the string representation of the diagram.
mxPrintPreview.prototype.writeHead = function(doc,
css)
Writes the HEAD section into the given document, without the opening and closing HEAD tags.
writeln: function()
Adds the specified strings to the console, appending a linefeed at the end of each string.
writeln: function(parent,
text)
Creates a text node for the given string and appends it to the given parent with an additional linefeed.
mxObjectCodec.prototype.writePrimitiveAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as an attribute of the given node.
+
mxStencil.prototype.w0
Holds the width of the shape.
warn: function()
Adds all arguments to the console if WARN is enabled.
Specifies if the output for warn should be visible in the console.
mxGraph.prototype.warningImage
Specifies the mxImage for the image to be used to display a warning overlay.
mxConnectionHandler.prototype.waypointsEnabled
Specifies if single clicks should add waypoints on the new edge.
A utility class used to track cells whilst sorting occurs on the weighted sum of their connected edges.
function WeightedCellSorter(cell,
weightedValue)
Constructs a new weighted cell sorted for the given cell and weight.
mxMedianHybridCrossingReduction.prototype.weightedMedian = function(iteration,
model)
Sweeps up or down the layout attempting to minimise the median placement of connected cells on adjacent ranks
WeightedCellSorter.prototype.weightedValue
The weighted value of the cell stored.
mxCoordinateAssignment.prototype.widestRank
The rank that has the widest x position
mxCoordinateAssignment.prototype.widestRankValue
The X-coordinate of the edge of the widest rank
mxGraphAbstractHierarchyCell.prototype.width
The width of this cell
mxImage.prototype.width
Integer that specifies the width of the image.
mxRectangle.prototype.width
Holds the width of the rectangle.
mxPrintPreview.prototype.wnd
Reference to the preview window.
mxStackLayout.prototype.wrap
Value at which a new column or row should be created.
write: function()
Adds the specified strings to the console.
mxPath.prototype.write = function(string)
Writes directly into the path.
write: function(parent,
text)
Creates a text node for the given string and appends it to the given parent.
mxObjectCodec.prototype.writeAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
mxObjectCodec.prototype.writeComplexAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as a child node of the given node.
mxEditor.prototype.writeGraphModel = function (linefeed)
Hook to create the string representation of the diagram.
mxPrintPreview.prototype.writeHead = function(doc,
css)
Writes the HEAD section into the given document, without the opening and closing HEAD tags.
writeln: function()
Adds the specified strings to the console, appending a linefeed at the end of each string.
writeln: function(parent,
text)
Creates a text node for the given string and appends it to the given parent with an additional linefeed.
mxObjectCodec.prototype.writePrimitiveAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as an attribute of the given node.
-
mxGraphAbstractHierarchyCell.prototype.x
The x position of this cell for each layer it occupies
mxPoint.prototype.x
Holds the x-coordinate of the point.
mxCircleLayout.prototype.x0
Integer specifying the left coordinate of the circle.
mxStackLayout.prototype.x0
Specifies the horizontal origin of the layout.
+
mxGraphAbstractHierarchyCell.prototype.x
The x position of this cell for each layer it occupies
mxPoint.prototype.x
Holds the x-coordinate of the point.
mxCircleLayout.prototype.x0
Integer specifying the left coordinate of the circle.
mxStackLayout.prototype.x0
Specifies the horizontal origin of the layout.
-
mxGraphAbstractHierarchyCell.prototype.y
The y position of this cell for each layer it occupies
mxPoint.prototype.y
Holds the y-coordinate of the point.
mxCircleLayout.prototype.y0
Integer specifying the top coordinate of the circle.
mxPrintPreview.prototype.y0
Holds the vertical offset of the output.
mxStackLayout.prototype.y0
Specifies the vertical origin of the layout.
+
mxGraphAbstractHierarchyCell.prototype.y
The y position of this cell for each layer it occupies
mxPoint.prototype.y
Holds the y-coordinate of the point.
mxCircleLayout.prototype.y0
Integer specifying the top coordinate of the circle.
mxPrintPreview.prototype.y0
Holds the vertical offset of the output.
mxStackLayout.prototype.y0
Specifies the vertical origin of the layout.
-
mxPopupMenu.prototype.zIndex
Specifies the zIndex for the popupmenu and its shadow.
mxTooltipHandler.prototype.zIndex
Specifies the zIndex for the tooltip and its shadow.
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomFactor
Specifies the factor used for zoomIn and zoomOut.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
+
mxPopupMenu.prototype.zIndex
Specifies the zIndex for the popupmenu and its shadow.
mxTooltipHandler.prototype.zIndex
Specifies the zIndex for the tooltip and its shadow.
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomFactor
Specifies the factor used for zoomIn and zoomOut.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
diff --git a/docs/js-api/index/General3.html b/docs/js-api/index/General3.html index ca95e081e..701638090 100644 --- a/docs/js-api/index/General3.html +++ b/docs/js-api/index/General3.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
C
 calcAttraction, mxFastOrganicLayout
 calcPositions, mxFastOrganicLayout
 calcRepulsion, mxFastOrganicLayout
 calculateCrossings, mxMedianHybridCrossingReduction
 calculatedWeightedValue, mxCoordinateAssignment
 calculateRankCrossing, mxMedianHybridCrossingReduction
 calculateWidestRank, mxCoordinateAssignment
 canExportCell, mxGraph
 canImportCell, mxGraph
 canRedo, mxUndoManager
 canUndo, mxUndoManager
 captureDocumentGesture, mxGraphView
 cascadeOpacity
 cell
 Cell alignment and orientation, mxGraph
 Cell cloning,insertion and removal, mxGraph
 Cell connecting and connection constraints, mxGraph
 Cell moving, mxGraph
 Cell retrieval, mxGraph
 Cell sizing, mxGraph
 Cell styles, mxGraph
 Cell visibility, mxGraph
 CELL_CONNECTED
 cellAdded
 cellCloned, mxGraphModel
 cellConnected, mxGraph
 cellEditor, mxGraph
 cellLabelChanged, mxGraph
 cellLocation, mxFastOrganicLayout
 cellRemoved
 cellRenderer, mxGraph
 cellResized, mxSpaceManager
 cells
 CELLS_ADDED
 CELLS_FOLDED
 CELLS_MOVED
 CELLS_ORDERED
 CELLS_REMOVED
 CELLS_RESIZED
 CELLS_TOGGLED, mxEvent
 cellsAdded
 cellsBendable, mxGraph
 cellsCloneable, mxGraph
 cellsDeletable, mxGraph
 cellsDisconnectable, mxGraph
 cellsEditable, mxGraph
 cellsFolded, mxGraph
 cellSizeUpdated, mxGraph
 cellsLocked, mxGraph
 cellsMovable, mxGraph
 cellsMoved
 cellsOrdered, mxGraph
 cellsRemoved, mxGraph
 cellsResizable, mxGraph
 cellsResized
 cellsSelectable, mxGraph
 cellsToggled, mxGraph
 centerZoom, mxGraph
 CHANGE
 changeHandler
 changePoints
 changes, mxUndoableEdit
 changeSelection, mxGraphSelectionModel
 changeTerminalPoint
 channelBuffer
 check, mxMultiplicity
 checkNeighbors, mxMultiplicity
 checkTerminal, mxMultiplicity
 checkType, mxMultiplicity
 childMoved, mxGraphView
 children, mxCell
 circle, mxCircleLayout
 clear
 CLEAR
 clearCellOverlays, mxGraph
 clearSelection
 clearSelectionOnBackground, mxPanningHandler
 click, mxGraph
 CLICK
 clip
 clone
 cloneCell, mxGraphModel
 cloneCellImpl, mxGraphModel
 cloneCells
 cloneEnabled
 cloneInvalidEdges, mxGraph
 clonePreviewState, mxEdgeHandler
 cloneTemplate, mxObjectCodec
 cloneValue, mxCell
 close
 CLOSE, mxEvent
 closeImage, mxWindow
 closeResource, mxUtils
 codec, mxSession
 codecs, mxCodecRegistry
 collapsed, mxCell
 collapsedImage, mxGraph
 collapsedStateForCellChanged, mxGraphModel
 collapseExpandResource, mxGraph
 collapseToPreferredSize, mxGraph
 compare
 compressed, mxXmlCanvas2D
 computeAspect, mxStencil
 config, mxDefaultPopupMenu
 configure, mxEditor
 configureHtmlShape
 configureShape, mxCellRenderer
 configureSvgShape
 configureTransparentBackground
 configureVmlShape
 confirm, mxUtils
 connect
 CONNECT
 CONNECT_CELL
 CONNECT_HANDLE_FILLCOLOR, mxConstants
 connectable, mxCell
 connectableEdges, mxGraph
 connectCell, mxGraph
 connected, mxSession
 connectIconOffset, mxConnectionHandler
 connectImage, mxConnectionHandler
 connectOnDrop
 connectsAsSource, mxGraphHierarchyNode
 connectsAsTarget, mxGraphHierarchyNode
 consoleName, mxLog
 constrainChild, mxGraph
 constrainChildren, mxGraph
 constraintHandler
 constraints, mxStencil
 consume
 consumeCycleAttribute, mxEditor
 consumed
 consumePanningTrigger, mxPanningHandler
 container, mxToolbar
 contains
 containsValidationErrorsResource, mxGraph
 content, mxWindow
 controlKeys, mxKeyHandler
 Controls and Handlers, mxEditor
 controlShiftKeys, mxKeyHandler
 convert, mxUrlConverter
 converter
 convertPoint
 convertValueFromXml, mxObjectCodec
 convertValueToString, mxGraph
 convertValueToXml, mxObjectCodec
 convertWaypoint, mxConnectionHandler
 copy
 count, mxCellStatePreview
 counter, mxObjectIdentity
 countError, mxMultiplicity
 create
 createBackgroundPageShape, mxGraphView
 createBends
 createBoundingBox, mxShape
 createBounds, mxVertexHandler
 createCellEditor, mxGraph
 createCellOverlays, mxCellRenderer
 createCellRenderer, mxGraph
 createConditions, mxDefaultPopupMenu
 createControl, mxCellRenderer
 createDashPattern, mxConnector
 createDefaultEdgeStyle, mxStylesheet
 createDefaultVertexStyle, mxStylesheet
 createDiagramLayout, mxEditor
 createDragElement, mxDragSource
 createEdge
 createEdgeState, mxConnectionHandler
 createForeignObject, mxText
 createGraph, mxEditor
 createGraphView, mxGraph
 createGroup, mxEditor
 createGroupCell, mxGraph
 createGuideShape, mxGuide
 createHandler, mxGraph
 createHandlers, mxGraph
 createHandleShape, mxEdgeHandler
 createHtml
 createHtmlPane, mxGraphView
 createHtmlTable, mxText
 createIcons, mxConnectionHandler
 createId, mxGraphModel
 createIds, mxGraphModel
 createImage, mxUtils
 createInternalCells, mxGraphHierarchyModel
 createLabel, mxCellRenderer
 createLayoutManager, mxEditor
 createLine, mxCompactTreeLayout
 createMarker
 createMenu, mxDefaultPopupMenu
 createNode, mxCompactTreeLayout
 createPageSelector, mxPrintPreview
 createPanningManager, mxGraph
 createPath, mxShape
 createPoints, mxShape
 createPopupMenu, mxEditor
 createPreviewElement, mxDragSource
 createPreviewShape, mxGraphHandler
 createProperties, mxEditor
 createRoot, mxGraphModel
 createSelectionModel, mxGraph
 createSelectionShape
 createSession, mxEditor
 createShape
 createSizer
 createSizerShape, mxVertexHandler
 createState, mxGraphView
 createStylesheet, mxGraph
 createSubmenu, mxPopupMenu
 createSvg
 createSvgGradient, mxShape
 createSvgGroup, mxShape
 createSvgPipe, mxShape
 createSvgShadow, mxShape
 createSvgSpan
 createSwimlaneLayout, mxEditor
 createSwimlaneManager, mxEditor
 createTarget, mxConnectionHandler
 createTargetVertex, mxConnectionHandler
 createTasks, mxEditor
 createToolbar, mxEditor
 createUndoableEdit
 createVertex, mxGraph
 createVirtualBend, mxElbowEdgeHandler
 createVml
 createVmlImage, mxLabel
 createVmlPane, mxGraphView
 createVmlShadow, mxShape
 createXmlDocument, mxUtils
 crisp
 crossingStage, mxHierarchicalLayout
 currentBestCrossings, mxMedianHybridCrossingReduction
 currentColor, mxCellMarker
 currentDropTarget, mxDragSource
 currentDx, mxGraphHandler
 currentDy, mxGraphHandler
 currentEdit, mxGraphModel
 currentFileResource, mxEditor
 currentGraph, mxDragSource
 currentGuide, mxDragSource
 currentPoint, mxDragSource
 currentRoot, mxGraphView
 currentX, mxRubberband
 currentXDelta, mxCoordinateAssignment
 currentY, mxRubberband
 cursor, mxCellOverlay
 CURSOR_BEND_HANDLE, mxConstants
 CURSOR_CONNECT, mxConstants
 CURSOR_LABEL_HANDLE, mxConstants
 CURSOR_MOVABLE_EDGE, mxConstants
 CURSOR_MOVABLE_VERTEX, mxConstants
 curveTo
 cut, mxClipboard
 cycleAttribute, mxEditor
 cycleAttributeIndex, mxEditor
 cycleAttributeName, mxEditor
 cycleAttributeValues, mxEditor
 cycleStage, mxHierarchicalLayout
-
mxFastOrganicLayout.prototype.calcAttraction = function()
Calculates the attractive forces between all laid out nodes linked by edges
mxFastOrganicLayout.prototype.calcPositions = function()
Takes the displacements calculated for each cell and applies them to the local cache of cell positions.
mxFastOrganicLayout.prototype.calcRepulsion = function()
Calculates the repulsive forces between all laid out nodes
mxMedianHybridCrossingReduction.prototype.calculateCrossings = function(model)
Calculates the total number of edge crossing in the current graph.
mxCoordinateAssignment.prototype.calculatedWeightedValue = function(
   currentCell,
   collection
)
Calculates the priority the specified cell has based on the type of its cell and the cells it is connected to on the next layer
mxMedianHybridCrossingReduction.prototype.calculateRankCrossing = function(
   i,
   model
)
Calculates the number of edges crossings between the specified rank and the rank below it.
mxCoordinateAssignment.prototype.calculateWidestRank = function(graph,
model)
Calculates the width rank in the hierarchy.
mxGraph.prototype.canExportCell = function(cell)
Returns true if the given cell may be exported to the clipboard.
mxGraph.prototype.canImportCell = function(cell)
Returns true if the given cell may be imported from the clipboard.
mxUndoManager.prototype.canRedo = function()
Returns true if a redo is possible.
mxUndoManager.prototype.canUndo = function()
Returns true if an undo is possible.
mxGraphView.prototype.captureDocumentGesture
Specifies if a gesture should be captured when it goes outside of the graph container.
cascadeOpacity: function(graph,
cell,
opacity)
Sets the opacity on the given cell and its descendants.
cascadeOpacity: function(graph,
cell,
opacity)
See mxEffects.cascadeOpacity.
MedianCellSorter.prototype.cell
The cell whose median value is being calculated
mxCellState.prototype.cell
Reference to the mxCell that is represented by this state.
mxGraphHierarchyNode.prototype.cell
The graph cell this object represents.
WeightedCellSorter.prototype.cell
The cell whose median value is being calculated.
Specifies the event name for cellConnected.
Fires between begin- and endUpdate in cellConnected.
mxGraphModel.prototype.cellAdded = function(cell)
Inner callback to update cells when a cell has been added.
mxGraphSelectionModel.prototype.cellAdded = function(cell)
Inner callback to add the specified mxCell to the selection.
mxGraphModel.prototype.cellCloned = function(cell)
Hook for cloning the cell.
mxGraph.prototype.cellConnected = function(edge,
terminal,
source,
constraint)
Sets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.
mxGraph.prototype.cellEditor
Holds the mxCellEditor that is used as the in-place editing.
mxGraph.prototype.cellLabelChanged = function(cell,
value,
autoSize)
Sets the new label for a cell.
mxFastOrganicLayout.prototype.cellLocation
An array of locally stored co-ordinate positions for the vertices.
mxGraphModel.prototype.cellRemoved = function(cell)
Inner callback to update cells when a cell has been removed.
mxGraphSelectionModel.prototype.cellRemoved = function(cell)
Inner callback to remove the specified mxCell from the selection.
mxSession.prototype.cellRemoved = function(cell,
codec)
Adds removed cells to the codec object lookup for references to the removed cells after this point in time.
mxGraph.prototype.cellRenderer
Holds the mxCellRenderer for rendering the cells in the graph.
mxSpaceManager.prototype.cellResized = function(cell)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
Holds the array of mxCells currently in the clipboard.
mxGraphModel.prototype.cells
Maps from Ids to cells.
mxMorphing.prototype.cells
Optional array of cells to be animated.
Specifies the event name for cellsAdded.
Fires between begin- and endUpdate in cellsAdded.
Specifies the event name for cellsFolded.
Fires between begin- and endUpdate in cellsFolded.
Specifies the event name for cellsMoved.
Fires between begin- and endUpdate in cellsMoved.
Specifies the event name for cellsOrdered.
Fires between begin- and endUpdate in cellsOrdered.
Specifies the event name for cellsRemoved.
Fires between begin- and endUpdate in cellsRemoved.
Specifies the event name for cellsResized.
Fires between begin- and endUpdate in cellsResized.
Specifies the event name for cellsToggled.
mxGraph.prototype.cellsAdded = function(cells,
parent,
index,
source,
target,
absolute,
constrain)
Adds the specified cells to the given parent.
mxSwimlaneManager.prototype.cellsAdded = function(cells)
Called if any cells have been added.
mxGraph.prototype.cellsBendable
Specifies the return value for isCellsBendable.
mxGraph.prototype.cellsCloneable
Specifies the return value for isCellCloneable.
mxGraph.prototype.cellsDeletable
Specifies the return value for isCellDeletable.
mxGraph.prototype.cellsDisconnectable
Specifies the return value for isCellDisconntable.
mxGraph.prototype.cellsEditable
Specifies the return value for isCellEditable.
mxGraph.prototype.cellsFolded = function(cells,
collapse,
recurse,
checkFoldable)
Sets the collapsed state of the specified cells.
mxGraph.prototype.cellSizeUpdated = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using getPreferredSizeForCell to get the new size.
mxGraph.prototype.cellsLocked
Specifies the return value for isCellLocked.
mxGraph.prototype.cellsMovable
Specifies the return value for isCellMovable.
mxGraph.prototype.cellsMoved = function(cells,
dx,
dy,
disconnect,
constrain)
Moves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.
mxLayoutManager.prototype.cellsMoved = function(cells,
evt)
Called from the moveHandler.
mxGraph.prototype.cellsOrdered = function(cells,
back)
Moves the given cells to the front or back.
mxGraph.prototype.cellsRemoved = function(cells)
Removes the given cells from the model.
mxGraph.prototype.cellsResizable
Specifies the return value for isCellResizable.
mxGraph.prototype.cellsResized = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.
mxSpaceManager.prototype.cellsResized = function(cells)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSwimlaneManager.prototype.cellsResized = function(cells)
Called if any cells have been resizes.
mxGraph.prototype.cellsSelectable
Specifies the return value for isCellSelectable.
mxGraph.prototype.cellsToggled = function(cells,
show)
Sets the visible state of the specified cells.
mxGraph.prototype.centerZoom
Specifies if the zoom operations should go into the center of the actual diagram rather than going from top, left.
Specifies the event name for change.
Fires when an undoable edit is dispatched.
Fires after the selection changes by executing an mxSelectionChange.
mxAutoSaveManager.prototype.changeHandler
Holds the function that handles graph model changes.
mxConnectionHandler.prototype.changeHandler
Holds the change event listener for later removal.
mxEdgeSegmentHandler.prototype.changePoints = function(edge,
points)
Changes the points of the given edge to reflect the current state of the handler.
mxEdgeHandler.prototype.changePoints = function(edge,
points)
Changes the control points of the given edge in the graph model.
mxUndoableEdit.prototype.changes
Array that contains the changes that make up this edit.
mxGraphSelectionModel.prototype.changeSelection = function(added,
removed)
Inner callback to add the specified mxCell to the selection.
mxEdgeSegmentHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Calls refresh after mxEdgeHandler.changeTerminalPoint.
mxEdgeHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Changes the terminal point of the given edge.
mxCompactTreeLayout.prototype.channelBuffer
The size of the vertical buffer in the center of inter-rank channels where edge control points should not be placed
mxCoordinateAssignment.prototype.channelBuffer
The size of the vertical buffer in the center of inter-rank channels where edge control points should not be placed
mxMultiplicity.prototype.check = function(graph,
edge,
source,
target,
sourceOut,
targetIn)
Checks the multiplicity for the given arguments and returns the error for the given connection or null if the multiplicity does not apply.
mxMultiplicity.prototype.checkNeighbors = function(graph,
edge,
source,
target)
Checks if there are any valid neighbours in validNeighbors.
mxMultiplicity.prototype.checkTerminal = function(graph,
terminal,
edge)
Checks the given terminal cell and returns true if this rule applies.
mxMultiplicity.prototype.checkType = function(graph,
value,
type,
attr,
attrValue)
Checks the type of the given value.
mxGraphView.prototype.childMoved = function(parent,
child)
Invoked when a child state was moved as a result of late evaluation of its position.
mxCell.prototype.children
Holds the child cells.
mxCircleLayout.prototype.circle = function(vertices,
r,
left,
top)
Executes the circular layout for the specified array of vertices and the given radius.
mxDictionary.prototype.clear = function()
Clears the dictionary.
mxGraphModel.prototype.clear = function()
Sets a new root using createRoot.
mxGraphSelectionModel.prototype.clear = function()
Clears the selection and fires a change event if the selection was not empty.
mxGraphView.prototype.clear = function(cell,
force,
recurse)
Removes the state of the given cell and all descendants if the given cell is not the current root.
clear: function(obj)
Removes the object id from the given object.
mxUndoManager.prototype.clear = function()
Clears the command history.
Specifies the event name for clear.
Fires after clear was invoked.
mxGraph.prototype.clearCellOverlays = function(cell)
Removes all mxCellOverlays in the graph for the given cell and all its descendants.
mxGraph.prototype.clearSelection = function()
Clears the selection using mxGraphSelectionModel.clear.
clearSelection: function()
Clears the current selection in the page.
mxPanningHandler.prototype.clearSelectionOnBackground
Specifies if cells should be deselected if a popupmenu is displayed for the diagram background.
mxGraph.prototype.click = function(me)
Processes a singleclick on an optional cell and fires a click event.
Fires when the user clicks on the overlay.
Specifies the event name for click.
Fires in click after a click event.
clip: function()
Uses the current path for clipping.
clip: function()
Uses the current path for clipping.
mxCell.prototype.clone = function()
Returns a clone of the cell.
mxCellState.prototype.clone = function()
Returns a clone of this mxPoint.
mxLine.prototype.clone = function()
Overrides the clone method to add special fields.
mxPoint.prototype.clone = function()
Returns a clone of this mxPoint.
clone: function(obj,
transients,
shallow)
Recursively clones the specified object ignoring all fieldnames in the given array of transient fields.
mxGraphModel.prototype.cloneCell = function(cell)
Returns a deep clone of the given mxCell (including the children) which is created using cloneCells.
mxGraphModel.prototype.cloneCellImpl = function(cell,
mapping,
includeChildren)
Inner helper method for cloning cells recursively.
mxGraph.prototype.cloneCells = function(cells,
allowInvalidEdges)
Returns the clones for the given cells.
mxGraphModel.prototype.cloneCells = function(cells,
includeChildren)
Returns an array of clones for the given array of mxCells.
mxEdgeHandler.prototype.cloneEnabled
Specifies if cloning by control-drag is enabled.
mxGraphHandler.prototype.cloneEnabled
Specifies if cloning by control-drag is enabled.
mxGraph.prototype.cloneInvalidEdges
Specifies if edges that are cloned should be validated and only inserted if they are valid.
mxEdgeHandler.prototype.clonePreviewState = function(point,
terminal)
Returns a clone of the current preview state for the given point and terminal.
mxObjectCodec.prototype.cloneTemplate = function()
Returns a new instance of the template for this codec.
mxCell.prototype.cloneValue = function()
Returns a clone of the cell’s user object.
mxPath.prototype.close = function()
Closes the path.
mxPrintPreview.prototype.close = function()
Closes the print preview window.
close: function()
Closes the current path.
close: function()
Closes the current path.
Specifies the event name for close.
mxWindow.prototype.closeImage
URL of the image to be used for the close icon in the titlebar.
Specifies the resource key for the label of the close button.
mxSession.prototype.codec
Reference to the mxCodec used to encoding and decoding changes.
Maps from constructor names to codecs.
mxCell.prototype.collapsed
Specifies whether the cell is collapsed.
mxGraph.prototype.collapsedImage
Specifies the mxImage to indicate a collapsed state.
mxGraphModel.prototype.collapsedStateForCellChanged = function(cell,
collapsed)
Inner callback to update the collapsed state of the given mxCell using mxCell.setCollapsed and return the previous collapsed state.
mxGraph.prototype.collapseExpandResource
Specifies the resource key for the tooltip on the collapse/expand icon.
mxGraph.prototype.collapseToPreferredSize
Specifies if the cell size should be changed to the preferred size when a cell is first collapsed.
MedianCellSorter.prototype.compare = function(a,
b)
Compares two MedianCellSorters.
compare: function(p1,
p2)
Compares the given cell paths and returns -1 if p1 is smaller, 0 if p1 is equal and 1 if p1 is greater than p2.
WeightedCellSorter.prototype.compare = function(a,
b)
Compares two WeightedCellSorters.
var compressed
Specifies if the output should be compressed by removing redundant calls.
mxStencil.prototype.computeAspect = function(state,
bounds,
direction)
Returns a rectangle that contains the offset in x and y and the horizontal and vertical scale in width and height used to draw this shape inside the given mxRectangle.
mxDefaultPopupMenu.prototype.config
XML node used as the description of new menu items.
mxEditor.prototype.configure = function (node)
Configures the editor using the specified node.
mxConnector.prototype.configureHtmlShape = function(node)
Overrides mxShape.configureHtmlShape to clear the border and background.
mxShape.prototype.configureHtmlShape = function(node)
Configures the specified HTML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureHtmlShape = function(node)
Overrides method to set the overflow style to visible.
mxCellRenderer.prototype.configureShape = function(state)
Configures the shape for the given cell state.
mxImageShape.prototype.configureSvgShape = function(node)
Extends method to set opacity on images.
mxShape.prototype.configureSvgShape = function(node)
Configures the specified SVG node by applying the current color, bounds, shadow, opacity etc.
mxArrow.prototype.configureTransparentBackground = function(node)
Overidden to remove transparent background.
mxImageShape.prototype.configureTransparentBackground = function(node)
Workaround for security warning in IE if this is used in the overlay pane of a diagram.
mxShape.prototype.configureTransparentBackground = function(node)
Hook to make the background of a shape transparent.
mxShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
confirm: function(message)
Displays the given message in a confirm dialog.
mxEdgeSegmentHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Calls refresh after mxEdgeHandler.connect.
mxConnectionHandler.prototype.connect = function(source,
target,
evt,
dropTarget)
Connects the given source and target using a new edge.
mxDefaultToolbar.prototype.connect = function(vertex,
evt,
source)
Handles a drop by connecting the given vertex to the given source cell.
mxEdgeHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Changes the terminal or terminal point of the given edge in the graph model.
mxEditor.prototype.connect = function (urlInit,
urlPoll,
urlNotify,
onChange)
Creates and returns a session for the specified parameters, installing the onChange function as a change listener for the session.
Fires between begin- and endUpdate in connect.
Specifies the event name for connect.
Fires after the session has been started, that is, after the response to the initial request was received and the session goes into polling mode.
Specifies the event name for connectCell.
Fires between begin- and endUpdate in connectCell.
Defines the color to be used for the connect handle fill color.
mxCell.prototype.connectable
Specifies whether the cell is connectable.
mxGraph.prototype.connectableEdges
Specifies if edges are connectable.
mxGraph.prototype.connectCell = function(edge,
terminal,
source,
constraint)
Connects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.
mxSession.prototype.connected
mxConnectionHandler.prototype.connectIconOffset
Holds the offset for connect icons during connection preview.
mxConnectionHandler.prototype.connectImage
mxImage that is used to trigger the creation of a new connection.
mxDefaultToolbar.prototype.connectOnDrop
Specifies if elements should be connected if new cells are dropped onto connectable elements.
mxGraphHandler.prototype.connectOnDrop
Specifies if drop events are interpreted as new connections if no other drop action is defined.
mxGraphHierarchyNode.prototype.connectsAsSource
Collection of hierarchy edges that have this node as a source
mxGraphHierarchyNode.prototype.connectsAsTarget
Collection of hierarchy edges that have this node as a target
Specifies the name of the console window.
mxGraph.prototype.constrainChild = function(cell)
Keeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.
mxGraph.prototype.constrainChildren
Specifies the return value for isConstrainChildren.
mxConnectionHandler.prototype.constraintHandler
Holds the mxConstraintHandler used for drawing and highlighting constraints.
mxEdgeHandler.prototype.constraintHandler
Holds the mxConstraintHandler used for drawing and highlighting constraints.
mxStencil.prototype.constraints
Holds an array of mxConnectionConstraints as defined in the shape.
consume: function(evt,
preventDefault,
stopPropagation)
Consumes the given event.
mxEventObject.prototype.consume = function()
Consumes the event.
mxMouseEvent.prototype.consume = function(preventDefault)
Sets consumed to true and invokes preventDefault on the native event if such a method is defined.
mxEditor.prototype.consumeCycleAttribute = function (cell)
Returns the next attribute in cycleAttributeValues or null, if not attribute should be used in the specified cell.
mxEventObject.prototype.consumed
Holds the consumed state.
mxMouseEvent.prototype.consumed
Holds the consumed state of this event.
mxPanningHandler.prototype.consumePanningTrigger = function(me)
Consumes the given mxMouseEvent if it was a panning trigger in mouseDown.
mxToolbar.prototype.container
Reference to the DOM nodes that contains the toolbar.
mxGraphModel.prototype.contains = function(cell)
Returns true if the model contains the given mxCell.
contains: function(bounds,
x,
y)
Returns true if the specified point (x, y) is contained in the given rectangle.
mxGraph.prototype.containsValidationErrorsResource
Specifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
mxWindow.prototype.content
Reference to the DOM node that represents the window content.
mxKeyHandler.prototype.controlKeys
Maps from keycodes to functions for pressed control keys.
mxKeyHandler.prototype.controlShiftKeys
Maps from keycodes to functions for pressed control and shift keys.
convert: function(url)
Converts the given URL to an absolute URL.
var converter
Holds the mxUrlConverter to convert image URLs.
var converter
Holds the mxUrlConverter to convert image URLs.
mxEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
mxElbowEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
convertPoint: function(container,
x,
y)
Converts the specified point (x, y) using the offset of the specified container and returns a new mxPoint with the result.
mxObjectCodec.prototype.convertValueFromXml = function(value)
Converts booleans and numeric values to the respective types.
mxGraph.prototype.convertValueToString = function(cell)
Returns the textual representation for the given cell.
mxObjectCodec.prototype.convertValueToXml = function(value)
Converts true to “1” and false to “0”.
mxConnectionHandler.prototype.convertWaypoint = function(point)
Converts the given point from screen coordinates to model coordinates.
copy: function(graph,
cells)
Copies the given array of mxCells from the specified graph to cells.Returns the original array of cells that has been cloned.
copy: function(content)
Copies the specified content to the local clipboard.
mxCellStatePreview.prototype.count
Contains the number of entries in the map.
Current counter for objects.
mxMultiplicity.prototype.countError
Holds the localized error message to be displayed if the number of connections for which the rule applies is smaller than min or greater than max.
create: function(cell)
Creates the cell path for the given cell.
mxCylinder.prototype.create = function(container)
Overrides the method to make sure the stroke is never null.
mxGraphView.prototype.createHtml = function()
Creates the DOM nodes for the HTML display.
mxImageShape.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxPolyline.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxShape.prototype.create = function(container)
Creates and returns the DOM node(s) for the shape in the given container.
mxText.prototype.create = function(container)
Override to create HTML regardless of gradient and rounded property.
mxXmlRequest.prototype.create = function()
Creates and returns the inner request object.
mxGraphView.prototype.createBackgroundPageShape = function(bounds)
Creates and returns the shape used as the background page.
mxEdgeSegmentHandler.prototype.createBends = function()
Adds custom bends for the center of each segment.
mxEdgeHandler.prototype.createBends = function()
Creates and returns the bends used for modifying the edge.
mxElbowEdgeHandler.prototype.createBends = function()
Overrides mxEdgeHandler.createBends to create custom bends.
mxShape.prototype.createBoundingBox = function()
Returns a new rectangle that represents the bounding box of the bare shape with no shadows or strokewidths.
Helper method to create an mxRectangle around the given centerpoint with a width and height of 2*s or 6, if no s is given.
mxGraph.prototype.createCellEditor = function()
Creates a new mxCellEditor to be used in this graph.
mxCellRenderer.prototype.createCellOverlays = function(state)
Creates the actual shape for showing the overlay for the given cell state.
mxGraph.prototype.createCellRenderer = function()
Creates a new mxCellRenderer to be used in this graph.
mxDefaultPopupMenu.prototype.createConditions = function(editor,
cell,
evt)
Evaluates the default conditions for the given context.
mxCellRenderer.prototype.createControl = function(state)
Creates the control for the given cell state.
mxConnector.prototype.createDashPattern = function(factor)
Creates a dash pattern for the given factor.
mxStylesheet.prototype.createDefaultEdgeStyle = function()
Creates and returns the default edge style.
mxStylesheet.prototype.createDefaultVertexStyle = function()
Creates and returns the default vertex style.
mxEditor.prototype.createDiagramLayout = function ()
Creates the layout instance used to layout the swimlanes in the diagram.
mxDragSource.prototype.createDragElement = function(evt)
Creates and returns a clone of the dragElementPrototype or the element if the former is not defined.
mxConnectionHandler.prototype.createEdge = function(value,
source,
target,
style)
Creates and returns a new edge using factoryMethod if one exists.
mxEditor.prototype.createEdge = function (source,
target)
Uses defaultEdge as the prototype for creating new edges in the connection handler of the graph.
mxGraph.prototype.createEdge = function(parent,
id,
value,
source,
target,
style)
Hook method that creates the new edge for insertEdge.
mxConnectionHandler.prototype.createEdgeState = function(me)
Hook to return an mxCellState which may be used during the preview.
mxText.prototype.createForeignObject = function()
Creates and returns the foreignObject node to represent this shape.
mxEditor.prototype.createGraph = function ()
Creates the graph for the editor.
mxGraph.prototype.createGraphView = function()
Creates a new mxGraphView to be used in this graph.
mxEditor.prototype.createGroup = function ()
Creates and returns a clone of defaultGroup to be used as a new group cell in group.
mxGraph.prototype.createGroupCell = function(cells)
Hook for creating the group cell to hold the given array of mxCells if no group cell was given to the group function.
mxGuide.prototype.createGuideShape = function(horizontal)
Returns the mxShape to be used for painting the respective guide.
mxGraph.prototype.createHandler = function(state)
Creates a new handler for the given cell state.
mxGraph.prototype.createHandlers = function(container)
Creates the tooltip-, panning-, connection- and graph-handler (in this order).
mxEdgeHandler.prototype.createHandleShape = function(index)
Creates the shape used to display the given bend.
mxLabel.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRectangleShape.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRhombus.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxShape.prototype.createHtml = function()
Creates and returns the HTML DOM node(s) to represent this shape.
mxSwimlane.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxText.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxGraphView.prototype.createHtmlPane = function(width,
height)
Creates and returns a drawing pane in HTML (DIV).
mxText.prototype.createHtmlTable = function()
Creates and returns a HTML table with a table body and a single row with a single cell.
mxConnectionHandler.prototype.createIcons = function(state)
Creates the array mxImageShapes that represent the connect icons for the given mxCellState.
mxGraphModel.prototype.createId = function(cell)
Hook method to create an Id for the specified cell.
mxGraphModel.prototype.createIds
Specifies if the model should automatically create Ids for new cells.
createImage: function(src)
Creates and returns an image (IMG node) or VML image (v:image) in IE6 in quirs mode.
mxGraphHierarchyModel.prototype.createInternalCells = function(layout,
vertices,
internalVertices)
Creates all edges in the internal model
mxCellRenderer.prototype.createLabel = function(state,
value)
Creates the label for the given cell state.
mxEditor.prototype.createLayoutManager = function (graph)
Creates a layout manager for the swimlane and diagram layouts, that is, the locally defined inter- and intraswimlane layouts.
mxCompactTreeLayout.prototype.createLine = function(dx,
dy,
next)
mxConnectionHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxEdgeHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxDefaultPopupMenu.prototype.createMenu = function(editor,
menu,
cell,
evt)
This function is called from mxEditor to add items to the given menu based on config.
mxCompactTreeLayout.prototype.createNode = function(cell)
mxPrintPreview.prototype.createPageSelector = function(vpages,
hpages)
Creates the page selector table.
mxGraph.prototype.createPanningManager = function()
Creates and returns an mxPanningManager.
mxShape.prototype.createPath = function(arg)
Creates an mxPath for the specified format and origin.
mxShape.prototype.createPoints = function(moveCmd,
lineCmd,
curveCmd,
isRelative)
Creates a path expression using the specified commands for this.points.
mxEditor.prototype.createPopupMenu = function (menu,
cell,
evt)
Uses popupHandler to create the menu in the graph’s panning handler.
mxDragSource.prototype.createPreviewElement = function(graph)
Creates and returns an element which can be used as a preview in the given graph.
mxGraphHandler.prototype.createPreviewShape = function(bounds)
Creates the shape used to draw the preview for the given bounds.
mxEditor.prototype.createProperties = function (cell)
Creates and returns the DOM node that represents the contents of the properties dialog for the given cell.
mxGraphModel.prototype.createRoot = function()
Creates a new root cell with a default layer (child 0).
mxGraph.prototype.createSelectionModel = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxEdgeHandler.prototype.createSelectionShape = function(points)
Creates the shape used to draw the selection border.
mxVertexHandler.prototype.createSelectionShape = function(bounds)
Creates the shape used to draw the selection border.
mxEditor.prototype.createSession = function ()
Creates the built-in session using urlInit, urlPoll and urlNotify.
mxCellHighlight.prototype.createShape = function(state)
Creates and returns the highlight shape for the given state.
mxCellRenderer.prototype.createShape = function(state)
Creates the shape for the given cell state.
mxConnectionHandler.prototype.createShape = function()
Creates the preview shape for new connections.
mxImageExport.prototype.createShape = function(state,
canvas)
Creates a shape wrapper for the custom shape in the given cell state and links its output to the given canvas.
mxRubberband.prototype.createShape = function()
Creates the rubberband selection shape.
mxOutline.prototype.createSizer = function()
Creates the shape used as the sizer.
mxVertexHandler.prototype.createSizer = function(cursor,
index,
size,
fillColor)
Creates a sizer handle for the specified cursor and index and returns the new mxRectangleShape that represents the handle.
mxVertexHandler.prototype.createSizerShape = function(bounds,
index,
fillColor)
Creates the shape used for the sizer handle for the specified bounds and index.
mxGraphView.prototype.createState = function(cell)
Creates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.
mxGraph.prototype.createStylesheet = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxPopupMenu.prototype.createSubmenu = function(parent)
Creates the nodes required to add submenu items inside the given parent item.
mxActor.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxArrow.prototype.createSvg = function()
Extends mxActor.createSvg to ignore fill if enableFill is false and create an event handling shape if this.addPipe is true.
mxConnector.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxCylinder.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxDoubleEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxLabel.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxLine.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxPolyline.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxRectangleShape.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxRhombus.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxStencilShape.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxSwimlane.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxText.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxShape.prototype.createSvgGradient = function(id,
start,
end,
node)
Creates a gradient object for SVG using the specified startcolor, endcolor and opacity.
mxShape.prototype.createSvgGroup = function(shape)
Creates a SVG group element and adds the given shape as a child of the element.
mxShape.prototype.createSvgPipe = function(id,
start,
end,
node)
Creates an invisible path which is used to increase the hit detection for edges in SVG.
mxShape.prototype.createSvgShadow = function(node)
Creates a clone of the given node and configures the node’s color to use mxConstants.SHADOWCOLOR.
Updates the path for the given SVG node.
mxText.prototype.createSvgSpan = function(text)
Creats an SVG tspan node for the given text.
mxEditor.prototype.createSwimlaneLayout = function ()
Creates the layout instance used to layout the children of each swimlane.
mxEditor.prototype.createSwimlaneManager = function (graph)
Sets the graph’s container using mxGraph.init.
mxConnectionHandler.prototype.createTarget
Specifies if createTargetVertex should be called if no target was under the mouse for the new connection.
mxConnectionHandler.prototype.createTargetVertex = function(evt,
source)
Hook method for creating new vertices on the fly if no target was under the mouse.
mxEditor.prototype.createTasks = function (div)
Updates the contents of the given DOM node to display the tasks associated with the current editor state.
mxEditor.prototype.createToolbar = function ()
Creates the toolbar with no container.
mxGraphModel.prototype.createUndoableEdit = function()
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event through the mxUndoableEdit’s source.
mxSession.prototype.createUndoableEdit = function(changes)
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event via the model.
mxGraph.prototype.createVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Hook method that creates the new vertex for insertVertex.
mxElbowEdgeHandler.prototype.createVirtualBend = function()
Creates a virtual bend that supports double clicking and calls mxGraph.flipEdge.
mxActor.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxArrow.prototype.createVml = function()
Extends mxShape.createVml to ignore fill if enableFill is false.
mxConnector.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxCylinder.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxDoubleEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLabel.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLine.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRectangleShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRhombus.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxStencilShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxSwimlane.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxText.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxLabel.prototype.createVmlImage = function(src,
opacity)
Creates an image node for the given image src and opacity to be used in VML.
mxGraphView.prototype.createVmlPane = function(width,
height)
Creates a drawing pane in VML (group).
mxShape.prototype.createVmlShadow = function(node)
Creates the VML shadow node.
createXmlDocument: function()
Returns a new, empty XML document.
mxEdgeHandler.prototype.crisp
Specifies if the edge handles should be rendered in crisp mode.
mxGraphHandler.prototype.crisp
Specifies if the move preview should be rendered in crisp mode if applicable.
mxGuide.prototype.crisp
Specifies if theguide should be rendered in crisp mode if applicable.
mxImageShape.prototype.crisp
Disables crisp rendering via attributes.
mxShape.prototype.crisp
Special attribute for SVG rendering to set the shape-rendering attribute to crispEdges in the output.
mxVertexHandler.prototype.crisp
Specifies if the selection bounds and handles should be rendered in crisp mode.
mxHierarchicalLayout.prototype.crossingStage = function(parent)
Executes the crossing stage using mxMedianHybridCrossingReduction.
mxMedianHybridCrossingReduction.prototype.currentBestCrossings
The total number of crossings found in the best configuration so far
mxCellMarker.prototype.currentColor
Holds the current marker color.
mxDragSource.prototype.currentDropTarget
Holds the current drop target under the mouse.
mxGraphHandler.prototype.currentDx
Stores the x-coordinate of the current mouse move.
mxGraphHandler.prototype.currentDy
Stores the y-coordinate of the current mouse move.
mxGraphModel.prototype.currentEdit
Holds the changes for the current transaction.
mxEditor.prototype.currentFileResource
Specifies the resource key for the current file info.
mxDragSource.prototype.currentGraph
Reference to the mxGraph that is the current drop target.
mxDragSource.prototype.currentGuide
Holds an mxGuide for the currentGraph if dragPreview is not null.
mxDragSource.prototype.currentPoint
Holds the current drop location.
mxGraphView.prototype.currentRoot
mxCell that acts as the root of the displayed cell hierarchy.
mxRubberband.prototype.currentX
Holds the value of the x argument in the last call to update.
mxCoordinateAssignment.prototype.currentXDelta
The sum of x-displacements for the current iteration
mxRubberband.prototype.currentY
Holds the value of the y argument in the last call to update.
mxCellOverlay.prototype.cursor
Holds the cursor for the overlay.
Defines the cursor for a movable bend.
Defines the cursor for a connectable state.
Defines the cursor for a movable label.
Defines the cursor for a movable edge.
Defines the cursor for a movable vertex.
mxPath.prototype.curveTo = function(x1,
y1,
x2,
y2,
x,
y)
Draws a cubic Bézier curve from the current point to (x, y) using (x1, y1) as the control point at the beginning of the curve and (x2, y2) as the control point at the end of the curve.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
cut: function(graph,
cells)
Cuts the given array of mxCells from the specified graph.
mxEditor.prototype.cycleAttribute = function (cell)
Uses the returned value from consumeCycleAttribute as the value for the cycleAttributeName key in the given cell’s style.
mxEditor.prototype.cycleAttributeIndex
Index of the last consumed attribute index.
mxEditor.prototype.cycleAttributeName
Name of the attribute to be assigned a cycleAttributeValues when inserting new swimlanes.
mxEditor.prototype.cycleAttributeValues
Specifies the attribute values to be cycled when inserting new swimlanes.
mxHierarchicalLayout.prototype.cycleStage = function(parent)
Executes the cycle stage using mxMinimumCycleRemover.
+
mxFastOrganicLayout.prototype.calcAttraction = function()
Calculates the attractive forces between all laid out nodes linked by edges
mxFastOrganicLayout.prototype.calcPositions = function()
Takes the displacements calculated for each cell and applies them to the local cache of cell positions.
mxFastOrganicLayout.prototype.calcRepulsion = function()
Calculates the repulsive forces between all laid out nodes
mxMedianHybridCrossingReduction.prototype.calculateCrossings = function(model)
Calculates the total number of edge crossing in the current graph.
mxCoordinateAssignment.prototype.calculatedWeightedValue = function(
   currentCell,
   collection
)
Calculates the priority the specified cell has based on the type of its cell and the cells it is connected to on the next layer
mxMedianHybridCrossingReduction.prototype.calculateRankCrossing = function(
   i,
   model
)
Calculates the number of edges crossings between the specified rank and the rank below it.
mxCoordinateAssignment.prototype.calculateWidestRank = function(graph,
model)
Calculates the width rank in the hierarchy.
mxGraph.prototype.canExportCell = function(cell)
Returns true if the given cell may be exported to the clipboard.
mxGraph.prototype.canImportCell = function(cell)
Returns true if the given cell may be imported from the clipboard.
mxUndoManager.prototype.canRedo = function()
Returns true if a redo is possible.
mxUndoManager.prototype.canUndo = function()
Returns true if an undo is possible.
mxGraphView.prototype.captureDocumentGesture
Specifies if a gesture should be captured when it goes outside of the graph container.
cascadeOpacity: function(graph,
cell,
opacity)
Sets the opacity on the given cell and its descendants.
cascadeOpacity: function(graph,
cell,
opacity)
See mxEffects.cascadeOpacity.
MedianCellSorter.prototype.cell
The cell whose median value is being calculated
mxCellState.prototype.cell
Reference to the mxCell that is represented by this state.
mxGraphHierarchyNode.prototype.cell
The graph cell this object represents.
WeightedCellSorter.prototype.cell
The cell whose median value is being calculated.
Specifies the event name for cellConnected.
Fires between begin- and endUpdate in cellConnected.
mxGraphModel.prototype.cellAdded = function(cell)
Inner callback to update cells when a cell has been added.
mxGraphSelectionModel.prototype.cellAdded = function(cell)
Inner callback to add the specified mxCell to the selection.
mxGraphModel.prototype.cellCloned = function(cell)
Hook for cloning the cell.
mxGraph.prototype.cellConnected = function(edge,
terminal,
source,
constraint)
Sets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.
mxGraph.prototype.cellEditor
Holds the mxCellEditor that is used as the in-place editing.
mxGraph.prototype.cellLabelChanged = function(cell,
value,
autoSize)
Sets the new label for a cell.
mxFastOrganicLayout.prototype.cellLocation
An array of locally stored co-ordinate positions for the vertices.
mxGraphModel.prototype.cellRemoved = function(cell)
Inner callback to update cells when a cell has been removed.
mxGraphSelectionModel.prototype.cellRemoved = function(cell)
Inner callback to remove the specified mxCell from the selection.
mxSession.prototype.cellRemoved = function(cell,
codec)
Adds removed cells to the codec object lookup for references to the removed cells after this point in time.
mxGraph.prototype.cellRenderer
Holds the mxCellRenderer for rendering the cells in the graph.
mxSpaceManager.prototype.cellResized = function(cell)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
Holds the array of mxCells currently in the clipboard.
mxGraphModel.prototype.cells
Maps from Ids to cells.
mxMorphing.prototype.cells
Optional array of cells to be animated.
Specifies the event name for cellsAdded.
Fires between begin- and endUpdate in cellsAdded.
Specifies the event name for cellsFolded.
Fires between begin- and endUpdate in cellsFolded.
Specifies the event name for cellsMoved.
Fires between begin- and endUpdate in cellsMoved.
Specifies the event name for cellsOrdered.
Fires between begin- and endUpdate in cellsOrdered.
Specifies the event name for cellsRemoved.
Fires between begin- and endUpdate in cellsRemoved.
Specifies the event name for cellsResized.
Fires between begin- and endUpdate in cellsResized.
Specifies the event name for cellsToggled.
mxGraph.prototype.cellsAdded = function(cells,
parent,
index,
source,
target,
absolute,
constrain)
Adds the specified cells to the given parent.
mxSwimlaneManager.prototype.cellsAdded = function(cells)
Called if any cells have been added.
mxGraph.prototype.cellsBendable
Specifies the return value for isCellsBendable.
mxGraph.prototype.cellsCloneable
Specifies the return value for isCellCloneable.
mxGraph.prototype.cellsDeletable
Specifies the return value for isCellDeletable.
mxGraph.prototype.cellsDisconnectable
Specifies the return value for isCellDisconntable.
mxGraph.prototype.cellsEditable
Specifies the return value for isCellEditable.
mxGraph.prototype.cellsFolded = function(cells,
collapse,
recurse,
checkFoldable)
Sets the collapsed state of the specified cells.
mxGraph.prototype.cellSizeUpdated = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using getPreferredSizeForCell to get the new size.
mxGraph.prototype.cellsLocked
Specifies the return value for isCellLocked.
mxGraph.prototype.cellsMovable
Specifies the return value for isCellMovable.
mxGraph.prototype.cellsMoved = function(cells,
dx,
dy,
disconnect,
constrain)
Moves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.
mxLayoutManager.prototype.cellsMoved = function(cells,
evt)
Called from the moveHandler.
mxGraph.prototype.cellsOrdered = function(cells,
back)
Moves the given cells to the front or back.
mxGraph.prototype.cellsRemoved = function(cells)
Removes the given cells from the model.
mxGraph.prototype.cellsResizable
Specifies the return value for isCellResizable.
mxGraph.prototype.cellsResized = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.
mxSpaceManager.prototype.cellsResized = function(cells)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSwimlaneManager.prototype.cellsResized = function(cells)
Called if any cells have been resizes.
mxGraph.prototype.cellsSelectable
Specifies the return value for isCellSelectable.
mxGraph.prototype.cellsToggled = function(cells,
show)
Sets the visible state of the specified cells.
mxGraph.prototype.centerZoom
Specifies if the zoom operations should go into the center of the actual diagram rather than going from top, left.
Specifies the event name for change.
Fires when an undoable edit is dispatched.
Fires after the selection changes by executing an mxSelectionChange.
mxAutoSaveManager.prototype.changeHandler
Holds the function that handles graph model changes.
mxConnectionHandler.prototype.changeHandler
Holds the change event listener for later removal.
mxEdgeSegmentHandler.prototype.changePoints = function(edge,
points)
Changes the points of the given edge to reflect the current state of the handler.
mxEdgeHandler.prototype.changePoints = function(edge,
points)
Changes the control points of the given edge in the graph model.
mxUndoableEdit.prototype.changes
Array that contains the changes that make up this edit.
mxGraphSelectionModel.prototype.changeSelection = function(added,
removed)
Inner callback to add the specified mxCell to the selection.
mxEdgeSegmentHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Calls refresh after mxEdgeHandler.changeTerminalPoint.
mxEdgeHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Changes the terminal point of the given edge.
mxCompactTreeLayout.prototype.channelBuffer
The size of the vertical buffer in the center of inter-rank channels where edge control points should not be placed
mxCoordinateAssignment.prototype.channelBuffer
The size of the vertical buffer in the center of inter-rank channels where edge control points should not be placed
mxMultiplicity.prototype.check = function(graph,
edge,
source,
target,
sourceOut,
targetIn)
Checks the multiplicity for the given arguments and returns the error for the given connection or null if the multiplicity does not apply.
mxMultiplicity.prototype.checkNeighbors = function(graph,
edge,
source,
target)
Checks if there are any valid neighbours in validNeighbors.
mxMultiplicity.prototype.checkTerminal = function(graph,
terminal,
edge)
Checks the given terminal cell and returns true if this rule applies.
mxMultiplicity.prototype.checkType = function(graph,
value,
type,
attr,
attrValue)
Checks the type of the given value.
mxGraphView.prototype.childMoved = function(parent,
child)
Invoked when a child state was moved as a result of late evaluation of its position.
mxCell.prototype.children
Holds the child cells.
mxCircleLayout.prototype.circle = function(vertices,
r,
left,
top)
Executes the circular layout for the specified array of vertices and the given radius.
mxDictionary.prototype.clear = function()
Clears the dictionary.
mxGraphModel.prototype.clear = function()
Sets a new root using createRoot.
mxGraphSelectionModel.prototype.clear = function()
Clears the selection and fires a change event if the selection was not empty.
mxGraphView.prototype.clear = function(cell,
force,
recurse)
Removes the state of the given cell and all descendants if the given cell is not the current root.
clear: function(obj)
Removes the object id from the given object.
mxUndoManager.prototype.clear = function()
Clears the command history.
Specifies the event name for clear.
Fires after clear was invoked.
mxGraph.prototype.clearCellOverlays = function(cell)
Removes all mxCellOverlays in the graph for the given cell and all its descendants.
mxGraph.prototype.clearSelection = function()
Clears the selection using mxGraphSelectionModel.clear.
clearSelection: function()
Clears the current selection in the page.
mxPanningHandler.prototype.clearSelectionOnBackground
Specifies if cells should be deselected if a popupmenu is displayed for the diagram background.
mxGraph.prototype.click = function(me)
Processes a singleclick on an optional cell and fires a click event.
Fires when the user clicks on the overlay.
Specifies the event name for click.
Fires in click after a click event.
clip: function()
Uses the current path for clipping.
clip: function()
Uses the current path for clipping.
mxCell.prototype.clone = function()
Returns a clone of the cell.
mxCellState.prototype.clone = function()
Returns a clone of this mxPoint.
mxLine.prototype.clone = function()
Overrides the clone method to add special fields.
mxPoint.prototype.clone = function()
Returns a clone of this mxPoint.
clone: function(obj,
transients,
shallow)
Recursively clones the specified object ignoring all fieldnames in the given array of transient fields.
mxGraphModel.prototype.cloneCell = function(cell)
Returns a deep clone of the given mxCell (including the children) which is created using cloneCells.
mxGraphModel.prototype.cloneCellImpl = function(cell,
mapping,
includeChildren)
Inner helper method for cloning cells recursively.
mxGraph.prototype.cloneCells = function(cells,
allowInvalidEdges)
Returns the clones for the given cells.
mxGraphModel.prototype.cloneCells = function(cells,
includeChildren)
Returns an array of clones for the given array of mxCells.
mxEdgeHandler.prototype.cloneEnabled
Specifies if cloning by control-drag is enabled.
mxGraphHandler.prototype.cloneEnabled
Specifies if cloning by control-drag is enabled.
mxGraph.prototype.cloneInvalidEdges
Specifies if edges that are cloned should be validated and only inserted if they are valid.
mxEdgeHandler.prototype.clonePreviewState = function(point,
terminal)
Returns a clone of the current preview state for the given point and terminal.
mxObjectCodec.prototype.cloneTemplate = function()
Returns a new instance of the template for this codec.
mxCell.prototype.cloneValue = function()
Returns a clone of the cell’s user object.
mxPath.prototype.close = function()
Closes the path.
mxPrintPreview.prototype.close = function()
Closes the print preview window.
close: function()
Closes the current path.
close: function()
Closes the current path.
Specifies the event name for close.
mxWindow.prototype.closeImage
URL of the image to be used for the close icon in the titlebar.
Specifies the resource key for the label of the close button.
mxSession.prototype.codec
Reference to the mxCodec used to encoding and decoding changes.
Maps from constructor names to codecs.
mxCell.prototype.collapsed
Specifies whether the cell is collapsed.
mxGraph.prototype.collapsedImage
Specifies the mxImage to indicate a collapsed state.
mxGraphModel.prototype.collapsedStateForCellChanged = function(cell,
collapsed)
Inner callback to update the collapsed state of the given mxCell using mxCell.setCollapsed and return the previous collapsed state.
mxGraph.prototype.collapseExpandResource
Specifies the resource key for the tooltip on the collapse/expand icon.
mxGraph.prototype.collapseToPreferredSize
Specifies if the cell size should be changed to the preferred size when a cell is first collapsed.
MedianCellSorter.prototype.compare = function(a,
b)
Compares two MedianCellSorters.
compare: function(p1,
p2)
Compares the given cell paths and returns -1 if p1 is smaller, 0 if p1 is equal and 1 if p1 is greater than p2.
WeightedCellSorter.prototype.compare = function(a,
b)
Compares two WeightedCellSorters.
var compressed
Specifies if the output should be compressed by removing redundant calls.
mxStencil.prototype.computeAspect = function(state,
bounds,
direction)
Returns a rectangle that contains the offset in x and y and the horizontal and vertical scale in width and height used to draw this shape inside the given mxRectangle.
mxDefaultPopupMenu.prototype.config
XML node used as the description of new menu items.
mxEditor.prototype.configure = function (node)
Configures the editor using the specified node.
mxConnector.prototype.configureHtmlShape = function(node)
Overrides mxShape.configureHtmlShape to clear the border and background.
mxShape.prototype.configureHtmlShape = function(node)
Configures the specified HTML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureHtmlShape = function(node)
Overrides method to set the overflow style to visible.
mxCellRenderer.prototype.configureShape = function(state)
Configures the shape for the given cell state.
mxImageShape.prototype.configureSvgShape = function(node)
Extends method to set opacity on images.
mxShape.prototype.configureSvgShape = function(node)
Configures the specified SVG node by applying the current color, bounds, shadow, opacity etc.
mxArrow.prototype.configureTransparentBackground = function(node)
Overidden to remove transparent background.
mxImageShape.prototype.configureTransparentBackground = function(node)
Workaround for security warning in IE if this is used in the overlay pane of a diagram.
mxShape.prototype.configureTransparentBackground = function(node)
Hook to make the background of a shape transparent.
mxShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
confirm: function(message)
Displays the given message in a confirm dialog.
mxEdgeSegmentHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Calls refresh after mxEdgeHandler.connect.
mxConnectionHandler.prototype.connect = function(source,
target,
evt,
dropTarget)
Connects the given source and target using a new edge.
mxDefaultToolbar.prototype.connect = function(vertex,
evt,
source)
Handles a drop by connecting the given vertex to the given source cell.
mxEdgeHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Changes the terminal or terminal point of the given edge in the graph model.
mxEditor.prototype.connect = function (urlInit,
urlPoll,
urlNotify,
onChange)
Creates and returns a session for the specified parameters, installing the onChange function as a change listener for the session.
Fires between begin- and endUpdate in connect.
Specifies the event name for connect.
Fires after the session has been started, that is, after the response to the initial request was received and the session goes into polling mode.
Specifies the event name for connectCell.
Fires between begin- and endUpdate in connectCell.
Defines the color to be used for the connect handle fill color.
mxCell.prototype.connectable
Specifies whether the cell is connectable.
mxGraph.prototype.connectableEdges
Specifies if edges are connectable.
mxGraph.prototype.connectCell = function(edge,
terminal,
source,
constraint)
Connects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.
mxSession.prototype.connected
mxConnectionHandler.prototype.connectIconOffset
Holds the offset for connect icons during connection preview.
mxConnectionHandler.prototype.connectImage
mxImage that is used to trigger the creation of a new connection.
mxDefaultToolbar.prototype.connectOnDrop
Specifies if elements should be connected if new cells are dropped onto connectable elements.
mxGraphHandler.prototype.connectOnDrop
Specifies if drop events are interpreted as new connections if no other drop action is defined.
mxGraphHierarchyNode.prototype.connectsAsSource
Collection of hierarchy edges that have this node as a source
mxGraphHierarchyNode.prototype.connectsAsTarget
Collection of hierarchy edges that have this node as a target
Specifies the name of the console window.
mxGraph.prototype.constrainChild = function(cell)
Keeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.
mxGraph.prototype.constrainChildren
Specifies the return value for isConstrainChildren.
mxConnectionHandler.prototype.constraintHandler
Holds the mxConstraintHandler used for drawing and highlighting constraints.
mxEdgeHandler.prototype.constraintHandler
Holds the mxConstraintHandler used for drawing and highlighting constraints.
mxStencil.prototype.constraints
Holds an array of mxConnectionConstraints as defined in the shape.
consume: function(evt,
preventDefault,
stopPropagation)
Consumes the given event.
mxEventObject.prototype.consume = function()
Consumes the event.
mxMouseEvent.prototype.consume = function(preventDefault)
Sets consumed to true and invokes preventDefault on the native event if such a method is defined.
mxEditor.prototype.consumeCycleAttribute = function (cell)
Returns the next attribute in cycleAttributeValues or null, if not attribute should be used in the specified cell.
mxEventObject.prototype.consumed
Holds the consumed state.
mxMouseEvent.prototype.consumed
Holds the consumed state of this event.
mxPanningHandler.prototype.consumePanningTrigger = function(me)
Consumes the given mxMouseEvent if it was a panning trigger in mouseDown.
mxToolbar.prototype.container
Reference to the DOM nodes that contains the toolbar.
mxGraphModel.prototype.contains = function(cell)
Returns true if the model contains the given mxCell.
contains: function(bounds,
x,
y)
Returns true if the specified point (x, y) is contained in the given rectangle.
mxGraph.prototype.containsValidationErrorsResource
Specifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
mxWindow.prototype.content
Reference to the DOM node that represents the window content.
mxKeyHandler.prototype.controlKeys
Maps from keycodes to functions for pressed control keys.
mxKeyHandler.prototype.controlShiftKeys
Maps from keycodes to functions for pressed control and shift keys.
convert: function(url)
Converts the given URL to an absolute URL.
var converter
Holds the mxUrlConverter to convert image URLs.
var converter
Holds the mxUrlConverter to convert image URLs.
mxEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
mxElbowEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
convertPoint: function(container,
x,
y)
Converts the specified point (x, y) using the offset of the specified container and returns a new mxPoint with the result.
mxObjectCodec.prototype.convertValueFromXml = function(value)
Converts booleans and numeric values to the respective types.
mxGraph.prototype.convertValueToString = function(cell)
Returns the textual representation for the given cell.
mxObjectCodec.prototype.convertValueToXml = function(value)
Converts true to “1” and false to “0”.
mxConnectionHandler.prototype.convertWaypoint = function(point)
Converts the given point from screen coordinates to model coordinates.
copy: function(graph,
cells)
Copies the given array of mxCells from the specified graph to cells.Returns the original array of cells that has been cloned.
copy: function(content)
Copies the specified content to the local clipboard.
mxCellStatePreview.prototype.count
Contains the number of entries in the map.
Current counter for objects.
mxMultiplicity.prototype.countError
Holds the localized error message to be displayed if the number of connections for which the rule applies is smaller than min or greater than max.
create: function(cell)
Creates the cell path for the given cell.
mxCylinder.prototype.create = function(container)
Overrides the method to make sure the stroke is never null.
mxGraphView.prototype.createHtml = function()
Creates the DOM nodes for the HTML display.
mxImageShape.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxPolyline.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxShape.prototype.create = function(container)
Creates and returns the DOM node(s) for the shape in the given container.
mxText.prototype.create = function(container)
Override to create HTML regardless of gradient and rounded property.
mxXmlRequest.prototype.create = function()
Creates and returns the inner request object.
mxGraphView.prototype.createBackgroundPageShape = function(bounds)
Creates and returns the shape used as the background page.
mxEdgeSegmentHandler.prototype.createBends = function()
Adds custom bends for the center of each segment.
mxEdgeHandler.prototype.createBends = function()
Creates and returns the bends used for modifying the edge.
mxElbowEdgeHandler.prototype.createBends = function()
Overrides mxEdgeHandler.createBends to create custom bends.
mxShape.prototype.createBoundingBox = function()
Returns a new rectangle that represents the bounding box of the bare shape with no shadows or strokewidths.
Helper method to create an mxRectangle around the given centerpoint with a width and height of 2*s or 6, if no s is given.
mxGraph.prototype.createCellEditor = function()
Creates a new mxCellEditor to be used in this graph.
mxCellRenderer.prototype.createCellOverlays = function(state)
Creates the actual shape for showing the overlay for the given cell state.
mxGraph.prototype.createCellRenderer = function()
Creates a new mxCellRenderer to be used in this graph.
mxDefaultPopupMenu.prototype.createConditions = function(editor,
cell,
evt)
Evaluates the default conditions for the given context.
mxCellRenderer.prototype.createControl = function(state)
Creates the control for the given cell state.
mxConnector.prototype.createDashPattern = function(factor)
Creates a dash pattern for the given factor.
mxStylesheet.prototype.createDefaultEdgeStyle = function()
Creates and returns the default edge style.
mxStylesheet.prototype.createDefaultVertexStyle = function()
Creates and returns the default vertex style.
mxEditor.prototype.createDiagramLayout = function ()
Creates the layout instance used to layout the swimlanes in the diagram.
mxDragSource.prototype.createDragElement = function(evt)
Creates and returns a clone of the dragElementPrototype or the element if the former is not defined.
mxConnectionHandler.prototype.createEdge = function(value,
source,
target,
style)
Creates and returns a new edge using factoryMethod if one exists.
mxEditor.prototype.createEdge = function (source,
target)
Uses defaultEdge as the prototype for creating new edges in the connection handler of the graph.
mxGraph.prototype.createEdge = function(parent,
id,
value,
source,
target,
style)
Hook method that creates the new edge for insertEdge.
mxConnectionHandler.prototype.createEdgeState = function(me)
Hook to return an mxCellState which may be used during the preview.
mxText.prototype.createForeignObject = function()
Creates and returns the foreignObject node to represent this shape.
mxEditor.prototype.createGraph = function ()
Creates the graph for the editor.
mxGraph.prototype.createGraphView = function()
Creates a new mxGraphView to be used in this graph.
mxEditor.prototype.createGroup = function ()
Creates and returns a clone of defaultGroup to be used as a new group cell in group.
mxGraph.prototype.createGroupCell = function(cells)
Hook for creating the group cell to hold the given array of mxCells if no group cell was given to the group function.
mxGuide.prototype.createGuideShape = function(horizontal)
Returns the mxShape to be used for painting the respective guide.
mxGraph.prototype.createHandler = function(state)
Creates a new handler for the given cell state.
mxGraph.prototype.createHandlers = function(container)
Creates the tooltip-, panning-, connection- and graph-handler (in this order).
mxEdgeHandler.prototype.createHandleShape = function(index)
Creates the shape used to display the given bend.
mxLabel.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRectangleShape.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRhombus.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxShape.prototype.createHtml = function()
Creates and returns the HTML DOM node(s) to represent this shape.
mxSwimlane.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxText.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxGraphView.prototype.createHtmlPane = function(width,
height)
Creates and returns a drawing pane in HTML (DIV).
mxText.prototype.createHtmlTable = function()
Creates and returns a HTML table with a table body and a single row with a single cell.
mxConnectionHandler.prototype.createIcons = function(state)
Creates the array mxImageShapes that represent the connect icons for the given mxCellState.
mxGraphModel.prototype.createId = function(cell)
Hook method to create an Id for the specified cell.
mxGraphModel.prototype.createIds
Specifies if the model should automatically create Ids for new cells.
createImage: function(src)
Creates and returns an image (IMG node) or VML image (v:image) in IE6 in quirs mode.
mxGraphHierarchyModel.prototype.createInternalCells = function(layout,
vertices,
internalVertices)
Creates all edges in the internal model
mxCellRenderer.prototype.createLabel = function(state,
value)
Creates the label for the given cell state.
mxEditor.prototype.createLayoutManager = function (graph)
Creates a layout manager for the swimlane and diagram layouts, that is, the locally defined inter- and intraswimlane layouts.
mxCompactTreeLayout.prototype.createLine = function(dx,
dy,
next)
mxConnectionHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxEdgeHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxDefaultPopupMenu.prototype.createMenu = function(editor,
menu,
cell,
evt)
This function is called from mxEditor to add items to the given menu based on config.
mxCompactTreeLayout.prototype.createNode = function(cell)
mxPrintPreview.prototype.createPageSelector = function(vpages,
hpages)
Creates the page selector table.
mxGraph.prototype.createPanningManager = function()
Creates and returns an mxPanningManager.
mxShape.prototype.createPath = function(arg)
Creates an mxPath for the specified format and origin.
mxShape.prototype.createPoints = function(moveCmd,
lineCmd,
curveCmd,
isRelative)
Creates a path expression using the specified commands for this.points.
mxEditor.prototype.createPopupMenu = function (menu,
cell,
evt)
Uses popupHandler to create the menu in the graph’s panning handler.
mxDragSource.prototype.createPreviewElement = function(graph)
Creates and returns an element which can be used as a preview in the given graph.
mxGraphHandler.prototype.createPreviewShape = function(bounds)
Creates the shape used to draw the preview for the given bounds.
mxEditor.prototype.createProperties = function (cell)
Creates and returns the DOM node that represents the contents of the properties dialog for the given cell.
mxGraphModel.prototype.createRoot = function()
Creates a new root cell with a default layer (child 0).
mxGraph.prototype.createSelectionModel = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxEdgeHandler.prototype.createSelectionShape = function(points)
Creates the shape used to draw the selection border.
mxVertexHandler.prototype.createSelectionShape = function(bounds)
Creates the shape used to draw the selection border.
mxEditor.prototype.createSession = function ()
Creates the built-in session using urlInit, urlPoll and urlNotify.
mxCellHighlight.prototype.createShape = function()
Creates and returns the highlight shape for the given state.
mxCellRenderer.prototype.createShape = function(state)
Creates the shape for the given cell state.
mxConnectionHandler.prototype.createShape = function()
Creates the preview shape for new connections.
mxImageExport.prototype.createShape = function(state,
canvas)
Creates a shape wrapper for the custom shape in the given cell state and links its output to the given canvas.
mxRubberband.prototype.createShape = function()
Creates the rubberband selection shape.
mxOutline.prototype.createSizer = function()
Creates the shape used as the sizer.
mxVertexHandler.prototype.createSizer = function(cursor,
index,
size,
fillColor)
Creates a sizer handle for the specified cursor and index and returns the new mxRectangleShape that represents the handle.
mxVertexHandler.prototype.createSizerShape = function(bounds,
index,
fillColor)
Creates the shape used for the sizer handle for the specified bounds and index.
mxGraphView.prototype.createState = function(cell)
Creates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.
mxGraph.prototype.createStylesheet = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxPopupMenu.prototype.createSubmenu = function(parent)
Creates the nodes required to add submenu items inside the given parent item.
mxActor.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxArrow.prototype.createSvg = function()
Extends mxActor.createSvg to ignore fill if enableFill is false and create an event handling shape if this.addPipe is true.
mxConnector.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxCylinder.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxDoubleEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxLabel.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxLine.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxPolyline.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxRectangleShape.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxRhombus.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxStencilShape.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxSwimlane.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxText.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxShape.prototype.createSvgGradient = function(id,
start,
end,
node)
Creates a gradient object for SVG using the specified startcolor, endcolor and opacity.
mxShape.prototype.createSvgGroup = function(shape)
Creates a SVG group element and adds the given shape as a child of the element.
mxShape.prototype.createSvgPipe = function(id,
start,
end,
node)
Creates an invisible path which is used to increase the hit detection for edges in SVG.
mxShape.prototype.createSvgShadow = function(node)
Creates a clone of the given node and configures the node’s color to use mxConstants.SHADOWCOLOR.
Updates the path for the given SVG node.
mxText.prototype.createSvgSpan = function(text)
Creats an SVG tspan node for the given text.
mxEditor.prototype.createSwimlaneLayout = function ()
Creates the layout instance used to layout the children of each swimlane.
mxEditor.prototype.createSwimlaneManager = function (graph)
Sets the graph’s container using mxGraph.init.
mxConnectionHandler.prototype.createTarget
Specifies if createTargetVertex should be called if no target was under the mouse for the new connection.
mxConnectionHandler.prototype.createTargetVertex = function(evt,
source)
Hook method for creating new vertices on the fly if no target was under the mouse.
mxEditor.prototype.createTasks = function (div)
Updates the contents of the given DOM node to display the tasks associated with the current editor state.
mxEditor.prototype.createToolbar = function ()
Creates the toolbar with no container.
mxGraphModel.prototype.createUndoableEdit = function()
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event through the mxUndoableEdit’s source.
mxSession.prototype.createUndoableEdit = function(changes)
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event via the model.
mxGraph.prototype.createVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Hook method that creates the new vertex for insertVertex.
mxElbowEdgeHandler.prototype.createVirtualBend = function()
Creates a virtual bend that supports double clicking and calls mxGraph.flipEdge.
mxActor.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxArrow.prototype.createVml = function()
Extends mxShape.createVml to ignore fill if enableFill is false.
mxConnector.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxCylinder.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxDoubleEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLabel.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLine.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRectangleShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRhombus.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxStencilShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxSwimlane.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxText.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxLabel.prototype.createVmlImage = function(src,
opacity)
Creates an image node for the given image src and opacity to be used in VML.
mxGraphView.prototype.createVmlPane = function(width,
height)
Creates a drawing pane in VML (group).
mxShape.prototype.createVmlShadow = function(node)
Creates the VML shadow node.
createXmlDocument: function()
Returns a new, empty XML document.
mxEdgeHandler.prototype.crisp
Specifies if the edge handles should be rendered in crisp mode.
mxGraphHandler.prototype.crisp
Specifies if the move preview should be rendered in crisp mode if applicable.
mxGuide.prototype.crisp
Specifies if theguide should be rendered in crisp mode if applicable.
mxImageShape.prototype.crisp
Disables crisp rendering via attributes.
mxShape.prototype.crisp
Special attribute for SVG rendering to set the shape-rendering attribute to crispEdges in the output.
mxVertexHandler.prototype.crisp
Specifies if the selection bounds and handles should be rendered in crisp mode.
mxHierarchicalLayout.prototype.crossingStage = function(parent)
Executes the crossing stage using mxMedianHybridCrossingReduction.
mxMedianHybridCrossingReduction.prototype.currentBestCrossings
The total number of crossings found in the best configuration so far
mxCellMarker.prototype.currentColor
Holds the current marker color.
mxDragSource.prototype.currentDropTarget
Holds the current drop target under the mouse.
mxGraphHandler.prototype.currentDx
Stores the x-coordinate of the current mouse move.
mxGraphHandler.prototype.currentDy
Stores the y-coordinate of the current mouse move.
mxGraphModel.prototype.currentEdit
Holds the changes for the current transaction.
mxEditor.prototype.currentFileResource
Specifies the resource key for the current file info.
mxDragSource.prototype.currentGraph
Reference to the mxGraph that is the current drop target.
mxDragSource.prototype.currentGuide
Holds an mxGuide for the currentGraph if dragPreview is not null.
mxDragSource.prototype.currentPoint
Holds the current drop location.
mxGraphView.prototype.currentRoot
mxCell that acts as the root of the displayed cell hierarchy.
mxRubberband.prototype.currentX
Holds the value of the x argument in the last call to update.
mxCoordinateAssignment.prototype.currentXDelta
The sum of x-displacements for the current iteration
mxRubberband.prototype.currentY
Holds the value of the y argument in the last call to update.
mxCellOverlay.prototype.cursor
Holds the cursor for the overlay.
Defines the cursor for a movable bend.
Defines the cursor for a connectable state.
Defines the cursor for a movable label.
Defines the cursor for a movable edge.
Defines the cursor for a movable vertex.
mxPath.prototype.curveTo = function(x1,
y1,
x2,
y2,
x,
y)
Draws a cubic Bézier curve from the current point to (x, y) using (x1, y1) as the control point at the beginning of the curve and (x2, y2) as the control point at the end of the curve.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
cut: function(graph,
cells)
Cuts the given array of mxCells from the specified graph.
mxEditor.prototype.cycleAttribute = function (cell)
Uses the returned value from consumeCycleAttribute as the value for the cycleAttributeName key in the given cell’s style.
mxEditor.prototype.cycleAttributeIndex
Index of the last consumed attribute index.
mxEditor.prototype.cycleAttributeName
Name of the attribute to be assigned a cycleAttributeValues when inserting new swimlanes.
mxEditor.prototype.cycleAttributeValues
Specifies the attribute values to be cycled when inserting new swimlanes.
mxHierarchicalLayout.prototype.cycleStage = function(parent)
Executes the cycle stage using mxMinimumCycleRemover.
diff --git a/docs/js-api/index/General4.html b/docs/js-api/index/General4.html index 9baf07fe5..7fafd7a3d 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
 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, mxEvent
 destroyIcons, mxConnectionHandler
 destroyOnClose, mxWindow
 destroyShapes, mxGraphHandler
 deterministic
 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
 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.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.
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.
mxGraphHierarchyModel.prototype.deterministic
Whether or not cells are ordered according to the order in the graph model.
mxHierarchicalLayout.prototype.deterministic
Whether or not cells are ordered according to the order in the graph model.
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.
DOUBLE_CLICK: 'doubleClick' }
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.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(state)
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.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.
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.
mxGraphHierarchyModel.prototype.deterministic
Whether or not cells are ordered according to the order in the graph model.
mxHierarchicalLayout.prototype.deterministic
Whether or not cells are ordered according to the order in the graph model.
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.
DOUBLE_CLICK: 'doubleClick' }
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.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/js-api/search/FunctionsR.html b/docs/js-api/search/FunctionsR.html index 35181cc76..240a9bc16 100644 --- a/docs/js-api/search/FunctionsR.html +++ b/docs/js-api/search/FunctionsR.html @@ -11,7 +11,7 @@ if (browserType) {document.write("
");if (browserV -
Loading...
rankCoordinates, mxCoordinateAssignment
rankMedianPosition, mxCoordinateAssignment
readGraphModel, mxEditor
receive, mxSession
RectanglePerimeter, mxPerimeter
redrawCellOverlays, mxCellRenderer
redrawControl, mxCellRenderer
redrawIcons, mxConnectionHandler
redrawLabel, mxCellRenderer
redrawMarker, mxConnector
redrawShape, mxStencilShape
reduceTemperature, mxFastOrganicLayout
reference, mxCodec
refreshTasks, mxEditor
register, mxCodecRegistry
registerShape, mxCellRenderer
relativeCcw, mxUtils
release, mxEvent
removeCell, mxGraphSelectionModel
removeCursors, mxUtils
removeEdge, mxCell
removePoint, mxEdgeHandler
removeState, mxGraphView
renderDom, mxStencil
renderPage, mxPrintPreview
repaint, mxRubberband
repaintGraph, mxUtils
reparseVml, mxShape
repositionValid, mxCoordinateAssignment
resetEdge, mxGraph
resetEdges, mxGraph
resetFirstTime, mxEditor
resetHistory, mxEditor
resetMode, mxToolbar
resetTimer, mxTooltipHandler
resize, mxDivResizer
resizeCells, mxGraph
resizeHeight, mxDivResizer
resizeSwimlane, mxSwimlaneManager
resizeWidth, mxDivResizer
resolve, mxCellPath
resolveColor, mxCellRenderer
restoreClone, mxGraphModel
resume, mxSession
revalidate, mxGraphView
revalidateState, mxCellStatePreview
RhombusPerimeter, mxPerimeter
rootChanged, mxGraphModel
route, mxParallelEdgeLayout
rtrim, mxUtils
run, mxHierarchicalLayout
Searching...
No Matches
@@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 581e783e6..224b53c23 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.2.0 API Specification) +Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html index d8e6deb28..9499fd67f 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.2.0 API Specification) +Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html index 672238886..a280c235e 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.2.0 API Specification) +Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html b/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html index b941c4267..da47204fb 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.2.0 API Specification) +Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 169ba1d86..9c518406a 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.2.0 API Specification) +Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html index 77eb4678d..7a61902a2 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.2.0 API Specification) +Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html b/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html index e35b7240a..92c93d2e1 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.2.0 API Specification) +mxConstantCostFunction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxConstantCostFunction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConstantCostFunction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxConstantCostFunction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html b/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html index 7187b807e..172c24113 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.2.0 API Specification) +mxDistanceCostFunction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxDistanceCostFunction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDistanceCostFunction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxDistanceCostFunction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/analysis/mxICostFunction.html b/java/docs/com/mxgraph/analysis/mxICostFunction.html index 29746ff27..882377ffa 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.2.0 API Specification) +mxICostFunction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxICostFunction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICostFunction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxICostFunction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/analysis/package-frame.html b/java/docs/com/mxgraph/analysis/package-frame.html index bf34218e2..4a6c8bdf4 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.2.0 API Specification) +com.mxgraph.analysis (mxGraph 1.10.2.1 API Specification) - + diff --git a/java/docs/com/mxgraph/analysis/package-summary.html b/java/docs/com/mxgraph/analysis/package-summary.html index 82ec162a1..11dbb045b 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.2.0 API Specification) +com.mxgraph.analysis (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.analysis (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.analysis (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.analysis (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -125,7 +125,7 @@ Interface Hierarchy -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html index c0c0d8feb..4091d0f7b 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.2.0 API Specification) +Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html index 2d23163b0..dbfcb4735 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.2.0 API Specification) +Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 199d2c919..be9031ad8 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.2.0 API Specification) +Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.2. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html index b3f858dae..1e048e45d 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.2.0 API Specification) +Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html index b884cab72..ec6869dbb 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.2.0 API Specification) +Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html index 626afa97a..fbaffa415 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.2.0 API Specification) +Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html b/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html index ec8d17b0d..8e8375ad8 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.2.0 API Specification) +Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html index 755c51a92..d725263c6 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.2.0 API Specification) +Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html index 0fbc435c5..5ab525871 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.2.0 API Specification) +Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html index 50a524f2d..1e7ad94e2 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.2.0 API Specification) +Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/mxBasicCanvas.html b/java/docs/com/mxgraph/canvas/mxBasicCanvas.html index 3f8ba45bd..50430ba89 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.2.0 API Specification) +mxBasicCanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxBasicCanvas (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxBasicCanvas (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxBasicCanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html b/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html index 390c6e542..0e13d1d10 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.2.0 API Specification) +mxGraphics2DCanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphics2DCanvas (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphics2DCanvas (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphics2DCanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html b/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html index 79e137830..017fc92c3 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.2.0 API Specification) +mxHtmlCanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxHtmlCanvas (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHtmlCanvas (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxHtmlCanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/mxICanvas.html b/java/docs/com/mxgraph/canvas/mxICanvas.html index e323c658f..73442ad2e 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.2.0 API Specification) +mxICanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxICanvas (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICanvas (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxICanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/mxICanvas2D.html b/java/docs/com/mxgraph/canvas/mxICanvas2D.html index 99eb75e1d..9273a56cf 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.2.0 API Specification) +mxICanvas2D (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxICanvas2D (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICanvas2D (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxICanvas2D (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/mxImageCanvas.html b/java/docs/com/mxgraph/canvas/mxImageCanvas.html index bcb41ed81..82f5d386d 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.2.0 API Specification) +mxImageCanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxImageCanvas (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImageCanvas (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxImageCanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/mxSvgCanvas.html b/java/docs/com/mxgraph/canvas/mxSvgCanvas.html index 53a423250..29d40d975 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.2.0 API Specification) +mxSvgCanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxSvgCanvas (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSvgCanvas (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxSvgCanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/canvas/package-frame.html b/java/docs/com/mxgraph/canvas/package-frame.html index 67a452f9b..d5999fd74 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.2.0 API Specification) +com.mxgraph.canvas (mxGraph 1.10.2.1 API Specification) - + diff --git a/java/docs/com/mxgraph/canvas/package-summary.html b/java/docs/com/mxgraph/canvas/package-summary.html index 6fe6b079c..e65b4f0a8 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.2.0 API Specification) +com.mxgraph.canvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.canvas (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.canvas (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.canvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/class-use/mxCellCodec.html b/java/docs/com/mxgraph/io/class-use/mxCellCodec.html index 749803d74..ddf186b4f 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.2.0 API Specification) +Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html index c8c39b557..3cc0b75b8 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.2.0 API Specification) +Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/class-use/mxCodec.html b/java/docs/com/mxgraph/io/class-use/mxCodec.html index 1e05d1976..b2235ddf4 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.2.0 API Specification) +Uses of Class com.mxgraph.io.mxCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxCodec (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html b/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html index b7956da4b..20fc2b428 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.2.0 API Specification) +Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/class-use/mxGdCodec.html b/java/docs/com/mxgraph/io/class-use/mxGdCodec.html index 642de3405..8d2b5719e 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.2.0 API Specification) +Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html index d77502a87..46baecaea 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.2.0 API Specification) +Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/class-use/mxGraphMlCodec.html b/java/docs/com/mxgraph/io/class-use/mxGraphMlCodec.html index 704643976..bfb770fe7 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.2.0 API Specification) +Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/class-use/mxModelCodec.html b/java/docs/com/mxgraph/io/class-use/mxModelCodec.html index 0aa593d0a..5895e182f 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.2.0 API Specification) +Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html b/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html index e9919e3b9..abee0c215 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.2.0 API Specification) +Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html index cd272f177..f0620515f 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.2.0 API Specification) +Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html b/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html index 998d6fc60..c4c9c4330 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.2.0 API Specification) +Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html index c614d2a4f..4dc639dbc 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.2.0 API Specification) +Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -335,7 +335,7 @@ public
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/gd/mxGdDocument.mxGDParseState.html b/java/docs/com/mxgraph/io/gd/mxGdDocument.mxGDParseState.html index 0ac9d6141..368dcc472 100644 --- a/java/docs/com/mxgraph/io/gd/mxGdDocument.mxGDParseState.html +++ b/java/docs/com/mxgraph/io/gd/mxGdDocument.mxGDParseState.html @@ -2,12 +2,12 @@ - + -mxGdDocument.mxGDParseState (mxGraph 1.10.2.0 API Specification) +mxGdDocument.mxGDParseState (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGdDocument.mxGDParseState (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGdDocument.mxGDParseState (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGdDocument.mxGDParseState (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/gd/mxGdEdge.html b/java/docs/com/mxgraph/io/gd/mxGdEdge.html index 55e944af1..8f5d04882 100644 --- a/java/docs/com/mxgraph/io/gd/mxGdEdge.html +++ b/java/docs/com/mxgraph/io/gd/mxGdEdge.html @@ -2,12 +2,12 @@ - + -mxGdEdge (mxGraph 1.10.2.0 API Specification) +mxGdEdge (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGdEdge (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGdEdge (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGdEdge (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -293,7 +293,7 @@ public
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/gd/mxGdNode.html b/java/docs/com/mxgraph/io/gd/mxGdNode.html index 446dfc6b3..fa578a582 100644 --- a/java/docs/com/mxgraph/io/gd/mxGdNode.html +++ b/java/docs/com/mxgraph/io/gd/mxGdNode.html @@ -2,12 +2,12 @@ - + -mxGdNode (mxGraph 1.10.2.0 API Specification) +mxGdNode (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGdNode (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGdNode (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGdNode (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -333,7 +333,7 @@ public
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/gd/package-frame.html b/java/docs/com/mxgraph/io/gd/package-frame.html index 9e66b0d03..9dbdce1d5 100644 --- a/java/docs/com/mxgraph/io/gd/package-frame.html +++ b/java/docs/com/mxgraph/io/gd/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io.gd (mxGraph 1.10.2.0 API Specification) +com.mxgraph.io.gd (mxGraph 1.10.2.1 API Specification) - + diff --git a/java/docs/com/mxgraph/io/gd/package-summary.html b/java/docs/com/mxgraph/io/gd/package-summary.html index b7c87eeae..c8e6c129a 100644 --- a/java/docs/com/mxgraph/io/gd/package-summary.html +++ b/java/docs/com/mxgraph/io/gd/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io.gd (mxGraph 1.10.2.0 API Specification) +com.mxgraph.io.gd (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io.gd (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io.gd (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.io.gd (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -145,7 +145,7 @@ Package com.mxgraph.io.gd -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 94b999ff5..106fabb0d 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.2.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 24e48cec2..2a47c38dd 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.2.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 6cf35aa2a..f266f4115 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.2.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 5cf0e02c3..0940145e9 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.2.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 ec9b78b9e..f59fcb5b9 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.2.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 a6135a534..3b112b78b 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.2.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 b6882f1c1..a79a1be5b 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.2.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 1.10.2. 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 beee02559..f5a04d10c 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.2.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 6c9420344..ecb495692 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.2.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 06c40ebe6..247e17c69 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.2.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 5bf8ce931..5e071035e 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.2.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 15bc98595..5a0b595c3 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.2.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 5bb2cd927..c1e95e101 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.2.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/graphml/package-frame.html b/java/docs/com/mxgraph/io/graphml/package-frame.html index 61514f3d7..abb2bed43 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.2.0 API Specification) +com.mxgraph.io.graphml (mxGraph 1.10.2.1 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 46c606556..41ef8cff6 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.2.0 API Specification) +com.mxgraph.io.graphml (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io.graphml (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io.graphml (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.io.graphml (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/graphml/package-use.html b/java/docs/com/mxgraph/io/graphml/package-use.html index a603ce9a5..6dee715b1 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.2.0 API Specification) +Uses of Package com.mxgraph.io.graphml (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.io.graphml (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.io.graphml (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/mxCellCodec.html b/java/docs/com/mxgraph/io/mxCellCodec.html index 157e8332e..3a7e979cd 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.2.0 API Specification) +mxCellCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCellCodec (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellCodec (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCellCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/mxChildChangeCodec.html b/java/docs/com/mxgraph/io/mxChildChangeCodec.html index 5ff98fcf2..0aa36b67a 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.2.0 API Specification) +mxChildChangeCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxChildChangeCodec (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxChildChangeCodec (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxChildChangeCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/mxCodec.html b/java/docs/com/mxgraph/io/mxCodec.html index dd80b7997..2a9745721 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.2.0 API Specification) +mxCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCodec (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCodec (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/mxCodecRegistry.html b/java/docs/com/mxgraph/io/mxCodecRegistry.html index d28315065..36a0f4738 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.2.0 API Specification) +mxCodecRegistry (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCodecRegistry (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCodecRegistry (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCodecRegistry (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/mxGdCodec.html b/java/docs/com/mxgraph/io/mxGdCodec.html index 6762ae4ec..6717c320f 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.2.0 API Specification) +mxGdCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGdCodec (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGdCodec (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGdCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -244,7 +244,7 @@ public static
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/mxGraphMlCodec.html b/java/docs/com/mxgraph/io/mxGraphMlCodec.html index 64bf6874d..113487e35 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.2.0 API Specification) +mxGraphMlCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlCodec (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlCodec (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphMlCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/mxModelCodec.html b/java/docs/com/mxgraph/io/mxModelCodec.html index 0a0c21519..37725c0ac 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.2.0 API Specification) +mxModelCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxModelCodec (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxModelCodec (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxModelCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/mxObjectCodec.html b/java/docs/com/mxgraph/io/mxObjectCodec.html index 21e97463b..bd1d1eb11 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.2.0 API Specification) +mxObjectCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxObjectCodec (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxObjectCodec (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxObjectCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/mxRootChangeCodec.html b/java/docs/com/mxgraph/io/mxRootChangeCodec.html index 5ac457c0a..7e61709a8 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.2.0 API Specification) +mxRootChangeCodec (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxRootChangeCodec (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRootChangeCodec (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxRootChangeCodec (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/io/package-frame.html b/java/docs/com/mxgraph/io/package-frame.html index 49fd4b010..c95859a9d 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.2.0 API Specification) +com.mxgraph.io (mxGraph 1.10.2.1 API Specification) - + diff --git a/java/docs/com/mxgraph/io/package-summary.html b/java/docs/com/mxgraph/io/package-summary.html index 515028517..9445e07c0 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.2.0 API Specification) +com.mxgraph.io (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.io (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -120,7 +120,7 @@ Class Hierarchy -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html b/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html index b94aa8c66..584ee3ab3 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 e9b3a31de..02721be44 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 10995ac7b..6aeaf3334 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 1.10.2.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 3e0a6887c..71524d094 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 1.10.2.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 8a32f2237..f182789b1 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html index 55ba9abf6..4731b4e4f 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html b/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html index a544eeb69..bb322bbc6 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html b/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html index 5baa802af..0ff7b2af4 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html b/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html index 6fdf60d30..fba157720 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html b/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html index face1c1a6..d3a418088 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.2.0 API Specification) +Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 5564c88d3..677c65ca3 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html index 4772f6db1..9c9f205e4 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html b/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html index dc035c9f4..5033b7b8e 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html b/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html index e67a4143a..68d3fc746 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html b/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html index f4b1113ce..76abf18c5 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 4112f9079..6ae91d911 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 13d91ab59..bcb58548e 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 ebc8f652a..8b6e147d6 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 99032e56a..568d2841d 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.2.0 API Specification) +Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 12f798bbb..1e65b0946 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 fa62156ac..7ae355067 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 855a6839e..13277d158 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 7be779fe4..510101f4d 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.2.0 API Specification) +com.mxgraph.layout.hierarchical.model (mxGraph 1.10.2.1 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 a8718c258..31ad1352e 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.2.0 API Specification) +com.mxgraph.layout.hierarchical.model (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.model (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.model (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.model (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 23a5c8d90..acee25c13 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.2.0 API Specification) +com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 e99b37478..42c74d8e9 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.2.0 API Specification) +Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -1289,7 +1289,7 @@ public
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-frame.html b/java/docs/com/mxgraph/layout/hierarchical/package-frame.html index 72f034250..af05ca51c 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.2.0 API Specification) +com.mxgraph.layout.hierarchical (mxGraph 1.10.2.1 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 ac26ea03b..711b3e453 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.2.0 API Specification) +com.mxgraph.layout.hierarchical (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-use.html b/java/docs/com/mxgraph/layout/hierarchical/package-use.html index ce03a6bb9..6699d2c18 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.2.0 API Specification) +Uses of Package com.mxgraph.layout.hierarchical (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 6ac5bcccb..206dd846d 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 031be2c06..aa9e70cba 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 5294ffeb1..abdc154d0 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.2.0 API Specification) +Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 745a4fada..b3cf67b54 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 ea4c09761..b4a74b7dd 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 a067b1e79..1c7fabdc2 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 5938112f3..d2edaf12c 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.2.0 API Specification) +mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 0228b05cf..0831fbb2a 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.2.0 API Specification) +mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.2.0 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 3399656ac..6dc8333bc 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.2.0 API Specification) +com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.2.1 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 55c2b8661..101150615 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.2.0 API Specification) +com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 9e7f70b71..2fc2ba4eb 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.2.0 API Specification) +com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 7e5fdf89f..83258a189 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.2.0 API Specification) +Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html b/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html index bd60d694a..8f8a2945c 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.2.0 API Specification) +mxEdgeLabelLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeLabelLayout (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeLabelLayout (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxEdgeLabelLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html b/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html index c15e8f891..6256155be 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.2.0 API Specification) +mxFastOrganicLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxFastOrganicLayout (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxFastOrganicLayout (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxFastOrganicLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/mxGraphLayout.html b/java/docs/com/mxgraph/layout/mxGraphLayout.html index bf1c93917..7474f9e54 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.2.0 API Specification) +mxGraphLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphLayout (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphLayout (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/mxIGraphLayout.html b/java/docs/com/mxgraph/layout/mxIGraphLayout.html index 28011816f..9e8b408d0 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.2.0 API Specification) +mxIGraphLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxIGraphLayout (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxIGraphLayout (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxIGraphLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html b/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html index 1d1b2e9aa..80306b787 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.2.0 API Specification) +mxParallelEdgeLayout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxParallelEdgeLayout (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxParallelEdgeLayout (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxParallelEdgeLayout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 dd7643828..0ac45891b 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 0351292f3..7c756eb9e 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 afe1370a2..e3501e1de 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 436e6ef34..bfe065a2d 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.2.0 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 b9daaa4b9..d03d7f868 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.2.0 API Specification) +com.mxgraph.layout.orthogonal.model (mxGraph 1.10.2.1 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 30b44849d..100b4346e 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.2.0 API Specification) +com.mxgraph.layout.orthogonal.model (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal.model (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal.model (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal.model (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 cfc4e0226..68eff1809 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.2.0 API Specification) +com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 a4be8936a..0346c70c2 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.2.0 API Specification) +Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-frame.html b/java/docs/com/mxgraph/layout/orthogonal/package-frame.html index b1ccd692b..9ba1c4971 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.2.0 API Specification) +com.mxgraph.layout.orthogonal (mxGraph 1.10.2.1 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 6b73b7923..fa8e6b281 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.2.0 API Specification) +com.mxgraph.layout.orthogonal (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-use.html b/java/docs/com/mxgraph/layout/orthogonal/package-use.html index 35abf6df1..ed5fa4c7f 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.2.0 API Specification) +Uses of Package com.mxgraph.layout.orthogonal (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.orthogonal (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.orthogonal (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/layout/package-frame.html b/java/docs/com/mxgraph/layout/package-frame.html index 91f12c0cc..5a751cf80 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.2.0 API Specification) +com.mxgraph.layout (mxGraph 1.10.2.1 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/package-summary.html b/java/docs/com/mxgraph/layout/package-summary.html index 502cb17eb..faa796081 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.2.0 API Specification) +com.mxgraph.layout (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.layout (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/model/class-use/mxCell.html b/java/docs/com/mxgraph/model/class-use/mxCell.html index e6d63f327..688bb6f7a 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.2.0 API Specification) +Uses of Class com.mxgraph.model.mxCell (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxCell (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxCell (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/model/class-use/mxCellPath.html b/java/docs/com/mxgraph/model/class-use/mxCellPath.html index 93ea1f0e3..0b0a994d2 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.2.0 API Specification) +Uses of Class com.mxgraph.model.mxCellPath (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxCellPath (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxCellPath (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/model/class-use/mxGeometry.html b/java/docs/com/mxgraph/model/class-use/mxGeometry.html index d8befd9ec..8fbfe7054 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.2.0 API Specification) +Uses of Class com.mxgraph.model.mxGeometry (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGeometry (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGeometry (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 0edf4e208..e8ebb6a94 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.2.0 API Specification) +Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.html index ff00c12d4..617518ab7 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.2.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 686462fc1..00911cf9f 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.2.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 4d887e80b..739e542e8 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.2.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 1.10.2.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 4b6935f4d..9f40ef3fd 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.2.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 25943da52..5544d3f18 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.2.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 e48d79028..a9f578545 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.2.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 de16d17fb..9cc2df031 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.2.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/model/class-use/mxICell.html b/java/docs/com/mxgraph/model/class-use/mxICell.html index bf6df0992..e1cdc21ac 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.2.0 API Specification) +Uses of Interface com.mxgraph.model.mxICell (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.model.mxICell (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.model.mxICell (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html index ac8a6adad..5e149c7bd 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.2.0 API Specification) +Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 de6a88889..ab1cfe8fa 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.2.0 API Specification) +Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/model/mxCell.html b/java/docs/com/mxgraph/model/mxCell.html index 44f95450c..176d0fbb0 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.2.0 API Specification) +mxCell (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCell (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCell (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCell (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/model/mxCellPath.html b/java/docs/com/mxgraph/model/mxCellPath.html index 0193dfa88..5703bec66 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.2.0 API Specification) +mxCellPath (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCellPath (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellPath (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCellPath (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/model/mxGeometry.html b/java/docs/com/mxgraph/model/mxGeometry.html index 6ef594fc1..f022e9ef9 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.2.0 API Specification) +mxGeometry (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGeometry (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGeometry (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGeometry (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/model/mxICell.html b/java/docs/com/mxgraph/model/mxICell.html index 28d0a2dcf..a35200091 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.2.0 API Specification) +mxICell (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxICell (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICell (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxICell (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/model/package-frame.html b/java/docs/com/mxgraph/model/package-frame.html index 591e43e4c..cd779436d 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.2.0 API Specification) +com.mxgraph.model (mxGraph 1.10.2.1 API Specification) - + diff --git a/java/docs/com/mxgraph/model/package-summary.html b/java/docs/com/mxgraph/model/package-summary.html index c675bdfe3..0f317fefd 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.2.0 API Specification) +com.mxgraph.model (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.model (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.model (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.model (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 fa6f1c5d2..634388f40 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.2.0 API Specification) +Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html index 6bddfdbed..69fda9bba 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.2.0 API Specification) +Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html b/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html index 376341e9d..23f54bd97 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.2.0 API Specification) +Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html b/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html index 66a9f21c8..d698749b1 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.2.0 API Specification) +Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 a937582d2..e9b274eea 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.2.0 API Specification) +Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html index a0acbd98c..2c9d1ee84 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.2.0 API Specification) +Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/reader/mxDomOutputParser.html b/java/docs/com/mxgraph/reader/mxDomOutputParser.html index d3fbaf616..5c51dde29 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.2.0 API Specification) +mxDomOutputParser (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxDomOutputParser (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDomOutputParser (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxDomOutputParser (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html b/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html index bf518f8a3..1b44bf4c0 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.2.0 API Specification) +mxGraphViewImageReader (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphViewImageReader (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphViewImageReader (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphViewImageReader (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/reader/mxGraphViewReader.html b/java/docs/com/mxgraph/reader/mxGraphViewReader.html index c82a6bf27..504e340fa 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.2.0 API Specification) +mxGraphViewReader (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphViewReader (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphViewReader (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphViewReader (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html index 0195c7dc3..dbcc2faa4 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.2.0 API Specification) +mxSaxOutputHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxSaxOutputHandler (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSaxOutputHandler (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxSaxOutputHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/reader/package-frame.html b/java/docs/com/mxgraph/reader/package-frame.html index a092c8b22..6b4251f95 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.2.0 API Specification) +com.mxgraph.reader (mxGraph 1.10.2.1 API Specification) - + diff --git a/java/docs/com/mxgraph/reader/package-summary.html b/java/docs/com/mxgraph/reader/package-summary.html index f62e822e3..85e68aafa 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.2.0 API Specification) +com.mxgraph.reader (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.reader (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.reader (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.reader (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxActorShape.html b/java/docs/com/mxgraph/shape/class-use/mxActorShape.html index e2e28c68f..954837bd3 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html b/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html index 0faf3d962..8dcf9b3c0 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html b/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html index a954edaff..1f3d59891 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html b/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html index 1baa301a2..28674a4c2 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html b/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html index 1b7cce46a..eddca39b7 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 6c643dc14..6b9a5b897 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 e74578b53..f29f8d8e6 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 1.10.2. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html index 9f255bcb2..a2859b2e2 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html b/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html index 573f79caa..6543320b4 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html b/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html index 0c3a12cab..4a001fbdf 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html b/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html index 675ba406c..5e158636a 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html b/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html index 4a2c59eda..235d1697c 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html b/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html index 43085592e..807b0ef88 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html b/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html index 300211d28..574a88bec 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html b/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html index fbc22af07..a9146aa3d 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxIMarker.html b/java/docs/com/mxgraph/shape/class-use/mxIMarker.html index bbdc5678b..5c71b9547 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.2.0 API Specification) +Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxIShape.html b/java/docs/com/mxgraph/shape/class-use/mxIShape.html index a16ed6f05..3fe907b61 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.2.0 API Specification) +Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxITextShape.html b/java/docs/com/mxgraph/shape/class-use/mxITextShape.html index d295b5bee..82d7148f8 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.2.0 API Specification) +Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxImageShape.html b/java/docs/com/mxgraph/shape/class-use/mxImageShape.html index d1b571690..b06759d7b 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html b/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html index c7d764c3d..e5afce165 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxLineShape.html b/java/docs/com/mxgraph/shape/class-use/mxLineShape.html index e95133fb7..8945e4436 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html b/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html index a8e30e9b2..ac7c1931b 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html b/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html index 16102d6b0..67421e5d5 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html b/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html index c873960a6..3dff9f1a5 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencil.html b/java/docs/com/mxgraph/shape/class-use/mxStencil.html index fce2a27e1..f54f32fb9 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxStencil (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencil (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencil (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html b/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html index c43d9dc18..2cee38fa0 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html index 5d06d75eb..f50846e1f 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 3a18fc461..3c2316420 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html b/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html index bee878900..5256a6e6a 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html b/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html index fca5e2157..52cd406e4 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.2.0 API Specification) +Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxActorShape.html b/java/docs/com/mxgraph/shape/mxActorShape.html index 1277608dd..daed5c7db 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.2.0 API Specification) +mxActorShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxActorShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxActorShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxActorShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxArrowShape.html b/java/docs/com/mxgraph/shape/mxArrowShape.html index 5fa8a3547..c013e19db 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.2.0 API Specification) +mxArrowShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxArrowShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxArrowShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxArrowShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxBasicShape.html b/java/docs/com/mxgraph/shape/mxBasicShape.html index 552b40b2e..b703a559b 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.2.0 API Specification) +mxBasicShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxBasicShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxBasicShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxBasicShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxCloudShape.html b/java/docs/com/mxgraph/shape/mxCloudShape.html index 379d0065b..49935fe3d 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.2.0 API Specification) +mxCloudShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCloudShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCloudShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCloudShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxConnectorShape.html b/java/docs/com/mxgraph/shape/mxConnectorShape.html index 1c4c357fa..1155f7ed4 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.2.0 API Specification) +mxConnectorShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxConnectorShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectorShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxConnectorShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxCurveShape.html b/java/docs/com/mxgraph/shape/mxCurveShape.html index 4bad7e39b..68af0891c 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.2.0 API Specification) +mxCurveShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCurveShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurveShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCurveShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxDefaultTextShape.html b/java/docs/com/mxgraph/shape/mxDefaultTextShape.html index 7a02ec42a..4e5c5bf3e 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.2.0 API Specification) +mxDefaultTextShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxDefaultTextShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDefaultTextShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxDefaultTextShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html b/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html index 5617c8a8b..5bb8b1c6c 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.2.0 API Specification) +mxDoubleEllipseShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxDoubleEllipseShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDoubleEllipseShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxDoubleEllipseShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxEllipseShape.html b/java/docs/com/mxgraph/shape/mxEllipseShape.html index 3806bb46e..5f2c87150 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.2.0 API Specification) +mxEllipseShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxEllipseShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEllipseShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxEllipseShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxHexagonShape.html b/java/docs/com/mxgraph/shape/mxHexagonShape.html index 5dfff7c01..b6868bc8a 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.2.0 API Specification) +mxHexagonShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxHexagonShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHexagonShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxHexagonShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxHtmlTextShape.html b/java/docs/com/mxgraph/shape/mxHtmlTextShape.html index 9b5aa3287..0867c625c 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.2.0 API Specification) +mxHtmlTextShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxHtmlTextShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHtmlTextShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxHtmlTextShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxIShape.html b/java/docs/com/mxgraph/shape/mxIShape.html index 74f7622b8..00a2d2e85 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.2.0 API Specification) +mxIShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxIShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxIShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxIShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxITextShape.html b/java/docs/com/mxgraph/shape/mxITextShape.html index b621c67b9..52099f779 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.2.0 API Specification) +mxITextShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxITextShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxITextShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxITextShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxImageShape.html b/java/docs/com/mxgraph/shape/mxImageShape.html index 92815e659..3b5c1b2e0 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.2.0 API Specification) +mxImageShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxImageShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImageShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxImageShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxLabelShape.html b/java/docs/com/mxgraph/shape/mxLabelShape.html index ee5643251..638c7e67c 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.2.0 API Specification) +mxLabelShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxLabelShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLabelShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxLabelShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxLineShape.html b/java/docs/com/mxgraph/shape/mxLineShape.html index d471a5a9e..34ef82b74 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.2.0 API Specification) +mxLineShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxLineShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLineShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxLineShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxMarkerRegistry.html b/java/docs/com/mxgraph/shape/mxMarkerRegistry.html index 4b435cc92..f4de9e9ff 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.2.0 API Specification) +mxMarkerRegistry (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxMarkerRegistry (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMarkerRegistry (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxMarkerRegistry (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxRectangleShape.html b/java/docs/com/mxgraph/shape/mxRectangleShape.html index 0c13de781..77a1f1921 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.2.0 API Specification) +mxRectangleShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxRectangleShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRectangleShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxRectangleShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxRhombusShape.html b/java/docs/com/mxgraph/shape/mxRhombusShape.html index 3bafd12fa..75dd3e30b 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.2.0 API Specification) +mxRhombusShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxRhombusShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRhombusShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxRhombusShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxStencil.html b/java/docs/com/mxgraph/shape/mxStencil.html index cf20d3349..476f23c35 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.2.0 API Specification) +mxStencil (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxStencil (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStencil (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxStencil (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxStencilRegistry.html b/java/docs/com/mxgraph/shape/mxStencilRegistry.html index 6fbddbdc1..5651b553d 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.2.0 API Specification) +mxStencilRegistry (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxStencilRegistry (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStencilRegistry (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxStencilRegistry (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/mxTriangleShape.html b/java/docs/com/mxgraph/shape/mxTriangleShape.html index 6727e524d..96949a71b 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.2.0 API Specification) +mxTriangleShape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxTriangleShape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxTriangleShape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxTriangleShape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/shape/package-frame.html b/java/docs/com/mxgraph/shape/package-frame.html index ad470c1ac..4f3f1a193 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.2.0 API Specification) +com.mxgraph.shape (mxGraph 1.10.2.1 API Specification) - + diff --git a/java/docs/com/mxgraph/shape/package-summary.html b/java/docs/com/mxgraph/shape/package-summary.html index 6116aba7b..efbb94672 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.2.0 API Specification) +com.mxgraph.shape (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.shape (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.shape (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.shape (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSession.html b/java/docs/com/mxgraph/sharing/class-use/mxSession.html index 53cd0e618..4dc6517c6 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.2.0 API Specification) +Uses of Class com.mxgraph.sharing.mxSession (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.sharing.mxSession (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.sharing.mxSession (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSharedGraphModel.html b/java/docs/com/mxgraph/sharing/class-use/mxSharedGraphModel.html index fe6e2ad77..f270ef18e 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.2.0 API Specification) +Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSharedState.html b/java/docs/com/mxgraph/sharing/class-use/mxSharedState.html index a8481c585..c488bfacc 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.2.0 API Specification) +Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 cc130dd22..bc73836ef 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.2.0 API Specification) +Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/sharing/mxSession.html b/java/docs/com/mxgraph/sharing/mxSession.html index 2d04c6ed4..424d4c4d7 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.2.0 API Specification) +mxSession (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxSession (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSession (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxSession (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/sharing/mxSharedGraphModel.html b/java/docs/com/mxgraph/sharing/mxSharedGraphModel.html index 723182957..9d85b108a 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.2.0 API Specification) +mxSharedGraphModel (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxSharedGraphModel (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSharedGraphModel (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxSharedGraphModel (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/sharing/package-frame.html b/java/docs/com/mxgraph/sharing/package-frame.html index 8b445bebb..e850719de 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.2.0 API Specification) +com.mxgraph.sharing (mxGraph 1.10.2.1 API Specification) - + diff --git a/java/docs/com/mxgraph/sharing/package-summary.html b/java/docs/com/mxgraph/sharing/package-summary.html index a04e0671e..759d7c1ab 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.2.0 API Specification) +com.mxgraph.sharing (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.sharing (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.sharing (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.sharing (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html index d7fa821cd..b25e37427 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 00d8709b2..d38c694af 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 1.10.2. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 8b87d1080..fb5399547 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 d0e6d823c..162caf389 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html index 8506248f4..64910bfcb 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 27f103c88..9e1b4e790 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 81e7d0d10..60a5be693 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 7eaf69e2f..dedcd2bd2 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 52912d3e8..7ff598c6c 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 d7b67bcd9..31fea7064 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 c36740bae..d953c14d2 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 842888303..c91e1548e 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 029f22937..69cdd4782 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 8b7324215..82bc985ce 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 1.10.2.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 86e8036d8..539888c05 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 4386b8311..ac63c6835 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 24040bb4d..98f9038eb 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 2271d43cd..6a6bd133c 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 ada1eba67..5ffe2b00c 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 f7a7cfd31..46e7616b1 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 fb413d30a..e7e97778b 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 1.10.2. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 872cb5cd3..412a14b30 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -248,6 +248,14 @@ Class mxGraphHandler protected  boolean +
gridEnabledEvent + +
+          Workaround for alt-key-state not correct in mouseReleased. + + + +protected  boolean imagePreview
@@ -1164,6 +1172,19 @@ protected transient

+gridEnabledEvent

+
+protected transient boolean gridEnabledEvent
+
+
Workaround for alt-key-state not correct in mouseReleased. Note: State + of the alt-key is not available during drag-and-drop. +

+

+
+
+
+

constrainedEvent

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/handler/package-frame.html b/java/docs/com/mxgraph/swing/handler/package-frame.html index 97208e618..e74db1e59 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.2.0 API Specification) +com.mxgraph.swing.handler (mxGraph 1.10.2.1 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 10faefee2..37fc919e9 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.2.0 API Specification) +com.mxgraph.swing.handler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.handler (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.handler (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.swing.handler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/handler/package-use.html b/java/docs/com/mxgraph/swing/handler/package-use.html index fa2e62da0..fcea448fd 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.2.0 API Specification) +Uses of Package com.mxgraph.swing.handler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing.handler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing.handler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html b/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html index a8d99b339..b36bfccbe 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.2.0 API Specification) +mxGraphComponent.mxGraphControl (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphComponent.mxGraphControl (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphComponent.mxGraphControl (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphComponent.mxGraphControl (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html b/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html index cfaef0ebd..4d60e8de6 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.2.0 API Specification) +mxGraphComponent.mxMouseRedirector (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphComponent.mxMouseRedirector (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphComponent.mxMouseRedirector (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphComponent.mxMouseRedirector (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html b/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html index f1cea4348..9dddc4e8f 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.2.0 API Specification) +mxGraphOutline.MouseTracker (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphOutline.MouseTracker (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphOutline.MouseTracker (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphOutline.MouseTracker (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/mxGraphOutline.html b/java/docs/com/mxgraph/swing/mxGraphOutline.html index 69489afd6..51ac3fdaf 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.2.0 API Specification) +mxGraphOutline (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphOutline (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphOutline (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphOutline (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -1256,7 +1256,7 @@ public boolean updateScaleAndTranslate() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/package-frame.html b/java/docs/com/mxgraph/swing/package-frame.html index b6a953307..16b3957ae 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.2.0 API Specification) +com.mxgraph.swing (mxGraph 1.10.2.1 API Specification) - + diff --git a/java/docs/com/mxgraph/swing/package-summary.html b/java/docs/com/mxgraph/swing/package-summary.html index cad2a9ee7..67b0d9b67 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.2.0 API Specification) +com.mxgraph.swing (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.swing (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -148,7 +148,7 @@ This package contains the main component for JFC/Swing, namely the graph -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -132,7 +132,7 @@ Class Hierarchy -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 16d13acfe..f0adf548b 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 7582632b5..4cf1c3781 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 3d69b8fc7..2eec15c86 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 1.10.2 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.DeleteAction -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 04f903fb7..a940f6fd5 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 1.10.2. 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.DrillAction -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 aecf0cb8f..8843b1b18 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.EditAction -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 505f0db96..31dcde75d 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.FoldAction -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 720e33c25..c84f5bbd7 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 1.10.2. 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.GroupAction -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 a791ad732..c8f29d2e0 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 1.10.2. 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.LayerAction -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 ddbe78c3b..6a17ace79 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 293594099..4b0e869af 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 1.10.2 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.SelectAction -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 1906e5a76..cf5b1b818 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.UngroupAction -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 cd7353f77..6acd8dccd 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 0ff4a4952..b5cd895a3 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.ZoomAction -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 2d6cfd873..48ff806dd 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 56dd721a5..743ffef51 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -199,7 +199,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 61bdde59e..ec02ea5b6 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.2.0 API Specification) +Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -280,7 +280,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 d567cbc2d..d29192bc1 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 16560b802..3a0317dbd 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 34cc79ee6..82b214017 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxAnimation.html b/java/docs/com/mxgraph/swing/util/mxAnimation.html index 7ec71231d..d35587cd8 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.2.0 API Specification) +mxAnimation (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxAnimation (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxAnimation (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxAnimation (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -442,7 +442,7 @@ public void stopAnimation() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxCellOverlay.html b/java/docs/com/mxgraph/swing/util/mxCellOverlay.html index 1c1510401..8bc5149ee 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.2.0 API Specification) +mxCellOverlay (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCellOverlay (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellOverlay (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCellOverlay (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -533,7 +533,7 @@ public
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html index dc0c07e60..15b24b052 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.2.0 API Specification) +mxGraphActions.DeleteAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.DeleteAction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.DeleteAction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphActions.DeleteAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html index 72c981023..f5bce9787 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.2.0 API Specification) +mxGraphActions.DrillAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.DrillAction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.DrillAction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphActions.DrillAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html index c140d04e2..94a9f6aec 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.2.0 API Specification) +mxGraphActions.EditAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.EditAction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.EditAction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphActions.EditAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html index a8f50061e..626952469 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.2.0 API Specification) +mxGraphActions.FoldAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.FoldAction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.FoldAction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphActions.FoldAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html index 0c54a7276..097113524 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.2.0 API Specification) +mxGraphActions.GroupAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.GroupAction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.GroupAction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphActions.GroupAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -277,7 +277,7 @@ public void actionPerformed(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html index b923606a4..655c941ed 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.2.0 API Specification) +mxGraphActions.LayerAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.LayerAction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.LayerAction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphActions.LayerAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html index 4609a6c0c..1c5fd59e2 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.2.0 API Specification) +mxGraphActions.RemoveFromParentAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.RemoveFromParentAction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.RemoveFromParentAction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphActions.RemoveFromParentAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html index 373508594..e1b980033 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.2.0 API Specification) +mxGraphActions.SelectAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.SelectAction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.SelectAction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphActions.SelectAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html index c08dd92a3..4cf327b53 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.2.0 API Specification) +mxGraphActions.UngroupAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.UngroupAction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.UngroupAction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphActions.UngroupAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html index 1c22c2619..9b8439bc1 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.2.0 API Specification) +mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -277,7 +277,7 @@ public void actionPerformed(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html index da7357902..2a3409761 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.2.0 API Specification) +mxGraphActions.ZoomAction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.ZoomAction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.ZoomAction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphActions.ZoomAction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.html index c5e6b3b6a..d0928e24a 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.2.0 API Specification) +mxGraphActions (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphActions (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -789,7 +789,7 @@ public static final
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html b/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html index 5d2b3991b..7dcffcc0e 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.2.0 API Specification) +mxGraphTransferable (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphTransferable (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphTransferable (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphTransferable (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -780,7 +780,7 @@ protected boolean isStringFlavor(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxICellOverlay.html b/java/docs/com/mxgraph/swing/util/mxICellOverlay.html index 19167e677..efaa23f0e 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.2.0 API Specification) +mxICellOverlay (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxICellOverlay (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICellOverlay (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxICellOverlay (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -168,7 +168,7 @@ getBounds -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxMorphing.html b/java/docs/com/mxgraph/swing/util/mxMorphing.html index 60ad86727..5319b4185 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.2.0 API Specification) +mxMorphing (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxMorphing (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMorphing (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxMorphing (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html b/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html index 2e8ed6873..8206fb6b6 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.2.0 API Specification) +mxMouseAdapter (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxMouseAdapter (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMouseAdapter (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxMouseAdapter (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/mxSwingConstants.html b/java/docs/com/mxgraph/swing/util/mxSwingConstants.html index be6f99e07..c59fb37a5 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.2.0 API Specification) +mxSwingConstants (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxSwingConstants (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSwingConstants (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxSwingConstants (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -547,7 +547,7 @@ public mxSwingConstants() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/package-frame.html b/java/docs/com/mxgraph/swing/util/package-frame.html index 0018c0614..9f1839f13 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.2.0 API Specification) +com.mxgraph.swing.util (mxGraph 1.10.2.1 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 978d51600..c4b7150f4 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.2.0 API Specification) +com.mxgraph.swing.util (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.util (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.util (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.swing.util (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -221,7 +221,7 @@ This package contains all utility classes that require JFC/Swing, namely for -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -141,7 +141,7 @@ Interface Hierarchy -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/util/package-use.html b/java/docs/com/mxgraph/swing/util/package-use.html index 0effacf73..566fd8e61 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.2.0 API Specification) +Uses of Package com.mxgraph.swing.util (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing.util (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing.util (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 e7b63603c..437c4bd0f 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 9fd56d17a..9931bfbff 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 b3b38e393..2eaebf9a8 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.2.0 API Specification) +Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 16c2aee9e..63ed26b25 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.2.0 API Specification) +Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/view/mxCellEditor.html b/java/docs/com/mxgraph/swing/view/mxCellEditor.html index a820fcf1f..e2f0fd1f5 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.2.0 API Specification) +mxCellEditor (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCellEditor (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellEditor (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCellEditor (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -1074,7 +1074,7 @@ public void setMinimumHeight(int minimumHeight) -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html b/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html index 4654182a8..578fb23ea 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.2.0 API Specification) +mxCellStatePreview (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCellStatePreview (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellStatePreview (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCellStatePreview (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -743,7 +743,7 @@ protected void paintPreviewState(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/view/mxICellEditor.html b/java/docs/com/mxgraph/swing/view/mxICellEditor.html index dbf5829a5..ef43672f2 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.2.0 API Specification) +mxICellEditor (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxICellEditor (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICellEditor (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxICellEditor (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -214,7 +214,7 @@ void stopEditing(boolean cancel) -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html b/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html index df6a96cc2..13f81d5b8 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.2.0 API Specification) +mxInteractiveCanvas (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxInteractiveCanvas (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxInteractiveCanvas (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxInteractiveCanvas (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -450,7 +450,7 @@ public boolean hitSwimlaneContent(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/view/package-frame.html b/java/docs/com/mxgraph/swing/view/package-frame.html index c72ea9bc7..12d61e415 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.2.0 API Specification) +com.mxgraph.swing.view (mxGraph 1.10.2.1 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 3c0358cc3..d1864239f 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.2.0 API Specification) +com.mxgraph.swing.view (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.view (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.view (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.swing.view (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -163,7 +163,7 @@ This package contains all classes required for interaction, namely the -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/swing/view/package-use.html b/java/docs/com/mxgraph/swing/view/package-use.html index 2428ac561..54a821e1c 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.2.0 API Specification) +Uses of Package com.mxgraph.swing.view (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing.view (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing.view (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxBase64.html b/java/docs/com/mxgraph/util/class-use/mxBase64.html index b6da6dc9a..387d97940 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxBase64 (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxBase64 (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxBase64 (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxBase64 -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 833ff8ff2..af9421d73 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -152,7 +152,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html index e9df335cf..abdea9fe8 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxCellRenderer -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxConstants.html b/java/docs/com/mxgraph/util/class-use/mxConstants.html index f1caf5a81..54bfffed9 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxConstants (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxConstants (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxConstants (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxConstants -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxCurve.html b/java/docs/com/mxgraph/util/class-use/mxCurve.html index b38b21799..17d029969 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxCurve (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCurve (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCurve (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxDomUtils.html b/java/docs/com/mxgraph/util/class-use/mxDomUtils.html index f5e2ba27d..8aad1d385 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxDomUtils -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxEvent.html b/java/docs/com/mxgraph/util/class-use/mxEvent.html index b3922b320..c54e239c3 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxEvent (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEvent (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEvent (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxEvent -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxEventObject.html b/java/docs/com/mxgraph/util/class-use/mxEventObject.html index 3fb30d7f5..28ba2f570 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxEventObject (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEventObject (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEventObject (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -166,7 +166,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxEventSource.html b/java/docs/com/mxgraph/util/class-use/mxEventSource.html index 84321dd72..f1b965510 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxEventSource (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEventSource (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEventSource (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 3529db1d5..f4201f8c8 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.2.0 API Specification) +Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -518,7 +518,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxImage.html b/java/docs/com/mxgraph/util/class-use/mxImage.html index fb3bd6ad4..13736af75 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxImage (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxImage (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxImage (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxImage -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxImageBundle.html b/java/docs/com/mxgraph/util/class-use/mxImageBundle.html index 0d2367157..fd0ad58a6 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -202,7 +202,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html b/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html index b9368a34d..8f0560852 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -163,7 +163,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxLine.html b/java/docs/com/mxgraph/util/class-use/mxLine.html index f11561fdd..491d4de54 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxLine (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxLine (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxLine (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -227,7 +227,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxPoint.html b/java/docs/com/mxgraph/util/class-use/mxPoint.html index 99f332a9b..26b66c434 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxPoint (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxPoint (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxPoint (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -1945,7 +1945,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxRectangle.html b/java/docs/com/mxgraph/util/class-use/mxRectangle.html index 3caa86a20..dd4dde072 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxRectangle (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxRectangle (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxRectangle (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -1735,7 +1735,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxResources.html b/java/docs/com/mxgraph/util/class-use/mxResources.html index e3e169fc1..fe00d5e85 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxResources (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxResources (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxResources (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxResources -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxSpline.html b/java/docs/com/mxgraph/util/class-use/mxSpline.html index fd3f1be5b..68b2bc83f 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxSpline (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxSpline (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxSpline (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxSpline -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxSpline1D.html b/java/docs/com/mxgraph/util/class-use/mxSpline1D.html index c46ce929a..7c77c9a10 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html b/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html index f2977e05e..0c83f89d4 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxStyleUtils -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoManager.html b/java/docs/com/mxgraph/util/class-use/mxUndoManager.html index 64a894ffd..02345c7e3 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxUndoManager -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html index a5cec8397..ff25ab37a 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -269,7 +269,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 bd89e7dc8..a03623e52 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.2.0 API Specification) +Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -389,7 +389,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxUtils.html b/java/docs/com/mxgraph/util/class-use/mxUtils.html index 2220efb61..357bc53e3 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxUtils (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxUtils (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxUtils (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxUtils -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html b/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html index bcf3e9df0..9329c6f12 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.2.0 API Specification) +Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxXmlUtils -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxBase64.html b/java/docs/com/mxgraph/util/mxBase64.html index fcc1f4cd2..c9ab47194 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.2.0 API Specification) +mxBase64 (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxBase64 (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxBase64 (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxBase64 (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -489,7 +489,7 @@ public static final byte[] decodeFast(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html b/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html index 97419a9c4..4844795fb 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.2.0 API Specification) +mxCellRenderer.CanvasFactory (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCellRenderer.CanvasFactory (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellRenderer.CanvasFactory (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCellRenderer.CanvasFactory (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -220,7 +220,7 @@ public abstract
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxCellRenderer.html b/java/docs/com/mxgraph/util/mxCellRenderer.html index 1e043e2db..740cf803e 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.2.0 API Specification) +mxCellRenderer (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCellRenderer (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellRenderer (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCellRenderer (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxConstants.html b/java/docs/com/mxgraph/util/mxConstants.html index 7244f96e3..3c037e95c 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.2.0 API Specification) +mxConstants (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxConstants (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConstants (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxConstants (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -4106,7 +4106,7 @@ public mxConstants() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxCurve.html b/java/docs/com/mxgraph/util/mxCurve.html index e6fb8f1e6..bb57b64ec 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.2.0 API Specification) +mxCurve (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCurve (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurve (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCurve (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -1104,7 +1104,7 @@ public
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxDomUtils.html b/java/docs/com/mxgraph/util/mxDomUtils.html index be79b1582..fc301d494 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.2.0 API Specification) +mxDomUtils (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxDomUtils (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDomUtils (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxDomUtils (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -281,7 +281,7 @@ public static
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxEvent.html b/java/docs/com/mxgraph/util/mxEvent.html index 282578740..0e2b15c0c 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.2.0 API Specification) +mxEvent (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxEvent (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEvent (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxEvent (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -1273,7 +1273,7 @@ public mxEvent() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxEventObject.html b/java/docs/com/mxgraph/util/mxEventObject.html index d140983e2..8a9bea242 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.2.0 API Specification) +mxEventObject (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxEventObject (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventObject (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxEventObject (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -397,7 +397,7 @@ public void consume() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxEventSource.html b/java/docs/com/mxgraph/util/mxEventSource.html index 50fdc1324..d43d3b794 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.2.0 API Specification) +mxEventSource (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxEventSource (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventSource (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxEventSource (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -513,7 +513,7 @@ public void fireEvent(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html b/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html index 31be4b61c..989f34182 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.2.0 API Specification) +mxEventSource.mxIEventListener (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxEventSource.mxIEventListener (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventSource.mxIEventListener (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxEventSource.mxIEventListener (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -176,7 +176,7 @@ void invoke(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxImage.html b/java/docs/com/mxgraph/util/mxImage.html index f2a4b9d3a..3f26a473f 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.2.0 API Specification) +mxImage (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxImage (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImage (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxImage (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -420,7 +420,7 @@ public void setHeight(int height) -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxImageBundle.html b/java/docs/com/mxgraph/util/mxImageBundle.html index 9a07c3f87..a5e344afd 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.2.0 API Specification) +mxImageBundle (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxImageBundle (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImageBundle (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxImageBundle (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -331,7 +331,7 @@ public
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxLightweightLabel.html b/java/docs/com/mxgraph/util/mxLightweightLabel.html index bf9944227..e6f39d89d 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.2.0 API Specification) +mxLightweightLabel (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxLightweightLabel (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLightweightLabel (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxLightweightLabel (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -742,7 +742,7 @@ public void firePropertyChange(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxLine.html b/java/docs/com/mxgraph/util/mxLine.html index 658189334..e12828eb1 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.2.0 API Specification) +mxLine (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxLine (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLine (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxLine (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -396,7 +396,7 @@ public double ptSegDistSq(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxPoint.html b/java/docs/com/mxgraph/util/mxPoint.html index 4f747b2cf..771de1a71 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.2.0 API Specification) +mxPoint (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxPoint (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPoint (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxPoint (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -518,7 +518,7 @@ public
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxRectangle.html b/java/docs/com/mxgraph/util/mxRectangle.html index 55a03d5b3..901784ca1 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.2.0 API Specification) +mxRectangle (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxRectangle (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRectangle (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxRectangle (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -699,7 +699,7 @@ public
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxResources.html b/java/docs/com/mxgraph/util/mxResources.html index 9350ee01f..e570abdcc 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.2.0 API Specification) +mxResources (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxResources (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxResources (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxResources (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -432,7 +432,7 @@ protected static
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxSpline.html b/java/docs/com/mxgraph/util/mxSpline.html index 485d6dd5a..3e3e78f21 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.2.0 API Specification) +mxSpline (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxSpline (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpline (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxSpline (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -371,7 +371,7 @@ public double getLength() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxSpline1D.html b/java/docs/com/mxgraph/util/mxSpline1D.html index 248e06381..1d01f5793 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.2.0 API Specification) +mxSpline1D (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxSpline1D (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpline1D (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxSpline1D (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -446,7 +446,7 @@ public void solve(double[][] A, -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxStyleUtils.html b/java/docs/com/mxgraph/util/mxStyleUtils.html index 27db090fd..a056b872c 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.2.0 API Specification) +mxStyleUtils (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxStyleUtils (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStyleUtils (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxStyleUtils (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -468,7 +468,7 @@ public static
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxUndoManager.html b/java/docs/com/mxgraph/util/mxUndoManager.html index 7c97016fa..2162d2d1b 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.2.0 API Specification) +mxUndoManager (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxUndoManager (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoManager (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxUndoManager (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -511,7 +511,7 @@ protected void trim() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxUndoableEdit.html b/java/docs/com/mxgraph/util/mxUndoableEdit.html index c179fd5e7..4fee6f6a0 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.2.0 API Specification) +mxUndoableEdit (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxUndoableEdit (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoableEdit (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxUndoableEdit (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -578,7 +578,7 @@ public void redo() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html b/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html index 8d43ef4da..62045b813 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.2.0 API Specification) +mxUndoableEdit.mxUndoableChange (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxUndoableEdit.mxUndoableChange (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoableEdit.mxUndoableChange (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxUndoableEdit.mxUndoableChange (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -177,7 +177,7 @@ void execute() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxUtils.html b/java/docs/com/mxgraph/util/mxUtils.html index 4b4a22449..8ad97cf2e 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.2.0 API Specification) +mxUtils (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxUtils (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUtils (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxUtils (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -2496,7 +2496,7 @@ public static
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/mxXmlUtils.html b/java/docs/com/mxgraph/util/mxXmlUtils.html index f8a08b1eb..1524afd88 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.2.0 API Specification) +mxXmlUtils (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxXmlUtils (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxXmlUtils (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxXmlUtils (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -240,7 +240,7 @@ public static
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/package-frame.html b/java/docs/com/mxgraph/util/package-frame.html index a1c50a56a..88106cef6 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.2.0 API Specification) +com.mxgraph.util (mxGraph 1.10.2.1 API Specification) - + diff --git a/java/docs/com/mxgraph/util/package-summary.html b/java/docs/com/mxgraph/util/package-summary.html index b9aa7bc22..1eaeba72a 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.2.0 API Specification) +com.mxgraph.util (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.util (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -254,7 +254,7 @@ This package provides utility classes such as mxConstants, mxUtils, mxPoint -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -140,7 +140,7 @@ Interface Hierarchy -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 2c10da483..e67b4e40d 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.2.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.Gray -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 b73a66689..f0c878784 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.2.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.Palette -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 ef65ef07a..db10e04f8 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.2.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.RGB -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 bc1ee2fe5..55c67dcd6 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.2.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -219,7 +219,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 0dfaf75b0..4719d6fe9 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.2.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngImageEncoder -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 2767b19fd..26a559516 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.2.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 1.10.2.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 ea0764a84..f493a2abc 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.2.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngTextDecoder -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html index 5f9a0a3ca..8517895a4 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.2.0 API Specification) +mxPngEncodeParam.Gray (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.Gray (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.Gray (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxPngEncodeParam.Gray (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -542,7 +542,7 @@ public boolean isBitDepthSet() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html index cfec08ede..7ad1f4ef9 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.2.0 API Specification) +mxPngEncodeParam.Palette (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.Palette (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.Palette (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxPngEncodeParam.Palette (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -517,7 +517,7 @@ public byte[] getPaletteTransparency() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html index f591cbac2..73164733a 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.2.0 API Specification) +mxPngEncodeParam.RGB (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.RGB (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.RGB (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxPngEncodeParam.RGB (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -420,7 +420,7 @@ public int[] getTransparentRGB() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html index 4335b289c..ab497fd9b 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.2.0 API Specification) +mxPngEncodeParam (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxPngEncodeParam (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -2047,7 +2047,7 @@ public int filterRow(byte[] currRow, -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html b/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html index 68b33c2a5..b7237b920 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.2.0 API Specification) +mxPngImageEncoder (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngImageEncoder (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngImageEncoder (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxPngImageEncoder (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -326,7 +326,7 @@ public void encode(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html b/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html index db5645862..dac6e1e81 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.2.0 API Specification) +mxPngSuggestedPaletteEntry (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngSuggestedPaletteEntry (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngSuggestedPaletteEntry (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxPngSuggestedPaletteEntry (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -353,7 +353,7 @@ public mxPngSuggestedPaletteEntry() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html b/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html index e785fe210..382e8292d 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.2.0 API Specification) +mxPngTextDecoder (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngTextDecoder (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngTextDecoder (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxPngTextDecoder (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -271,7 +271,7 @@ public static
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/png/package-frame.html b/java/docs/com/mxgraph/util/png/package-frame.html index 56e471180..0d676283f 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.2.0 API Specification) +com.mxgraph.util.png (mxGraph 1.10.2.1 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 a3afdc17e..fee1512a2 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.2.0 API Specification) +com.mxgraph.util.png (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.png (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.png (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.util.png (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -147,7 +147,7 @@ Package com.mxgraph.util.png -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/png/package-use.html b/java/docs/com/mxgraph/util/png/package-use.html index f8d59e796..95c7fb653 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.2.0 API Specification) +Uses of Package com.mxgraph.util.png (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.util.png (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.util.png (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -142,7 +142,7 @@ Classes in
com.m -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/AWTPathProducer.html b/java/docs/com/mxgraph/util/svg/AWTPathProducer.html index 934f844d3..d826e2652 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.2.0 API Specification) +AWTPathProducer (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ AWTPathProducer (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPathProducer (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="AWTPathProducer (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -1098,7 +1098,7 @@ public void arcAbs(float rx, -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html b/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html index 2e759cd1e..3e7deea76 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.2.0 API Specification) +AWTPolygonProducer (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ AWTPolygonProducer (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPolygonProducer (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="AWTPolygonProducer (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -281,7 +281,7 @@ public void endPoints() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html b/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html index 0ad8bb8ba..2aa961646 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.2.0 API Specification) +AWTPolylineProducer (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ AWTPolylineProducer (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPolylineProducer (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="AWTPolylineProducer (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -469,7 +469,7 @@ public void endPoints() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/AbstractParser.html b/java/docs/com/mxgraph/util/svg/AbstractParser.html index d9e018acc..4b5650850 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.2.0 API Specification) +AbstractParser (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ AbstractParser (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AbstractParser (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="AbstractParser (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -601,7 +601,7 @@ protected void skipCommaSpaces() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/CSSConstants.html b/java/docs/com/mxgraph/util/svg/CSSConstants.html index a0bf4448e..9c70285fa 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.2.0 API Specification) +CSSConstants (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ CSSConstants (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="CSSConstants (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="CSSConstants (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -204,7 +204,7 @@ static final
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html b/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html index c661ce7d0..a58ea3475 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.2.0 API Specification) +DefaultErrorHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ DefaultErrorHandler (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="DefaultErrorHandler (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="DefaultErrorHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -227,7 +227,7 @@ public void error(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/ErrorHandler.html b/java/docs/com/mxgraph/util/svg/ErrorHandler.html index 5d4e81aac..b4559d861 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.2.0 API Specification) +ErrorHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ ErrorHandler (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ErrorHandler (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="ErrorHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -178,7 +178,7 @@ void error(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html b/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html index 1e0d67f7d..ae5ad7483 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.2.0 API Specification) +ExtendedGeneralPath (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ ExtendedGeneralPath (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ExtendedGeneralPath (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="ExtendedGeneralPath (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -1091,7 +1091,7 @@ public
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html b/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html index 0eca82c3b..68219def5 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.2.0 API Specification) +ExtendedPathIterator (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ ExtendedPathIterator (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ExtendedPathIterator (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="ExtendedPathIterator (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -494,7 +494,7 @@ void next() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/NormalizingReader.html b/java/docs/com/mxgraph/util/svg/NormalizingReader.html index 742c74d86..8a6d19f80 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.2.0 API Specification) +NormalizingReader (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ NormalizingReader (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="NormalizingReader (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="NormalizingReader (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -307,7 +307,7 @@ public abstract int getColumn() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/NumberParser.html b/java/docs/com/mxgraph/util/svg/NumberParser.html index 9f0883a5e..bc4179da0 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.2.0 API Specification) +NumberParser (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ NumberParser (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="NumberParser (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="NumberParser (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -279,7 +279,7 @@ public static float buildFloat(int mant, -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/ParseException.html b/java/docs/com/mxgraph/util/svg/ParseException.html index 9d0715ae5..3598a3568 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.2.0 API Specification) +ParseException (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ ParseException (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ParseException (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="ParseException (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -437,7 +437,7 @@ public int getColumnNumber() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/Parser.html b/java/docs/com/mxgraph/util/svg/Parser.html index bb84e6b19..5cdcf7360 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.2.0 API Specification) +Parser (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Parser (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Parser (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Parser (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -206,7 +206,7 @@ void setErrorHandler(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/PathHandler.html b/java/docs/com/mxgraph/util/svg/PathHandler.html index a1a6c8b78..c7ddc4678 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.2.0 API Specification) +PathHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ PathHandler (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PathHandler (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="PathHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -776,7 +776,7 @@ void arcAbs(float rx, -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/PathParser.html b/java/docs/com/mxgraph/util/svg/PathParser.html index 13ccec57e..422a9c887 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.2.0 API Specification) +PathParser (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ PathParser (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PathParser (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="PathParser (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -941,7 +941,7 @@ protected boolean skipCommaSpaces2() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/PointsHandler.html b/java/docs/com/mxgraph/util/svg/PointsHandler.html index 9a2b29315..8abd7ac07 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.2.0 API Specification) +PointsHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ PointsHandler (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PointsHandler (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="PointsHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -232,7 +232,7 @@ void endPoints() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/PointsParser.html b/java/docs/com/mxgraph/util/svg/PointsParser.html index af6e90cd1..3ef1fe4eb 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.2.0 API Specification) +PointsParser (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ PointsParser (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PointsParser (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="PointsParser (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -367,7 +367,7 @@ protected void doParse() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/ShapeProducer.html b/java/docs/com/mxgraph/util/svg/ShapeProducer.html index be857b82f..1c923bf82 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.2.0 API Specification) +ShapeProducer (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ ShapeProducer (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ShapeProducer (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="ShapeProducer (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -218,7 +218,7 @@ int getWindingRule() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html b/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html index d996141b0..bf5c01641 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.2.0 API Specification) +StringNormalizingReader (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ StringNormalizingReader (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="StringNormalizingReader (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="StringNormalizingReader (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -454,7 +454,7 @@ public void close() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 72bdcc1a5..86e3b569b 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.2.0 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.AWTPathProducer -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 22d7456b2..150419991 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.2.0 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.AWTPolygonProducer -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 068d392ae..7642f030f 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.2.0 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 91bad0f1a..f0be32912 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.2.0 API Specification) +Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -163,7 +163,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 7a78ada46..109a5bfd1 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.2.0 API Specification) +Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.CSSConstants -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 757025218..e29add751 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.2.0 API Specification) +Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.DefaultErrorHandler -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 b2ee60b41..96d9e1878 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.2.0 API Specification) +Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -185,7 +185,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 a52bcd9c3..61991aa2b 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.2.0 API Specification) +Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 d8e8abf6e..3b00b58b4 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.2.0 API Specification) +Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 cd19b169c..271aefc56 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.2.0 API Specification) +Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 6dfcb1432..206802051 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.2.0 API Specification) +Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 95a33d80b..d9c39c974 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.2.0 API Specification) +Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -920,7 +920,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 f31d973aa..bb391420f 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.2.0 API Specification) +Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 9f8514a10..c71bcc6f5 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.2.0 API Specification) +Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 2b05c4512..bdb0f0168 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.2.0 API Specification) +Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.PathParser -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 f96f53a7b..7fa194ed9 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.2.0 API Specification) +Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -215,7 +215,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 4401619d8..adaf0c3a1 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.2.0 API Specification) +Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.PointsParser -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 e31875b76..f188d4ca0 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.2.0 API Specification) +Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 aa75d5b1c..c22dfe21e 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.2.0 API Specification) +Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.StringNormalizingReader -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/package-frame.html b/java/docs/com/mxgraph/util/svg/package-frame.html index 1ae531fa4..2d11c15a7 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.2.0 API Specification) +com.mxgraph.util.svg (mxGraph 1.10.2.1 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 4f334ae4e..9f719a38f 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.2.0 API Specification) +com.mxgraph.util.svg (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.svg (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.svg (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.util.svg (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -227,7 +227,7 @@ Package com.mxgraph.util.svg -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/package-tree.html b/java/docs/com/mxgraph/util/svg/package-tree.html index 37bf2b562..8c1e0b264 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.2.0 API Specification) +com.mxgraph.util.svg Class Hierarchy (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.svg Class Hierarchy (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.svg Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.util.svg Class Hierarchy (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -146,7 +146,7 @@ Interface Hierarchy -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/util/svg/package-use.html b/java/docs/com/mxgraph/util/svg/package-use.html index daac325b1..dc2804623 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.2.0 API Specification) +Uses of Package com.mxgraph.util.svg (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.util.svg (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.util.svg (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -211,7 +211,7 @@ Classes in
com.m -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxCellState.html b/java/docs/com/mxgraph/view/class-use/mxCellState.html index 0c5cd96d3..e85acd62c 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxCellState (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxCellState (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxCellState (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -2366,7 +2366,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html b/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html index c024c18c5..fb9c1ee48 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -222,7 +222,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html index a8586ac61..ae810bf02 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxEdgeStyle -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 f77b40fa8..e7553b5a4 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.2.0 API Specification) +Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -241,7 +241,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraph.html b/java/docs/com/mxgraph/view/class-use/mxGraph.html index 08a8bff77..97cfd019e 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxGraph (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraph (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraph (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -1138,7 +1138,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 26e3b980e..b591878f7 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.2.0 API Specification) +Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html index 8284a7c74..beb5c42e9 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 7d60a86e7..5eee0e65c 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphView.html b/java/docs/com/mxgraph/view/class-use/mxGraphView.html index 8cda04274..0b585ff45 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxGraphView (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphView (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphView (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -279,7 +279,7 @@ Uses of
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 071f4ccd6..5a79caca4 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 1.10.2.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxGraphView.mxCurrentRootChange -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html b/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html index 83e46a951..8ed74e990 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxLayoutManager -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html b/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html index cc44cd6c0..90585c5c7 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxPerimeter.html b/java/docs/com/mxgraph/view/class-use/mxPerimeter.html index 94898d602..4b6609e43 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxPerimeter -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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 45e497b7e..190572cb4 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.2.0 API Specification) +Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 1.10.2.1 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.2.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html b/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html index 3daff67af..e570dd2e0 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxSpaceManager -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html b/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html index 920919761..81cca05dc 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxStyleRegistry -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxStylesheet.html b/java/docs/com/mxgraph/view/class-use/mxStylesheet.html index 190000b01..a2d0e45df 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html b/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html index 5b12e5ece..a57c92b0a 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxSwimlaneManager -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html b/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html index 354003fa2..5a89b7775 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.2.0 API Specification) +Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 1.10.2.0 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.2.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxTemporaryCellStates -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxCellState.html b/java/docs/com/mxgraph/view/mxCellState.html index c4b818bbb..5c8e2ed21 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.2.0 API Specification) +mxCellState (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxCellState (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellState (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxCellState (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -1381,7 +1381,7 @@ public
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxConnectionConstraint.html b/java/docs/com/mxgraph/view/mxConnectionConstraint.html index 4b67a81d7..977116bee 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.2.0 API Specification) +mxConnectionConstraint (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxConnectionConstraint (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectionConstraint (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxConnectionConstraint (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -383,7 +383,7 @@ public void setPerimeter(boolean value) -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxEdgeStyle.html b/java/docs/com/mxgraph/view/mxEdgeStyle.html index 1e2c4a1dd..e2039378a 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.2.0 API Specification) +mxEdgeStyle (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeStyle (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeStyle (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxEdgeStyle (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -754,7 +754,7 @@ public mxEdgeStyle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html b/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html index d6b8e9f08..84ef1bfba 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.2.0 API Specification) +mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -190,7 +190,7 @@ void apply(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxGraph.html b/java/docs/com/mxgraph/view/mxGraph.html index d4081b53f..6b44272cc 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.2.0 API Specification) +mxGraph (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraph (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraph (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraph (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -4080,7 +4080,7 @@ VERSION public static final
String VERSION
Holds the version number of this release. Current version - is 1.10.2.0. + is 1.10.2.1.

See Also:
Constant Field Values
@@ -10263,7 +10263,7 @@ public static void main( -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html b/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html index 54cddd3c9..8c93a0fd7 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.2.0 API Specification) +mxGraph.mxICellVisitor (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraph.mxICellVisitor (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraph.mxICellVisitor (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraph.mxICellVisitor (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -170,7 +170,7 @@ boolean visit(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxGraphSelectionModel.html b/java/docs/com/mxgraph/view/mxGraphSelectionModel.html index 48d294cdc..e92e00041 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.2.0 API Specification) +mxGraphSelectionModel (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphSelectionModel (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphSelectionModel (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphSelectionModel (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -721,7 +721,7 @@ protected void cellRemoved(
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html b/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html index d8fb8e250..95c060a77 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.2.0 API Specification) +mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxGraphView.html b/java/docs/com/mxgraph/view/mxGraphView.html index 824f8baa7..be6cc9d28 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.2.0 API Specification) +mxGraphView (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphView (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphView (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphView (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -1716,7 +1716,7 @@ public
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html b/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html index c43d915ed..02ced5247 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.2.0 API Specification) +mxGraphView.mxCurrentRootChange (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphView.mxCurrentRootChange (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphView.mxCurrentRootChange (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxGraphView.mxCurrentRootChange (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxLayoutManager.html b/java/docs/com/mxgraph/view/mxLayoutManager.html index 1ac9a69b3..0c8b326ac 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.2.0 API Specification) +mxLayoutManager (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxLayoutManager (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLayoutManager (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxLayoutManager (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxMultiplicity.html b/java/docs/com/mxgraph/view/mxMultiplicity.html index 32db4e836..6b282e3ef 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.2.0 API Specification) +mxMultiplicity (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxMultiplicity (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMultiplicity (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxMultiplicity (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -643,7 +643,7 @@ public int getMaxValue() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxPerimeter.html b/java/docs/com/mxgraph/view/mxPerimeter.html index 9f6d1fbe2..1485d66df 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.2.0 API Specification) +mxPerimeter (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxPerimeter (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPerimeter (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxPerimeter (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -327,7 +327,7 @@ public mxPerimeter() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html b/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html index dbf3b6f2a..c2f209fc7 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.2.0 API Specification) +mxPerimeter.mxPerimeterFunction (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxPerimeter.mxPerimeterFunction (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPerimeter.mxPerimeterFunction (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxPerimeter.mxPerimeterFunction (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -186,7 +186,7 @@ apply -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxSpaceManager.html b/java/docs/com/mxgraph/view/mxSpaceManager.html index f17f2444d..55624d890 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.2.0 API Specification) +mxSpaceManager (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxSpaceManager (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpaceManager (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxSpaceManager (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxStyleRegistry.html b/java/docs/com/mxgraph/view/mxStyleRegistry.html index d4762b7fe..aa8f698e1 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.2.0 API Specification) +mxStyleRegistry (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxStyleRegistry (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStyleRegistry (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxStyleRegistry (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -300,7 +300,7 @@ public static
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxStylesheet.html b/java/docs/com/mxgraph/view/mxStylesheet.html index ca8a46e44..38e6702a0 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.2.0 API Specification) +mxStylesheet (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxStylesheet (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStylesheet (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxStylesheet (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -487,7 +487,7 @@ public
-

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxSwimlaneManager.html b/java/docs/com/mxgraph/view/mxSwimlaneManager.html index b4ada70e1..5db5628c9 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.2.0 API Specification) +mxSwimlaneManager (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxSwimlaneManager (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSwimlaneManager (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxSwimlaneManager (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/mxTemporaryCellStates.html b/java/docs/com/mxgraph/view/mxTemporaryCellStates.html index 896388ce8..4d5eb5f9d 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.2.0 API Specification) +mxTemporaryCellStates (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ mxTemporaryCellStates (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxTemporaryCellStates (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="mxTemporaryCellStates (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/com/mxgraph/view/package-frame.html b/java/docs/com/mxgraph/view/package-frame.html index ae671c86e..e79e94637 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.2.0 API Specification) +com.mxgraph.view (mxGraph 1.10.2.1 API Specification) - + diff --git a/java/docs/com/mxgraph/view/package-summary.html b/java/docs/com/mxgraph/view/package-summary.html index bd85389d9..851e2181a 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.2.0 API Specification) +com.mxgraph.view (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.view (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.view (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="com.mxgraph.view (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -232,7 +232,7 @@ This package implements the graph component, represented by the mxGraph -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -132,7 +132,7 @@ Interface Hierarchy -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

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

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/constant-values.html b/java/docs/constant-values.html index 9cb592a98..f9e45387a 100644 --- a/java/docs/constant-values.html +++ b/java/docs/constant-values.html @@ -2,12 +2,12 @@ - + -Constant Field Values (mxGraph 1.10.2.0 API Specification) +Constant Field Values (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Constant Field Values (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Constant Field Values (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Constant Field Values (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -1042,7 +1042,7 @@ com.mxgraph.*
public static final String VERSION -"1.10.2.0" +"1.10.2.1" @@ -1075,7 +1075,7 @@ com.mxgraph.* -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/deprecated-list.html b/java/docs/deprecated-list.html index 1be05b013..4c45f1675 100644 --- a/java/docs/deprecated-list.html +++ b/java/docs/deprecated-list.html @@ -2,12 +2,12 @@ - + -Deprecated List (mxGraph 1.10.2.0 API Specification) +Deprecated List (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Deprecated List (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Deprecated List (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Deprecated List (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -191,7 +191,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/help-doc.html b/java/docs/help-doc.html index 45c5f6d08..2f8c9140b 100644 --- a/java/docs/help-doc.html +++ b/java/docs/help-doc.html @@ -2,12 +2,12 @@ - + -API Help (mxGraph 1.10.2.0 API Specification) +API Help (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ API Help (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="API Help (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="API Help (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -188,7 +188,7 @@ This help file applies to API documentation generated using the standard doclet. -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/index-all.html b/java/docs/index-all.html index a048fadad..5f9fbd790 100644 --- a/java/docs/index-all.html +++ b/java/docs/index-all.html @@ -2,12 +2,12 @@ - + -Index (mxGraph 1.10.2.0 API Specification) +Index (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Index (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Index (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Index (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -6029,6 +6029,9 @@ Variable in class com.mxgraph.view.gridEnabledEvent - Variable in class com.mxgraph.swing.handler.mxEdgeHandler
Workaround for alt-key-state not correct in mouseReleased. +
gridEnabledEvent - +Variable in class com.mxgraph.swing.handler.mxGraphHandler +
Workaround for alt-key-state not correct in mouseReleased.
gridEnabledEvent - Variable in class com.mxgraph.swing.handler.mxVertexHandler
Workaround for alt-key-state not correct in mouseReleased. @@ -14612,7 +14615,7 @@ Method in class com.mxgraph.util.svg. -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/index.html b/java/docs/index.html index f18fe5872..d5ea4a4c0 100644 --- a/java/docs/index.html +++ b/java/docs/index.html @@ -2,9 +2,9 @@ - + -mxGraph 1.10.2.0 API Specification +mxGraph 1.10.2.1 API Specification @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -81,7 +81,7 @@ function windowTitle()

-mxGraph 1.10.2.0 API Specification +mxGraph 1.10.2.1 API Specification

@@ -221,7 +221,7 @@ mxGraph 1.10.2.0 API Specification -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/overview-tree.html b/java/docs/overview-tree.html index 825439587..e51c7e40e 100644 --- a/java/docs/overview-tree.html +++ b/java/docs/overview-tree.html @@ -2,12 +2,12 @@ - + -Class Hierarchy (mxGraph 1.10.2.0 API Specification) +Class Hierarchy (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Class Hierarchy (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Class Hierarchy (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -280,7 +280,7 @@ Enum Hierarchy -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/docs/serialized-form.html b/java/docs/serialized-form.html index 3dd0ac633..08ef46ff3 100644 --- a/java/docs/serialized-form.html +++ b/java/docs/serialized-form.html @@ -2,12 +2,12 @@ - + -Serialized Form (mxGraph 1.10.2.0 API Specification) +Serialized Form (mxGraph 1.10.2.1 API Specification) - + @@ -15,7 +15,7 @@ Serialized Form (mxGraph 1.10.2.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Serialized Form (mxGraph 1.10.2.0 API Specification)"; + parent.document.title="Serialized Form (mxGraph 1.10.2.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

@@ -2526,7 +2526,7 @@ visibleTargetState -

mxGraph 1.10.2.0

+

mxGraph 1.10.2.1

diff --git a/java/examples/com/mxgraph/examples/swing/editor/BasicGraphEditor.java b/java/examples/com/mxgraph/examples/swing/editor/BasicGraphEditor.java index c03cf0d36..d268ca29a 100755 --- a/java/examples/com/mxgraph/examples/swing/editor/BasicGraphEditor.java +++ b/java/examples/com/mxgraph/examples/swing/editor/BasicGraphEditor.java @@ -640,7 +640,7 @@ public class BasicGraphEditor extends JPanel @SuppressWarnings("serial") public Action bind(String name, final Action action, String iconUrl) { - return new AbstractAction(name, (iconUrl != null) ? new ImageIcon( + AbstractAction newAction = new AbstractAction(name, (iconUrl != null) ? new ImageIcon( BasicGraphEditor.class.getResource(iconUrl)) : null) { public void actionPerformed(ActionEvent e) @@ -649,6 +649,10 @@ public class BasicGraphEditor extends JPanel .getID(), e.getActionCommand())); } }; + + newAction.putValue(Action.SHORT_DESCRIPTION, action.getValue(Action.SHORT_DESCRIPTION)); + + return newAction; } /** diff --git a/java/examples/com/mxgraph/examples/swing/editor/JTableRenderer.java b/java/examples/com/mxgraph/examples/swing/editor/JTableRenderer.java index ed79d1ed3..ba9454fa7 100755 --- a/java/examples/com/mxgraph/examples/swing/editor/JTableRenderer.java +++ b/java/examples/com/mxgraph/examples/swing/editor/JTableRenderer.java @@ -1,5 +1,5 @@ /* - * $Id: JTableRenderer.java,v 1.5 2012-01-13 11:04:36 david Exp $ + * $Id: JTableRenderer.java,v 1.6 2012-07-29 09:30:47 gaudenz Exp $ * Copyright (c) 2001-2005, Gaudenz Alder * * All rights reserved. @@ -141,7 +141,7 @@ public class JTableRenderer extends JComponent public void actionPerformed(ActionEvent e) { - graph.foldCells(graph.isCellCollapsed(cell), false, + graph.foldCells(!graph.isCellCollapsed(cell), false, new Object[] { cell }); ((JButton) e.getSource()) .setIcon(new ImageIcon( diff --git a/java/lib/mxgraph-all.jar b/java/lib/mxgraph-all.jar index 9e3dbef90..ceb56516f 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 223119060..821e2d700 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 041c2ada0..5c6a08690 100644 Binary files a/java/lib/mxgraph-swing.jar and b/java/lib/mxgraph-swing.jar differ diff --git a/java/src/com/mxgraph/canvas/mxGraphicsCanvas2D.java b/java/src/com/mxgraph/canvas/mxGraphicsCanvas2D.java index e10aa884b..2fa901ac0 100644 --- a/java/src/com/mxgraph/canvas/mxGraphicsCanvas2D.java +++ b/java/src/com/mxgraph/canvas/mxGraphicsCanvas2D.java @@ -255,12 +255,14 @@ public class mxGraphicsCanvas2D implements mxICanvas2D public void rotate(double theta, boolean flipH, boolean flipV, double cx, double cy) { - cx += state.dx; - cy += state.dy; - cx *= state.scale; cy *= state.scale; + // This is a special case where the rotation center is scaled so dx/dy, + // which are also scaled, must be applied after scaling the center. + cx += state.dx; + cy += state.dy; + // This implementation uses custom scale/translate and built-in rotation // Rotation state is part of the AffineTransform in state.transform if (flipH ^ flipV) diff --git a/java/src/com/mxgraph/swing/handler/mxGraphHandler.java b/java/src/com/mxgraph/swing/handler/mxGraphHandler.java index 5628d1804..6391c2756 100755 --- a/java/src/com/mxgraph/swing/handler/mxGraphHandler.java +++ b/java/src/com/mxgraph/swing/handler/mxGraphHandler.java @@ -1,5 +1,5 @@ /** - * $Id: mxGraphHandler.java,v 1.80 2012-03-10 08:05:31 gaudenz Exp $ + * $Id: mxGraphHandler.java,v 1.81 2012-07-30 11:22:37 gaudenz Exp $ * Copyright (c) 2008-2012, JGraph Ltd * * Known issue: Drag image size depends on the initial position and may sometimes @@ -212,7 +212,7 @@ public class mxGraphHandler extends mxMouseAdapter implements * Workaround for alt-key-state not correct in mouseReleased. Note: State * of the alt-key is not available during drag-and-drop. */ - private transient boolean gridEnabledEvent = false; + protected transient boolean gridEnabledEvent = false; /** * Workaround for shift-key-state not correct in mouseReleased. diff --git a/java/src/com/mxgraph/swing/handler/mxSelectionCellsHandler.java b/java/src/com/mxgraph/swing/handler/mxSelectionCellsHandler.java index 43f0935bc..3c964a641 100755 --- a/java/src/com/mxgraph/swing/handler/mxSelectionCellsHandler.java +++ b/java/src/com/mxgraph/swing/handler/mxSelectionCellsHandler.java @@ -1,5 +1,5 @@ /** - * $Id: mxSelectionCellsHandler.java,v 1.12 2012-07-01 12:19:21 gaudenz Exp $ + * $Id: mxSelectionCellsHandler.java,v 1.13 2012-07-25 08:23:43 gaudenz Exp $ * Copyright (c) 2008, Gaudenz Alder * * Known issue: Drag image size depends on the initial position and may sometimes @@ -82,7 +82,7 @@ public class mxSelectionCellsHandler implements MouseListener, { public void invoke(Object source, mxEventObject evt) { - if (graphComponent.isEnabled()) + if (isEnabled()) { refresh(); } diff --git a/java/src/com/mxgraph/util/mxUtils.java b/java/src/com/mxgraph/util/mxUtils.java index 9360f8fdc..b74bb9bbb 100755 --- a/java/src/com/mxgraph/util/mxUtils.java +++ b/java/src/com/mxgraph/util/mxUtils.java @@ -1,5 +1,5 @@ /** - * $Id: mxUtils.java,v 1.126 2012-07-19 19:18:42 gaudenz Exp $ + * $Id: mxUtils.java,v 1.127 2012-07-26 07:20:50 gaudenz Exp $ * Copyright (c) 2007-2012, JGraph Ltd */ package com.mxgraph.util; @@ -357,19 +357,30 @@ public class mxUtils Rectangle2D boundingBox = null; - for (int i = 0; i < lines.length; i++) + if (lines.length == 0) { - Rectangle2D bounds = font.getStringBounds(lines[i], frc); + boundingBox = font.getStringBounds("", frc); + } + else + { + for (int i = 0; i < lines.length; i++) + { + Rectangle2D bounds = font.getStringBounds(lines[i], frc); - if (boundingBox == null) - { - boundingBox = bounds; - } - else - { - boundingBox.setFrame(0, 0, - Math.max(boundingBox.getWidth(), bounds.getWidth()), - boundingBox.getHeight() + lineHeight); + if (boundingBox == null) + { + boundingBox = bounds; + } + else + { + boundingBox + .setFrame( + 0, + 0, + Math.max(boundingBox.getWidth(), + bounds.getWidth()), + boundingBox.getHeight() + lineHeight); + } } } diff --git a/java/src/com/mxgraph/view/mxGraph.java b/java/src/com/mxgraph/view/mxGraph.java index 4635ee279..381d5bbef 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.2.0. + * is 1.10.2.1. */ - public static final String VERSION = "1.10.2.0"; + public static final String VERSION = "1.10.2.1"; /** * diff --git a/javascript/examples/grapheditor/www/index.html b/javascript/examples/grapheditor/www/index.html index 365ba4cb1..c0451b9ca 100644 --- a/javascript/examples/grapheditor/www/index.html +++ b/javascript/examples/grapheditor/www/index.html @@ -69,6 +69,7 @@ + diff --git a/javascript/examples/grapheditor/www/js/Actions.js b/javascript/examples/grapheditor/www/js/Actions.js index 4332fca4c..59e9d9507 100644 --- a/javascript/examples/grapheditor/www/js/Actions.js +++ b/javascript/examples/grapheditor/www/js/Actions.js @@ -1,5 +1,5 @@ /** - * $Id: Actions.js,v 1.33 2012-06-30 05:47:52 gaudenz Exp $ + * $Id: Actions.js,v 1.36 2012-07-26 19:11:58 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ /** @@ -105,6 +105,33 @@ Actions.prototype.init = function() this.addAction('group', function() { graph.setSelectionCell(graph.groupCells(null, 0)); }, null, null, 'Ctrl+G'); this.addAction('ungroup', function() { graph.setSelectionCells(graph.ungroupCells()); }, null, null, 'Ctrl+U'); this.addAction('removeFromGroup', function() { graph.removeCellsFromParent(); }); + this.addAction('editLink', function() + { + var cell = graph.getSelectionCell(); + var link = graph.getLinkForCell(cell); + + if (link == null) + { + link = ''; + } + + link = mxUtils.prompt(mxResources.get('enterValue'), link); + + if (link != null) + { + graph.setLinkForCell(cell, link); + } + }); + this.addAction('openLink', function() + { + var cell = graph.getSelectionCell(); + var link = graph.getLinkForCell(cell); + + if (link != null) + { + window.open(link); + } + }); this.addAction('autosize', function() { var cells = graph.getSelectionCells(); @@ -440,6 +467,14 @@ Actions.prototype.init = function() // Take a snapshot of the cell at the moment of calling var proto = graph.getModel().cloneCells([cell])[0]; + // Delete entry-/exitXY styles + var style = proto.getStyle(); + style = mxUtils.setStyle(style, mxConstants.STYLE_ENTRY_X, ''); + style = mxUtils.setStyle(style, mxConstants.STYLE_ENTRY_Y, ''); + style = mxUtils.setStyle(style, mxConstants.STYLE_EXIT_X, ''); + style = mxUtils.setStyle(style, mxConstants.STYLE_EXIT_Y, ''); + proto.setStyle(style); + // Uses edge template for connect preview graph.connectionHandler.createEdgeState = function(me) { diff --git a/javascript/examples/grapheditor/www/js/Dialogs.js b/javascript/examples/grapheditor/www/js/Dialogs.js index 77625f854..5696a23ce 100644 --- a/javascript/examples/grapheditor/www/js/Dialogs.js +++ b/javascript/examples/grapheditor/www/js/Dialogs.js @@ -1,5 +1,5 @@ /** - * $Id: Dialogs.js,v 1.46 2012-07-19 19:09:23 gaudenz Exp $ + * $Id: Dialogs.js,v 1.48 2012-07-29 08:21:56 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ /** @@ -1003,7 +1003,7 @@ function ExportDialog(editorUi) checkValues(); }); - // Resuable image export instance + // Reusable image export instance var imgExport = new mxImageExport(); row = document.createElement('tr'); @@ -1037,6 +1037,8 @@ function ExportDialog(editorUi) var svgDoc = mxUtils.createXmlDocument(); var root = (svgDoc.createElementNS != null) ? svgDoc.createElementNS(mxConstants.NS_SVG, 'svg') : svgDoc.createElement('svg'); + + root.style.backgroundColor = graph.background; if (svgDoc.createElementNS == null) { diff --git a/javascript/examples/grapheditor/www/js/Editor.js b/javascript/examples/grapheditor/www/js/Editor.js index e0081eb91..263c0cb7a 100644 --- a/javascript/examples/grapheditor/www/js/Editor.js +++ b/javascript/examples/grapheditor/www/js/Editor.js @@ -1,5 +1,5 @@ /** - * $Id: Editor.js,v 1.47 2012-07-15 08:46:38 gaudenz Exp $ + * $Id: Editor.js,v 1.49 2012-07-24 07:49:48 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ // Specifies if local storage should be used (eg. on the iPad which has no filesystem) @@ -806,31 +806,53 @@ Editor.prototype.createUndoManager = function() */ Editor.prototype.initStencilRegistry = function() { - mxStencilRegistry.packages = []; + // Loads default stencils + mxStencilRegistry.loadStencilSet(STENCIL_PATH + '/general.xml'); +}; +// Overrides stencil registry for dynamic loading +(function() +{ + mxStencilRegistry.packages = []; + // Extends the default stencil registry to add dynamic loading mxStencilRegistry.getStencil = function(name) { var result = mxStencilRegistry.stencils[name]; + if (result == null) + { + var basename = mxStencilRegistry.getBasenameForStencil(name); + + // Loads stencil files and tries again + if (basename != null) + { + mxStencilRegistry.loadStencilSet(STENCIL_PATH + '/' + basename + '.xml', null); + result = mxStencilRegistry.stencils[name]; + } + } + + return result; + }; + + // Returns the basename for the given stencil or null if no file must be + // loaded to render the given stencil. + mxStencilRegistry.getBasenameForStencil = function(name) + { var parts = name.split('.'); + var tmp = null; if (parts.length > 0 && parts[0] == 'mxgraph') { - var tmp = parts[1]; + tmp = parts[1]; for (var i = 2; i < parts.length - 1; i++) { tmp += '/' + parts[i]; } - - mxStencilRegistry.loadStencilSet(STENCIL_PATH + '/' + tmp + '.xml', null); - - // Tries again after all shapes for file have been registered - result = mxStencilRegistry.stencils[name]; } - - return result; + + return tmp; }; // Loads the given stencil set @@ -845,53 +867,57 @@ Editor.prototype.initStencilRegistry = function() { mxStencilRegistry.packages[stencilFile] = 1; var req = mxUtils.load(stencilFile); - var root = req.getDocumentElement(); - var shape = root.firstChild; - var packageName = ''; - var name = root.getAttribute('name'); - - if (name != null) - { - packageName = name + '.'; - } - - while (shape != null) - { - if (shape.nodeType == mxConstants.NODETYPE_ELEMENT) - { - name = shape.getAttribute('name'); - - if (name != null) - { - var w = shape.getAttribute('w'); - var h = shape.getAttribute('h'); - - w = (w == null) ? 80 : parseInt(w, 10); - h = (h == null) ? 80 : parseInt(h, 10); - - packageName = packageName.toLowerCase(); - var stencilName = name.replace(/ /g,"_"); - - if (!installed) - { - mxStencilRegistry.addStencil(packageName + stencilName.toLowerCase(), new mxStencil(shape)); - } - - if (postStencilLoad != null) - { - postStencilLoad(packageName, stencilName, name, w, h); - } - } - } - - shape = shape.nextSibling; - } + mxStencilRegistry.parseStencilSet(req.getXml(), postStencilLoad, !installed); } }; - - // Loads default stencils - mxStencilRegistry.loadStencilSet(STENCIL_PATH + '/general.xml'); -}; + + // Parses the given stencil set + mxStencilRegistry.parseStencilSet = function(xmlDocument, postStencilLoad, install) + { + install = (install != null) ? install : true; + var root = xmlDocument.documentElement; + var shape = root.firstChild; + var packageName = ''; + var name = root.getAttribute('name'); + + if (name != null) + { + packageName = name + '.'; + } + + while (shape != null) + { + if (shape.nodeType == mxConstants.NODETYPE_ELEMENT) + { + name = shape.getAttribute('name'); + + if (name != null) + { + var w = shape.getAttribute('w'); + var h = shape.getAttribute('h'); + + w = (w == null) ? 80 : parseInt(w, 10); + h = (h == null) ? 80 : parseInt(h, 10); + + packageName = packageName.toLowerCase(); + var stencilName = name.replace(/ /g,"_"); + + if (install) + { + mxStencilRegistry.addStencil(packageName + stencilName.toLowerCase(), new mxStencil(shape)); + } + + if (postStencilLoad != null) + { + postStencilLoad(packageName, stencilName, name, w, h); + } + } + } + + shape = shape.nextSibling; + } + }; +})(); /** * Class for asynchronously opening a new window and loading a file at the same diff --git a/javascript/examples/grapheditor/www/js/EditorUi.js b/javascript/examples/grapheditor/www/js/EditorUi.js index b1d3bc637..d58b16ae1 100644 --- a/javascript/examples/grapheditor/www/js/EditorUi.js +++ b/javascript/examples/grapheditor/www/js/EditorUi.js @@ -1,5 +1,5 @@ /** - * $Id: EditorUi.js,v 1.50 2012-06-30 05:49:38 gaudenz Exp $ + * $Id: EditorUi.js,v 1.51 2012-07-31 13:15:57 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ /** @@ -454,6 +454,9 @@ EditorUi.prototype.addSelectionListener = function() this.actions.get('enterGroup').setEnabled(groupEnabled); this.actions.get('expand').setEnabled(groupEnabled); this.actions.get('collapse').setEnabled(groupEnabled); + this.actions.get('editLink').setEnabled(graph.getSelectionCount() == 1); + this.actions.get('openLink').setEnabled(graph.getSelectionCount() == 1 && + graph.getLinkForCell(graph.getSelectionCell()) != null); }); this.editor.graph.getSelectionModel().addListener(mxEvent.CHANGE, selectionListener); diff --git a/javascript/examples/grapheditor/www/js/Graph.js b/javascript/examples/grapheditor/www/js/Graph.js index 71b76bd3d..274d88e7f 100644 --- a/javascript/examples/grapheditor/www/js/Graph.js +++ b/javascript/examples/grapheditor/www/js/Graph.js @@ -1,5 +1,5 @@ /** - * $Id: Graph.js,v 1.40 2012-07-16 12:14:15 gaudenz Exp $ + * $Id: Graph.js,v 1.43 2012-07-30 08:55:40 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ /** @@ -37,6 +37,17 @@ Graph = function(container, model, renderHint, stylesheet) return rubberband; }; + // Shows hand cursor while panning + this.panningHandler.addListener(mxEvent.PAN_START, mxUtils.bind(this, function() + { + this.container.style.cursor = 'pointer'; + })); + + this.panningHandler.addListener(mxEvent.PAN_END, mxUtils.bind(this, function() + { + this.container.style.cursor = 'default'; + })); + // Adds support for HTML labels via style. Note: Currently, only the Java // backend supports HTML labels but CSS support is limited to the following: // http://docs.oracle.com/javase/6/docs/api/index.html?javax/swing/text/html/CSS.html @@ -195,6 +206,78 @@ Graph.prototype.getTooltipForCell = function(cell) return tip; }; +/** + * Returns the label for the given cell. + */ +Graph.prototype.convertValueToString = function(cell) +{ + if (typeof(cell.value) == 'object') + { + return cell.value.getAttribute('label'); + } + + return mxGraph.prototype.convertValueToString.apply(this, arguments); +}; + +/** + * Handles label changes for XML user objects. + */ +Graph.prototype.cellLabelChanged = function(cell, value, autoSize) +{ + if (typeof(cell.value) == 'object') + { + var tmp = cell.value.cloneNode(true); + tmp.setAttribute('label', value); + value = tmp; + } + + mxGraph.prototype.cellLabelChanged.apply(this, arguments); +}; + +/** + * Sets the link for the given cell. + */ +Graph.prototype.setLinkForCell = function(cell, link) +{ + var value = null; + + if (typeof(cell.value) == 'object') + { + value = cell.value.cloneNode(true); + } + else + { + var doc = mxUtils.createXmlDocument(); + + value = doc.createElement('UserObject'); + value.setAttribute('label', cell.value); + } + + if (link != null && link.length > 0) + { + value.setAttribute('link', link); + } + else + { + value.removeAttribute('link'); + } + + this.model.setValue(cell, value); +}; + +/** + * Returns the link for the given cell. + */ +Graph.prototype.getLinkForCell = function(cell) +{ + if (typeof(cell.value) == 'object') + { + return cell.value.getAttribute('link'); + } + + return null; +}; + /** * Customized graph for touch devices. */ @@ -293,7 +376,7 @@ Graph.prototype.initTouch = function() }; /** - * Registers shapes. + * Implements touch devices. */ (function() { @@ -482,1218 +565,4 @@ Graph.prototype.initTouch = function() { mxConnectionHandler.prototype.connectImage = new mxImage(IMAGE_PATH + '/connector.png', 15, 15); } - - // Cube Shape, supports size style - function CubeShape() { }; - CubeShape.prototype = new mxCylinder(); - CubeShape.prototype.constructor = CubeShape; - CubeShape.prototype.size = 20; - CubeShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) - { - var s = Math.min(w, Math.min(h, mxUtils.getValue(this.style, 'size', this.size) * this.scale)); - - if (isForeground) - { - path.moveTo(s, h); - path.lineTo(s, s); - path.lineTo(0, 0); - path.moveTo(s, s); - path.lineTo(w, s); - path.end(); - } - else - { - path.moveTo(0, 0); - path.lineTo(w - s, 0); - path.lineTo(w, s); - path.lineTo(w, h); - path.lineTo(s, h); - path.lineTo(0, h - s); - path.lineTo(0, 0); - path.close(); - path.end(); - } - }; - - mxCellRenderer.prototype.defaultShapes['cube'] = CubeShape; - - // Note Shape, supports size style - function NoteShape() { }; - NoteShape.prototype = new mxCylinder(); - NoteShape.prototype.constructor = NoteShape; - NoteShape.prototype.size = 30; - NoteShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) - { - var s = Math.min(w, Math.min(h, mxUtils.getValue(this.style, 'size', this.size) * this.scale)); - - if (isForeground) - { - path.moveTo(w - s, 0); - path.lineTo(w - s, s); - path.lineTo(w, s); - path.end(); - } - else - { - path.moveTo(0, 0); - path.lineTo(w - s, 0); - path.lineTo(w, s); - path.lineTo(w, h); - path.lineTo(0, h); - path.lineTo(0, 0); - path.close(); - path.end(); - } - }; - - mxCellRenderer.prototype.defaultShapes['note'] = NoteShape; - - // Folder Shape, supports tabWidth, tabHeight styles - function FolderShape() { }; - FolderShape.prototype = new mxCylinder(); - FolderShape.prototype.constructor = FolderShape; - FolderShape.prototype.tabWidth = 60; - FolderShape.prototype.tabHeight = 20; - FolderShape.prototype.tabPosition = 'right'; - FolderShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) - { - var tw = mxUtils.getValue(this.style, 'tabWidth', this.tabWidth); - var th = mxUtils.getValue(this.style, 'tabHeight', this.tabHeight); - var tp = mxUtils.getValue(this.style, 'tabPosition', this.tabPosition); - var dx = Math.min(w, tw * this.scale); - var dy = Math.min(h, th * this.scale); - - if (isForeground) - { - if (tp == 'left') - { - path.moveTo(0, dy); - path.lineTo(dx, dy); - } - // Right is default - else - { - path.moveTo(w - dx, dy); - path.lineTo(w, dy); - } - - path.end(); - } - else - { - if (tp == 'left') - { - path.moveTo(0, 0); - path.lineTo(dx, 0); - path.lineTo(dx, dy); - path.lineTo(w, dy); - } - // Right is default - else - { - path.moveTo(0, dy); - path.lineTo(w - dx, dy); - path.lineTo(w - dx, 0); - path.lineTo(w, 0); - } - - path.lineTo(w, h); - path.lineTo(0, h); - path.lineTo(0, dy); - path.close(); - path.end(); - } - }; - - mxCellRenderer.prototype.defaultShapes['folder'] = FolderShape; - - // Card Shape, supports size style - function CardShape() { }; - CardShape.prototype = new mxCylinder(); - CardShape.prototype.constructor = CardShape; - CardShape.prototype.size = 30; - CardShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) - { - var s = Math.min(w, Math.min(h, mxUtils.getValue(this.style, 'size', this.size) * this.scale)); - - if (!isForeground) - { - path.moveTo(s, 0); - path.lineTo(w, 0); - path.lineTo(w, h); - path.lineTo(0, h); - path.lineTo(0, s); - path.lineTo(s, 0); - path.close(); - path.end(); - } - }; - - mxCellRenderer.prototype.defaultShapes['card'] = CardShape; - - // Tape Shape, supports size style - function TapeShape() { }; - TapeShape.prototype = new mxCylinder(); - TapeShape.prototype.constructor = TapeShape; - TapeShape.prototype.size = 0.4; - TapeShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) - { - var s = mxUtils.getValue(this.style, 'size', this.size); - var dy = h * s; - var fy = 1.4; - - if (!isForeground) - { - path.moveTo(0, dy / 2); - path.quadTo(w / 4, dy * fy, w / 2, dy / 2); - path.quadTo(w * 3 / 4, dy * (1 - fy), w, dy / 2); - path.lineTo(w, h - dy / 2); - path.quadTo(w * 3 / 4, h - dy * fy, w / 2, h - dy / 2); - path.quadTo(w / 4, h - dy * (1 - fy), 0, h - dy / 2); - path.lineTo(0, dy / 2); - path.close(); - path.end(); - } - }; - - mxCellRenderer.prototype.defaultShapes['tape'] = TapeShape; - - // Tape Shape, supports size style - function StepShape() { }; - StepShape.prototype = new mxCylinder(); - StepShape.prototype.constructor = StepShape; - StepShape.prototype.size = 0.2; - StepShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) - { - var s = w * mxUtils.getValue(this.style, 'size', this.size); - - if (!isForeground) - { - path.moveTo(0, 0); - path.lineTo(w - s, 0); - path.lineTo(w, h / 2); - path.lineTo(w - s, h); - path.lineTo(0, h); - path.lineTo(s, h / 2); - path.close(); - path.end(); - } - }; - - mxCellRenderer.prototype.defaultShapes['step'] = StepShape; - - // Tape Shape, supports size style - function PlusShape() { }; - PlusShape.prototype = new mxCylinder(); - PlusShape.prototype.constructor = PlusShape; - PlusShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) - { - var border = Math.min(w / 5, h / 5) + 1; - - if (isForeground) - { - path.moveTo(w / 2, border); - path.lineTo(w / 2, h - border); - path.moveTo(border, h / 2); - path.lineTo(w - border, h / 2); - path.end(); - } - else - { - path.moveTo(0, 0); - path.lineTo(w, 0); - path.lineTo(w, h); - path.lineTo(0, h); - path.close(); - } - }; - - mxCellRenderer.prototype.defaultShapes['plus'] = PlusShape; - - // Tape Shape, supports size style - function MessageShape() { }; - MessageShape.prototype = new mxCylinder(); - MessageShape.prototype.constructor = MessageShape; - MessageShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) - { - if (isForeground) - { - path.moveTo(0, 0); - path.lineTo(w / 2, h / 2); - path.lineTo(w, 0); - path.end(); - } - else - { - path.moveTo(0, 0); - path.lineTo(w, 0); - path.lineTo(w, h); - path.lineTo(0, h); - path.close(); - } - }; - - mxCellRenderer.prototype.defaultShapes['message'] = MessageShape; - - // New Actor Shape - function UmlActorShape() { }; - UmlActorShape.prototype = new mxCylinder(); - UmlActorShape.prototype.constructor = UmlActorShape; - UmlActorShape.prototype.addPipe = true; - UmlActorShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) - { - var width = w / 3; - var height = h / 4; - - if (!isForeground) - { - path.moveTo(w / 2, height); - path.curveTo(w / 2 - width, height, w / 2 - width, 0, w / 2, 0); - path.curveTo(w / 2 + width, 0, w / 2 + width, height, w / 2, height); - path.close(); - - path.moveTo(w / 2, height); - path.lineTo(w / 2, 2 * h / 3); - - // Arms - path.moveTo(w / 2, h / 3); - path.lineTo(0, h / 3); - path.moveTo(w / 2, h / 3); - path.lineTo(w, h / 3); - - // Legs - path.moveTo(w / 2, 2 * h / 3); - path.lineTo(0, h); - path.moveTo(w / 2, 2 * h / 3); - path.lineTo(w, h); - path.end(); - } - }; - - // Replaces existing actor shape - mxCellRenderer.prototype.defaultShapes['umlActor'] = UmlActorShape; - - // New Actor Shape - function LollipopShape() { }; - LollipopShape.prototype = new mxCylinder(); - LollipopShape.prototype.constructor = LollipopShape; - LollipopShape.prototype.size = 10; - LollipopShape.prototype.addPipe = true; - LollipopShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) - { - var ss = this.scale * mxUtils.getValue(this.style, 'size', this.size); - var width = ss * 2 / 3; - var height = ss; - - if (!isForeground) - { - path.moveTo(w / 2, height); - path.curveTo(w / 2 - width, height, w / 2 - width, 0, w / 2, 0); - path.curveTo(w / 2 + width, 0, w / 2 + width, height, w / 2, height); - path.close(); - - path.moveTo(w / 2, height); - path.lineTo(w / 2, h); - path.end(); - } - }; - - // Replaces existing actor shape - mxCellRenderer.prototype.defaultShapes['lollipop'] = LollipopShape; - - // Folder Shape, supports tabWidth, tabHeight styles - function ComponentShape() { }; - ComponentShape.prototype = new mxCylinder(); - ComponentShape.prototype.constructor = ComponentShape; - ComponentShape.prototype.jettyWidth = 32; - ComponentShape.prototype.jettyHeight = 12; - ComponentShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) - { - var jw = mxUtils.getValue(this.style, 'jettyWidth', this.jettyWidth); - var jh = mxUtils.getValue(this.style, 'jettyHeight', this.jettyHeight); - var dx = jw * this.scale; - var dy = jh * this.scale; - var x0 = dx / 2; - var x1 = x0 + dx / 2; - var y0 = 0.3 * h - dy / 2; - var y1 = 0.7 * h - dy / 2; - - if (isForeground) - { - path.moveTo(x0, y0); - path.lineTo(x1, y0); - path.lineTo(x1, y0 + dy); - path.lineTo(x0, y0 + dy); - path.moveTo(x0, y1); - path.lineTo(x1, y1); - path.lineTo(x1, y1 + dy); - path.lineTo(x0, y1 + dy); - path.end(); - } - else - { - path.moveTo(x0, 0); - path.lineTo(w, 0); - path.lineTo(w, h); - path.lineTo(x0, h); - path.lineTo(x0, y1 + dy); - path.lineTo(0, y1 + dy); - path.lineTo(0, y1); - path.lineTo(x0, y1); - path.lineTo(x0, y0 + dy); - path.lineTo(0, y0 + dy); - path.lineTo(0, y0); - path.lineTo(x0, y0); - path.close(); - path.end(); - } - }; - - mxCellRenderer.prototype.defaultShapes['component'] = ComponentShape; - - // State Shapes derives from double ellipse - function StateShape() { }; - StateShape.prototype = new mxDoubleEllipse(); - StateShape.prototype.constructor = StateShape; - StateShape.prototype.outerStroke = true; - StateShape.prototype.createSvg = function() - { - var g = mxDoubleEllipse.prototype.createSvg.apply(this, arguments); - this.foreground.setAttribute('fill', this.innerNode.getAttribute('fill')); - this.foreground.setAttribute('stroke', this.stroke); - this.innerNode.setAttribute('fill', 'none'); - this.innerNode.setAttribute('stroke', (this.outerStroke) ? this.stroke : 'none'); - - return g; - }; - StateShape.prototype.redrawSvg = function() - { - mxDoubleEllipse.prototype.redrawSvg.apply(this, arguments); - - // Workaround for visible background - this.innerNode.setAttribute('fill', 'none'); - - if (this.shadowNode != null) - { - this.shadowNode.setAttribute('cx', this.foreground.getAttribute('cx')); - this.shadowNode.setAttribute('cy', this.foreground.getAttribute('cy')); - this.shadowNode.setAttribute('rx', this.foreground.getAttribute('rx')); - this.shadowNode.setAttribute('ry', this.foreground.getAttribute('ry')); - } - }; - StateShape.prototype.createVml = function() - { - var result = mxDoubleEllipse.prototype.createVml.apply(this, arguments); - - if (this.fillNode != null) - { - this.foreground.appendChild(this.fillNode); - this.foreground.filled = 'true'; - } - - this.background.filled = 'false'; - this.background.stroked = (this.outerStroke) ? 'true' : 'false'; - - if (this.shadowNode != null) - { - this.foreground.appendChild(this.shadowNode); - } - - return result; - }; - StateShape.prototype.reconfigure = function() - { - mxShape.prototype.reconfigure.apply(this, arguments); - - if (this.dialect == mxConstants.DIALECT_SVG) - { - this.innerNode.setAttribute('fill', 'none'); - } - else if (mxUtils.isVml(this.node)) - { - this.background.filled = 'false'; - } - }; - - mxCellRenderer.prototype.defaultShapes['endState'] = StateShape; - - function StartStateShape() { }; - StartStateShape.prototype = new StateShape(); - StartStateShape.prototype.constructor = StartStateShape; - StartStateShape.prototype.outerStroke = false; - - mxCellRenderer.prototype.defaultShapes['startState'] = StartStateShape; - - // Image export for state shapes - var imageExportInitShapes = mxImageExport.prototype.initShapes; - mxImageExport.prototype.initShapes = function() - { - imageExportInitShapes.apply(this, arguments); - - function createStateShape(outerStroke) - { - return { - drawShape: function(canvas, state, bounds, background) - { - var x = bounds.x; - var y = bounds.y; - var w = bounds.width; - var h = bounds.height; - - if (background) - { - var inset = Math.min(4, Math.min(w / 5, h / 5)); - x += inset; - y += inset; - w -= 2 * inset; - h -= 2 * inset; - - if (w > 0 && h > 0) - { - canvas.ellipse(x, y, w, h); - } - - return true; - } - else - { - canvas.fillAndStroke(); - - if (outerStroke) - { - canvas.ellipse(x, y, w, h); - canvas.stroke(); - } - } - } - }; - }; - - this.shapes['endState'] = createStateShape(true); - this.shapes['startState'] = createStateShape(false); - }; - - // Custom edge shape - function LinkShape() { }; - LinkShape.prototype = new mxArrow(); - LinkShape.prototype.constructor = LinkShape; - LinkShape.prototype.enableFill = false; - LinkShape.prototype.addPipe = true; - - LinkShape.prototype.augmentBoundingBox = function(bbox) - { - bbox.grow(10 * this.scale); - - mxShape.prototype.augmentBoundingBox.apply(this, arguments); - }; - - LinkShape.prototype.redrawPath = function(path, x, y, w, h) - { - // All points are offset - path.translate.x -= x; - path.translate.y -= y; - - // Geometry of arrow - var width = 10 * this.scale; - - // Base vector (between end points) - var p0 = this.points[0]; - var pe = this.points[this.points.length - 1]; - - var dx = pe.x - p0.x; - var dy = pe.y - p0.y; - var dist = Math.sqrt(dx * dx + dy * dy); - var length = dist; - - // Computes the norm and the inverse norm - var nx = dx / dist; - var ny = dy / dist; - var basex = length * nx; - var basey = length * ny; - var floorx = width * ny/3; - var floory = -width * nx/3; - - // Computes points - var p0x = p0.x - floorx / 2; - var p0y = p0.y - floory / 2; - var p1x = p0x + floorx; - var p1y = p0y + floory; - var p2x = p1x + basex; - var p2y = p1y + basey; - var p3x = p2x + floorx; - var p3y = p2y + floory; - // p4 not needed - var p5x = p3x - 3 * floorx; - var p5y = p3y - 3 * floory; - - // LATER: Add support for n points - path.moveTo(p1x, p1y); - path.lineTo(p2x, p2y); - path.moveTo(p5x + floorx, p5y + floory); - path.lineTo(p0x, p0y); - path.end(); - }; - - mxCellRenderer.prototype.defaultShapes['link'] = LinkShape; - - // Defines custom marker - mxMarker.markers['dash'] = function(node, type, pe, nx, ny, strokewidth, size, scale, isVml) - { - nx = nx * (size + strokewidth); - ny = ny * (size + strokewidth); - - if (isVml) - { - node.setAttribute('path', 'm' + Math.floor(pe.x - nx / 2- ny / 2) + ' ' + Math.floor(pe.y - ny / 2 + nx / 2) + - ' l ' + Math.floor(pe.x + ny / 2 - 3 * nx / 2) + ' ' + Math.floor(pe.y - 3 * ny / 2 - nx / 2) + - ' e'); - } - else - { - node.setAttribute('d', 'M ' + (pe.x - nx / 2 - ny / 2) + ' ' + (pe.y - ny / 2 + nx / 2) + - ' L ' + (pe.x + ny / 2 - 3 * nx / 2) + ' ' + (pe.y - 3 * ny / 2 - nx / 2) + - ' z'); - } - - // Returns the offset for the edge - return new mxPoint(0, 0); - }; - - // Registers the marker in mxImageExport - var mxImageExportInitMarkers = mxImageExport.prototype.initMarkers; - mxImageExport.prototype.initMarkers = function() - { - mxImageExportInitMarkers.apply(this, arguments); - - this.markers['dash'] = function(canvas, state, type, pe, unitX, unitY, size, source, sw) - { - nx = unitX * (size + sw); - ny = unitY * (size + sw); - - canvas.begin(); - canvas.moveTo(pe.x - nx / 2 - ny / 2, pe.y - ny / 2 + nx / 2); - canvas.lineTo(pe.x + ny / 2 - 3 * nx / 2, pe.y - 3 * ny / 2 - nx / 2); - canvas.stroke(); - - // Returns the offset for the edge - return new mxPoint(0, 0); - }; - }; - - // Enables crisp rendering in SVG except for connectors, actors, cylinder, - // ellipses must be enabled after rendering the sidebar items - mxShape.prototype.crisp = true; - mxShape.prototype.roundedCrispSvg = false; - mxActor.prototype.crisp = false; - mxCylinder.prototype.crisp = false; - mxEllipse.prototype.crisp = false; - mxDoubleEllipse.prototype.crisp = false; - mxConnector.prototype.crisp = false; - FolderShape.prototype.crisp = true; - ComponentShape.prototype.crisp = true; - - // Implements custom handlers - var SPECIAL_HANDLE_INDEX = -99; - - var handlers = {'swimlane': mxSwimlaneHandler, 'folder': mxFolderHandler, 'cube': mxCubeHandler, - 'card': mxCardHandler, 'note': mxNoteHandler, 'step': mxStepHandler, 'tape': mxTapeHandler}; - - Graph.prototype.createHandler = function(state) - { - if (state != null) - { - var ctor = handlers[state.style['shape']]; - - if (ctor != null) - { - return new ctor(state); - } - } - - return mxGraph.prototype.createHandler.apply(this, arguments); - }; - - // Swimlane handler - function mxSwimlaneHandler(state) - { - mxVertexHandler.call(this, state); - }; - - mxUtils.extend(mxSwimlaneHandler, mxVertexHandler); - - mxSwimlaneHandler.prototype.useGridForSpecialHandle = false; - - mxSwimlaneHandler.prototype.init = function() - { - this.horizontal = mxUtils.getValue(this.state.style, mxConstants.STYLE_HORIZONTAL, true); - var graph = this.state.view.graph; - var size = 10; - var bounds = new mxRectangle(0, 0, size, size); - this.specialHandle = new mxRhombus(bounds, mxConstants.HANDLE_FILLCOLOR, mxConstants.HANDLE_STROKECOLOR); - this.specialHandle.crisp = this.crisp; - this.specialHandle.dialect = (graph.dialect != mxConstants.DIALECT_SVG) ? - mxConstants.DIALECT_VML : mxConstants.DIALECT_SVG; - this.specialHandle.init(graph.getView().getOverlayPane()); - this.specialHandle.node.style.cursor = this.getSpecialHandleCursor(); - - mxEvent.redirectMouseEvents(this.specialHandle.node, graph, this.state); - mxVertexHandler.prototype.init.apply(this, arguments); - }; - - mxSwimlaneHandler.prototype.getSpecialHandleCursor = function() - { - return (this.horizontal) ? 'n-resize' : 'w-resize'; - }; - - mxSwimlaneHandler.prototype.redraw = function() - { - mxVertexHandler.prototype.redraw.apply(this, arguments); - - var size = this.specialHandle.bounds.width; - this.specialHandle.bounds = this.getSpecialHandleBounds(size); - this.specialHandle.redraw(); - }; - - mxSwimlaneHandler.prototype.getSpecialHandleBounds = function(size) - { - var scale = this.graph.getView().scale; - var start = this.state.view.graph.getStartSize(this.state.cell); - - if (this.horizontal) - { - return new mxRectangle(this.state.x + (this.state.width - size) / 2, - this.state.y + start.height * scale - size / 2, size, size); - } - else - { - return new mxRectangle(this.state.x + start.width * scale - size / 2, - this.state.y + (this.state.height - size) / 2, size, size); - } - }; - - mxSwimlaneHandler.prototype.destroy = function() - { - mxVertexHandler.prototype.destroy.apply(this, arguments); - - if (this.specialHandle != null) - { - this.specialHandle.destroy(); - this.specialHandle = null; - } - }; - - mxSwimlaneHandler.prototype.getHandleForEvent = function(me) - { - if (me.isSource(this.specialHandle)) - { - return SPECIAL_HANDLE_INDEX; - } - - return mxVertexHandler.prototype.getHandleForEvent.apply(this, arguments); - }; - - mxSwimlaneHandler.prototype.constrainPoint = function(point) - { - point.x = Math.max(this.state.x, Math.min(this.state.x + this.state.width, point.x)); - point.y = Math.max(this.state.y, Math.min(this.state.y + this.state.height, point.y)); - }; - - mxSwimlaneHandler.prototype.mouseMove = function(sender, me) - { - if (!me.isConsumed() && this.index == SPECIAL_HANDLE_INDEX) - { - var point = new mxPoint(me.getGraphX(), me.getGraphY()); - this.constrainPoint(point); - var gridEnabled = this.graph.isGridEnabledEvent(me.getEvent()); - var scale = this.graph.getView().scale; - - if (gridEnabled && this.useGridForSpecialHandle) - { - point.x = this.graph.snap(point.x / scale) * scale; - point.y = this.graph.snap(point.y / scale) * scale; - } - - this.updateStyle(point); - this.moveSizerTo(this.specialHandle, point.x, point.y); - this.state.view.graph.cellRenderer.redraw(this.state, true); - me.consume(); - } - else - { - mxVertexHandler.prototype.mouseMove.apply(this, arguments); - } - }; - - mxSwimlaneHandler.prototype.updateStyle = function(point) - { - var startSize = 0; - - if (this.horizontal) - { - point.x = this.state.x + this.state.width / 2; - startSize = point.y - this.state.y; - } - else - { - point.y = this.state.y + this.state.height / 2; - startSize = point.x - this.state.x; - } - - var scale = this.graph.getView().scale; - this.state.style['startSize'] = Math.round(Math.max(1, startSize) / scale); - }; - - mxSwimlaneHandler.prototype.mouseUp = function(sender, me) - { - if (!me.isConsumed() && this.index == SPECIAL_HANDLE_INDEX) - { - this.applyStyle(); - this.reset(); - me.consume(); - } - else - { - mxVertexHandler.prototype.mouseUp.apply(this, arguments); - } - }; - - mxSwimlaneHandler.prototype.applyStyle = function() - { - this.state.view.graph.setCellStyles('startSize', this.state.style['startSize'], [this.state.cell]); - }; - - // Folder Handler - function mxFolderHandler(state) - { - mxSwimlaneHandler.call(this, state); - }; - - mxUtils.extend(mxFolderHandler, mxSwimlaneHandler); - - mxFolderHandler.prototype.getSpecialHandleCursor = function() - { - return 'default'; - }; - - mxFolderHandler.prototype.getSpecialHandleBounds = function(size) - { - var rotation = Number(this.state.style[mxConstants.STYLE_ROTATION] || '0'); - var direction = mxUtils.getValue(this.state.style, 'direction', 'east'); - - if (direction != null) - { - if (direction == 'north') - { - rotation += 270; - } - else if (direction == 'west') - { - rotation += 180; - } - else if (direction == 'south') - { - rotation += 90; - } - } - - var alpha = mxUtils.toRadians(rotation); - var cos = Math.cos(alpha); - var sin = Math.sin(alpha); - - var bounds = new mxRectangle(this.state.x, this.state.y, this.state.width, this.state.height); - - if (direction == 'south' || direction == 'north') - { - bounds.x += (bounds.width - bounds.height) / 2; - bounds.y += (bounds.height - bounds.width) / 2; - var tmp = bounds.width; - bounds.width = bounds.height; - bounds.height = tmp; - } - - var pt = this.getSpecialHandlePoint(bounds); - pt = mxUtils.getRotatedPoint(pt, cos, sin, - new mxPoint(this.state.getCenterX(), this.state.getCenterY())); - - return new mxRectangle(pt.x - size / 2, pt.y - size / 2, size, size); - }; - - mxFolderHandler.prototype.getSpecialHandlePoint = function(bounds) - { - var scale = this.graph.getView().scale; - var tw = Math.min(bounds.width, mxUtils.getValue(this.state.style, 'tabWidth', 60) * scale); - var th = Math.min(bounds.height, mxUtils.getValue(this.state.style, 'tabHeight', 20) * scale); - - var tp = mxUtils.getValue(this.state.style, 'tabPosition', 'right'); - var x = (tp == 'left') ? bounds.x + tw : bounds.x + bounds.width - tw; - - return new mxPoint(x, bounds.y + th); - }; - - mxFolderHandler.prototype.updateStyle = function(point) - { - var direction = mxUtils.getValue(this.state.style, 'direction', 'east'); - var rotation = Number(this.state.style[mxConstants.STYLE_ROTATION] || '0'); - - if (direction != null) - { - if (direction == 'north') - { - rotation += 270; - } - else if (direction == 'west') - { - rotation += 180; - } - else if (direction == 'south') - { - rotation += 90; - } - } - - var alpha = mxUtils.toRadians(rotation); - var cos = Math.cos(-alpha); - var sin = Math.sin(-alpha); - - var bounds = new mxRectangle(this.state.x, this.state.y, this.state.width, this.state.height); - - if (direction == 'south' || direction == 'north') - { - bounds.x += (bounds.width - bounds.height) / 2; - bounds.y += (bounds.height - bounds.width) / 2; - var tmp = bounds.width; - bounds.width = bounds.height; - bounds.height = tmp; - } - - var pt = new mxPoint(point.x, point.y); - pt = mxUtils.getRotatedPoint(pt, cos, sin, - new mxPoint(this.state.getCenterX(), this.state.getCenterY())); - - var result = this.updateStyleUnrotated(pt, bounds); - - // Modifies point to use rotated coordinates of return value - if (result != null) - { - cos = Math.cos(alpha); - sin = Math.sin(alpha); - result = mxUtils.getRotatedPoint(result, cos, sin, - new mxPoint(this.state.getCenterX(), this.state.getCenterY())); - point.x = result.x; - point.y = result.y; - } - }; - - mxFolderHandler.prototype.updateStyleUnrotated = function(pt, bounds) - { - var tp = mxUtils.getValue(this.state.style, 'tabPosition', 'right'); - var tw = (tp == 'left') ? pt.x - bounds.x : bounds.x + bounds.width - pt.x; - var th = pt.y - bounds.y; - - var scale = this.graph.getView().scale; - this.state.style['tabWidth'] = Math.round(Math.max(1, tw) / scale); - this.state.style['tabHeight'] = Math.round(Math.max(1, th) / scale); - }; - - mxFolderHandler.prototype.applyStyle = function() - { - var model = this.graph.getModel(); - model.beginUpdate(); - try - { - this.state.view.graph.setCellStyles('tabWidth', this.state.style['tabWidth'], [this.state.cell]); - this.state.view.graph.setCellStyles('tabHeight', this.state.style['tabHeight'], [this.state.cell]); - } - finally - { - model.endUpdate(); - } - }; - - // Cube Handler - function mxCubeHandler(state) - { - mxFolderHandler.call(this, state); - }; - - mxUtils.extend(mxCubeHandler, mxFolderHandler); - - mxCubeHandler.prototype.defaultValue = 20; - - mxCubeHandler.prototype.scaleFactor = 1; - - mxCubeHandler.prototype.getSpecialHandlePoint = function(bounds) - { - var scale = this.graph.getView().scale; - var sz = Math.min(bounds.width, Math.min(bounds.height, - mxUtils.getValue(this.state.style, 'size', this.defaultValue) * scale / this.scaleFactor)); - - return new mxPoint(bounds.x + sz, bounds.y + sz); - }; - - mxCubeHandler.prototype.updateStyleUnrotated = function(pt, bounds) - { - var size = Math.min(Math.min(bounds.width / this.scaleFactor, pt.x - bounds.x), - Math.min(bounds.height / this.scaleFactor, pt.y - bounds.y)); - var scale = this.graph.getView().scale; - this.state.style['size'] = Math.round(Math.max(1, size) / scale) * this.scaleFactor; - - // Stays on the diagonal - return new mxPoint(bounds.x + size, bounds.y + size); - }; - - mxCubeHandler.prototype.applyStyle = function() - { - this.state.view.graph.setCellStyles('size', this.state.style['size'], [this.state.cell]); - }; - - // Card Handler - function mxCardHandler(state) - { - mxCubeHandler.call(this, state); - }; - - mxUtils.extend(mxCardHandler, mxCubeHandler); - - mxCardHandler.prototype.defaultValue = 30; - - mxCardHandler.prototype.scaleFactor = 2; - - // Note Handler - function mxNoteHandler(state) - { - mxCubeHandler.call(this, state); - }; - - mxUtils.extend(mxNoteHandler, mxCubeHandler); - - mxNoteHandler.prototype.defaultValue = 30; - - mxNoteHandler.prototype.scaleFactor = 1; - - mxNoteHandler.prototype.getSpecialHandlePoint = function(bounds) - { - var scale = this.graph.getView().scale; - var sz = Math.min(bounds.width, Math.min(bounds.height, - mxUtils.getValue(this.state.style, 'size', this.defaultValue) * scale / this.scaleFactor)); - - return new mxPoint(bounds.x + bounds.width - sz, bounds.y + sz); - }; - - mxNoteHandler.prototype.updateStyleUnrotated = function(pt, bounds) - { - var size = Math.min(Math.min(bounds.width / this.scaleFactor, pt.x - bounds.x + bounds.width), - Math.min(bounds.height / this.scaleFactor, pt.y - bounds.y)); - var scale = this.graph.getView().scale; - this.state.style['size'] = Math.round(Math.max(1, size) / scale) * this.scaleFactor; - - // Stays on the diagonal - return new mxPoint(bounds.x + bounds.width - size, bounds.y + size); - }; - - // Step Handler - function mxStepHandler(state) - { - mxCubeHandler.call(this, state); - }; - - mxUtils.extend(mxStepHandler, mxCubeHandler); - - mxStepHandler.prototype.defaultValue = 0.2; - - mxStepHandler.prototype.scaleFactor = 1; - - mxStepHandler.prototype.getSpecialHandlePoint = function(bounds) - { - var sz = mxUtils.getValue(this.state.style, 'size', this.defaultValue); - - return new mxPoint(bounds.x + bounds.width * sz, bounds.y + bounds.height / 2); - }; - - mxStepHandler.prototype.updateStyleUnrotated = function(pt, bounds) - { - var size = Math.min(1, (pt.x - bounds.x) / bounds.width); - this.state.style['size'] = size; - - return new mxPoint(bounds.x + size * bounds.width, bounds.y + bounds.height / 2); - }; - - // Tape Handler - function mxTapeHandler(state) - { - mxCubeHandler.call(this, state); - }; - - mxUtils.extend(mxTapeHandler, mxCubeHandler); - - mxTapeHandler.prototype.defaultValue = 0.4; - - mxTapeHandler.prototype.scaleFactor = 1; - - mxTapeHandler.prototype.getSpecialHandlePoint = function(bounds) - { - var sz = mxUtils.getValue(this.state.style, 'size', this.defaultValue); - - return new mxPoint(bounds.x + bounds.width / 2, bounds.y + sz * bounds.height / 2); - }; - - mxTapeHandler.prototype.updateStyleUnrotated = function(pt, bounds) - { - var size = Math.min(1, ((pt.y - bounds.y) / bounds.height) * 2); - this.state.style['size'] = size; - - return new mxPoint(bounds.x + bounds.width / 2, bounds.y + size * bounds.height / 2); - }; - - // Constraints - mxGraph.prototype.getAllConnectionConstraints = function(terminal, source) - { - if (terminal != null && terminal.shape != null) - { - if (terminal.shape instanceof mxStencilShape) - { - if (terminal.shape.stencil != null) - { - return terminal.shape.stencil.constraints; - } - } - else if (terminal.shape.constraints != null) - { - return terminal.shape.constraints; - } - } - - return null; - }; - - mxRectangleShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0), true), - new mxConnectionConstraint(new mxPoint(0.5, 0), true), - new mxConnectionConstraint(new mxPoint(0.75, 0), true), - new mxConnectionConstraint(new mxPoint(0, 0.25), true), - new mxConnectionConstraint(new mxPoint(0, 0.5), true), - new mxConnectionConstraint(new mxPoint(0, 0.75), true), - new mxConnectionConstraint(new mxPoint(1, 0.25), true), - new mxConnectionConstraint(new mxPoint(1, 0.5), true), - new mxConnectionConstraint(new mxPoint(1, 0.75), true), - new mxConnectionConstraint(new mxPoint(0.25, 1), true), - new mxConnectionConstraint(new mxPoint(0.5, 1), true), - new mxConnectionConstraint(new mxPoint(0.75, 1), true)]; - mxLabel.prototype.constraints = mxRectangleShape.prototype.constraints; - mxImageShape.prototype.constraints = mxRectangleShape.prototype.constraints; - mxSwimlane.prototype.constraints = mxRectangleShape.prototype.constraints; - PlusShape.prototype.constraints = mxRectangleShape.prototype.constraints; - NoteShape.prototype.constraints = mxRectangleShape.prototype.constraints; - CardShape.prototype.constraints = mxRectangleShape.prototype.constraints; - CubeShape.prototype.constraints = mxRectangleShape.prototype.constraints; - FolderShape.prototype.constraints = mxRectangleShape.prototype.constraints; - mxCylinder.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.15, 0.05), false), - new mxConnectionConstraint(new mxPoint(0.5, 0), true), - new mxConnectionConstraint(new mxPoint(0.85, 0.05), false), - new mxConnectionConstraint(new mxPoint(0, 0.3), true), - new mxConnectionConstraint(new mxPoint(0, 0.5), true), - new mxConnectionConstraint(new mxPoint(0, 0.7), true), - new mxConnectionConstraint(new mxPoint(1, 0.3), true), - new mxConnectionConstraint(new mxPoint(1, 0.5), true), - new mxConnectionConstraint(new mxPoint(1, 0.7), true), - new mxConnectionConstraint(new mxPoint(0.15, 0.95), false), - new mxConnectionConstraint(new mxPoint(0.5, 1), true), - new mxConnectionConstraint(new mxPoint(0.85, 0.95), false)]; - UmlActorShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0), true), - new mxConnectionConstraint(new mxPoint(0.5, 0), true), - new mxConnectionConstraint(new mxPoint(0.75, 0), true), - new mxConnectionConstraint(new mxPoint(0, 0.25), true), - new mxConnectionConstraint(new mxPoint(0, 0.5), true), - new mxConnectionConstraint(new mxPoint(0, 0.75), true), - new mxConnectionConstraint(new mxPoint(1, 0.25), true), - new mxConnectionConstraint(new mxPoint(1, 0.5), true), - new mxConnectionConstraint(new mxPoint(1, 0.75), true), - new mxConnectionConstraint(new mxPoint(0.25, 1), true), - new mxConnectionConstraint(new mxPoint(0.5, 1), true), - new mxConnectionConstraint(new mxPoint(0.75, 1), true)]; - ComponentShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0), true), - new mxConnectionConstraint(new mxPoint(0.5, 0), true), - new mxConnectionConstraint(new mxPoint(0.75, 0), true), - new mxConnectionConstraint(new mxPoint(0, 0.3), true), - new mxConnectionConstraint(new mxPoint(0, 0.7), true), - new mxConnectionConstraint(new mxPoint(1, 0.25), true), - new mxConnectionConstraint(new mxPoint(1, 0.5), true), - new mxConnectionConstraint(new mxPoint(1, 0.75), true), - new mxConnectionConstraint(new mxPoint(0.25, 1), true), - new mxConnectionConstraint(new mxPoint(0.5, 1), true), - new mxConnectionConstraint(new mxPoint(0.75, 1), true)]; - mxActor.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.5, 0), true), - new mxConnectionConstraint(new mxPoint(0.25, 0.2), false), - new mxConnectionConstraint(new mxPoint(0.1, 0.5), false), - new mxConnectionConstraint(new mxPoint(0, 0.75), true), - new mxConnectionConstraint(new mxPoint(0.75, 0.25), false), - new mxConnectionConstraint(new mxPoint(0.9, 0.5), false), - new mxConnectionConstraint(new mxPoint(1, 0.75), true), - new mxConnectionConstraint(new mxPoint(0.25, 1), true), - new mxConnectionConstraint(new mxPoint(0.5, 1), true), - new mxConnectionConstraint(new mxPoint(0.75, 1), true)]; - TapeShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0.35), false), - new mxConnectionConstraint(new mxPoint(0, 0.5), false), - new mxConnectionConstraint(new mxPoint(0, 0.65), false), - new mxConnectionConstraint(new mxPoint(1, 0.35), false), - new mxConnectionConstraint(new mxPoint(1, 0.5), false), - new mxConnectionConstraint(new mxPoint(1, 0.65), false), - new mxConnectionConstraint(new mxPoint(0.25, 1), false), - new mxConnectionConstraint(new mxPoint(0.75, 0), false)]; - // TODO: Relative ports - StepShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0), true), - new mxConnectionConstraint(new mxPoint(0.5, 0), true), - new mxConnectionConstraint(new mxPoint(0.75, 0), true), - new mxConnectionConstraint(new mxPoint(0.25, 1), true), - new mxConnectionConstraint(new mxPoint(0.5, 1), true), - new mxConnectionConstraint(new mxPoint(0.75, 1), true), - new mxConnectionConstraint(new mxPoint(0.1, 0.25), false), - new mxConnectionConstraint(new mxPoint(0.2, 0.5), false), - new mxConnectionConstraint(new mxPoint(0.1, 0.75), false), - new mxConnectionConstraint(new mxPoint(0.9, 0.25), false), - new mxConnectionConstraint(new mxPoint(1, 0.5), false), - new mxConnectionConstraint(new mxPoint(0.9, 0.75), false)]; - mxLine.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0.5), false), - new mxConnectionConstraint(new mxPoint(0.25, 0.5), false), - new mxConnectionConstraint(new mxPoint(0.75, 0.5), false), - new mxConnectionConstraint(new mxPoint(1, 0.5), false)]; - LollipopShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.5, 0), false), - new mxConnectionConstraint(new mxPoint(0.5, 1), false)]; - mxEllipse.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0), true), new mxConnectionConstraint(new mxPoint(1, 0), true), - new mxConnectionConstraint(new mxPoint(0, 1), true), new mxConnectionConstraint(new mxPoint(1, 1), true), - new mxConnectionConstraint(new mxPoint(0.5, 0), true), new mxConnectionConstraint(new mxPoint(0.5, 1), true), - new mxConnectionConstraint(new mxPoint(0, 0.5), true), new mxConnectionConstraint(new mxPoint(1, 0.5))]; - mxDoubleEllipse.prototype.constraints = mxEllipse.prototype.constraints; - mxRhombus.prototype.constraints = mxEllipse.prototype.constraints; - mxTriangle.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0.25), true), - new mxConnectionConstraint(new mxPoint(0, 0.5), true), - new mxConnectionConstraint(new mxPoint(0, 0.75), true), - new mxConnectionConstraint(new mxPoint(0.5, 0), true), - new mxConnectionConstraint(new mxPoint(0.5, 1), true), - new mxConnectionConstraint(new mxPoint(1, 0.5), true)]; - mxHexagon.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.375, 0), true), - new mxConnectionConstraint(new mxPoint(0.5, 0), true), - new mxConnectionConstraint(new mxPoint(0.625, 0), true), - new mxConnectionConstraint(new mxPoint(0.125, 0.25), false), - new mxConnectionConstraint(new mxPoint(0, 0.5), true), - new mxConnectionConstraint(new mxPoint(0.125, 0.75), false), - new mxConnectionConstraint(new mxPoint(0.875, 0.25), false), - new mxConnectionConstraint(new mxPoint(0, 0.5), true), - new mxConnectionConstraint(new mxPoint(1, 0.5), true), - new mxConnectionConstraint(new mxPoint(0.875, 0.75), false), - new mxConnectionConstraint(new mxPoint(0.375, 1), true), - new mxConnectionConstraint(new mxPoint(0.5, 1), true), - new mxConnectionConstraint(new mxPoint(0.625, 1), true)]; - mxCloud.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0.25), false), - new mxConnectionConstraint(new mxPoint(0.4, 0.1), false), - new mxConnectionConstraint(new mxPoint(0.16, 0.55), false), - new mxConnectionConstraint(new mxPoint(0.07, 0.4), false), - new mxConnectionConstraint(new mxPoint(0.31, 0.8), false), - new mxConnectionConstraint(new mxPoint(0.13, 0.77), false), - new mxConnectionConstraint(new mxPoint(0.8, 0.8), false), - new mxConnectionConstraint(new mxPoint(0.55, 0.95), false), - new mxConnectionConstraint(new mxPoint(0.875, 0.5), false), - new mxConnectionConstraint(new mxPoint(0.96, 0.7), false), - new mxConnectionConstraint(new mxPoint(0.625, 0.2), false), - new mxConnectionConstraint(new mxPoint(0.88, 0.25), false)]; - mxArrow.prototype.constraints = null; })(); diff --git a/javascript/examples/grapheditor/www/js/Menus.js b/javascript/examples/grapheditor/www/js/Menus.js index 39bdf7b21..679d1fe99 100644 --- a/javascript/examples/grapheditor/www/js/Menus.js +++ b/javascript/examples/grapheditor/www/js/Menus.js @@ -1,5 +1,5 @@ /** - * $Id: Menus.js,v 1.51 2012-06-30 05:51:20 gaudenz Exp $ + * $Id: Menus.js,v 1.54 2012-07-31 13:15:57 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ /** @@ -291,6 +291,7 @@ Menus.prototype.init = function() this.put('edit', new Menu(mxUtils.bind(this, function(menu, parent) { this.addMenuItems(menu, ['undo', 'redo', '-', 'cut', 'copy', 'paste', 'delete', '-', 'duplicate', '-', + 'editLink', 'openLink', '-', 'selectVertices', 'selectEdges', 'selectAll', '-', 'setAsDefaultEdge']); }))); this.put('options', new Menu(mxUtils.bind(this, function(menu, parent) @@ -527,7 +528,7 @@ Menus.prototype.createPopupMenu = function(menu, cell, evt) this.addMenuItems(menu, ['toFront', 'toBack', '-']); this.addSubmenu('linewidth', menu); - if (graph.getSelectionCount() > 0 && graph.getModel().isEdge(graph.getSelectionCell())) + if (graph.getModel().isEdge(graph.getSelectionCell())) { this.addSubmenu('line', menu); menu.addSeparator(); @@ -543,15 +544,24 @@ Menus.prototype.createPopupMenu = function(menu, cell, evt) } else { - if (graph.getSelectionCount() == 1 && graph.getModel().isVertex(graph.getSelectionCell())) - { - menu.addSeparator(); - this.addMenuItems(menu, ['rotate']); - } menu.addSeparator(); this.addSubmenu('layout', menu); } + + menu.addSeparator(); + + if (graph.getSelectionCount() == 1) + { + this.addMenuItems(menu, ['editLink']); + + var link = graph.getLinkForCell(graph.getSelectionCell()); + + if (link != null) + { + this.addMenuItems(menu, ['openLink']); + } + } } else { diff --git a/javascript/examples/grapheditor/www/js/Shapes.js b/javascript/examples/grapheditor/www/js/Shapes.js new file mode 100644 index 000000000..2a26e91f9 --- /dev/null +++ b/javascript/examples/grapheditor/www/js/Shapes.js @@ -0,0 +1,1239 @@ +/** + * $Id: Shapes.js,v 1.2 2012-07-29 10:40:38 gaudenz Exp $ + * Copyright (c) 2006-2012, JGraph Ltd + */ + +/** + * Registers shapes. + */ +(function() +{ + // Cube Shape, supports size style + function CubeShape() { }; + CubeShape.prototype = new mxCylinder(); + CubeShape.prototype.constructor = CubeShape; + CubeShape.prototype.size = 20; + CubeShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) + { + var s = Math.min(w, Math.min(h, mxUtils.getValue(this.style, 'size', this.size) * this.scale)); + + if (isForeground) + { + path.moveTo(s, h); + path.lineTo(s, s); + path.lineTo(0, 0); + path.moveTo(s, s); + path.lineTo(w, s); + path.end(); + } + else + { + path.moveTo(0, 0); + path.lineTo(w - s, 0); + path.lineTo(w, s); + path.lineTo(w, h); + path.lineTo(s, h); + path.lineTo(0, h - s); + path.lineTo(0, 0); + path.close(); + path.end(); + } + }; + + mxCellRenderer.prototype.defaultShapes['cube'] = CubeShape; + + // Note Shape, supports size style + function NoteShape() { }; + NoteShape.prototype = new mxCylinder(); + NoteShape.prototype.constructor = NoteShape; + NoteShape.prototype.size = 30; + NoteShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) + { + var s = Math.min(w, Math.min(h, mxUtils.getValue(this.style, 'size', this.size) * this.scale)); + + if (isForeground) + { + path.moveTo(w - s, 0); + path.lineTo(w - s, s); + path.lineTo(w, s); + path.end(); + } + else + { + path.moveTo(0, 0); + path.lineTo(w - s, 0); + path.lineTo(w, s); + path.lineTo(w, h); + path.lineTo(0, h); + path.lineTo(0, 0); + path.close(); + path.end(); + } + }; + + mxCellRenderer.prototype.defaultShapes['note'] = NoteShape; + + // Folder Shape, supports tabWidth, tabHeight styles + function FolderShape() { }; + FolderShape.prototype = new mxCylinder(); + FolderShape.prototype.constructor = FolderShape; + FolderShape.prototype.tabWidth = 60; + FolderShape.prototype.tabHeight = 20; + FolderShape.prototype.tabPosition = 'right'; + FolderShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) + { + var tw = mxUtils.getValue(this.style, 'tabWidth', this.tabWidth); + var th = mxUtils.getValue(this.style, 'tabHeight', this.tabHeight); + var tp = mxUtils.getValue(this.style, 'tabPosition', this.tabPosition); + var dx = Math.min(w, tw * this.scale); + var dy = Math.min(h, th * this.scale); + + if (isForeground) + { + if (tp == 'left') + { + path.moveTo(0, dy); + path.lineTo(dx, dy); + } + // Right is default + else + { + path.moveTo(w - dx, dy); + path.lineTo(w, dy); + } + + path.end(); + } + else + { + if (tp == 'left') + { + path.moveTo(0, 0); + path.lineTo(dx, 0); + path.lineTo(dx, dy); + path.lineTo(w, dy); + } + // Right is default + else + { + path.moveTo(0, dy); + path.lineTo(w - dx, dy); + path.lineTo(w - dx, 0); + path.lineTo(w, 0); + } + + path.lineTo(w, h); + path.lineTo(0, h); + path.lineTo(0, dy); + path.close(); + path.end(); + } + }; + + mxCellRenderer.prototype.defaultShapes['folder'] = FolderShape; + + // Card Shape, supports size style + function CardShape() { }; + CardShape.prototype = new mxCylinder(); + CardShape.prototype.constructor = CardShape; + CardShape.prototype.size = 30; + CardShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) + { + var s = Math.min(w, Math.min(h, mxUtils.getValue(this.style, 'size', this.size) * this.scale)); + + if (!isForeground) + { + path.moveTo(s, 0); + path.lineTo(w, 0); + path.lineTo(w, h); + path.lineTo(0, h); + path.lineTo(0, s); + path.lineTo(s, 0); + path.close(); + path.end(); + } + }; + + mxCellRenderer.prototype.defaultShapes['card'] = CardShape; + + // Tape Shape, supports size style + function TapeShape() { }; + TapeShape.prototype = new mxCylinder(); + TapeShape.prototype.constructor = TapeShape; + TapeShape.prototype.size = 0.4; + TapeShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) + { + var s = mxUtils.getValue(this.style, 'size', this.size); + var dy = h * s; + var fy = 1.4; + + if (!isForeground) + { + path.moveTo(0, dy / 2); + path.quadTo(w / 4, dy * fy, w / 2, dy / 2); + path.quadTo(w * 3 / 4, dy * (1 - fy), w, dy / 2); + path.lineTo(w, h - dy / 2); + path.quadTo(w * 3 / 4, h - dy * fy, w / 2, h - dy / 2); + path.quadTo(w / 4, h - dy * (1 - fy), 0, h - dy / 2); + path.lineTo(0, dy / 2); + path.close(); + path.end(); + } + }; + + mxCellRenderer.prototype.defaultShapes['tape'] = TapeShape; + + // Tape Shape, supports size style + function StepShape() { }; + StepShape.prototype = new mxCylinder(); + StepShape.prototype.constructor = StepShape; + StepShape.prototype.size = 0.2; + StepShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) + { + var s = w * mxUtils.getValue(this.style, 'size', this.size); + + if (!isForeground) + { + path.moveTo(0, 0); + path.lineTo(w - s, 0); + path.lineTo(w, h / 2); + path.lineTo(w - s, h); + path.lineTo(0, h); + path.lineTo(s, h / 2); + path.close(); + path.end(); + } + }; + + mxCellRenderer.prototype.defaultShapes['step'] = StepShape; + + // Tape Shape, supports size style + function PlusShape() { }; + PlusShape.prototype = new mxCylinder(); + PlusShape.prototype.constructor = PlusShape; + PlusShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) + { + var border = Math.min(w / 5, h / 5) + 1; + + if (isForeground) + { + path.moveTo(w / 2, border); + path.lineTo(w / 2, h - border); + path.moveTo(border, h / 2); + path.lineTo(w - border, h / 2); + path.end(); + } + else + { + path.moveTo(0, 0); + path.lineTo(w, 0); + path.lineTo(w, h); + path.lineTo(0, h); + path.close(); + } + }; + + mxCellRenderer.prototype.defaultShapes['plus'] = PlusShape; + + // Tape Shape, supports size style + function MessageShape() { }; + MessageShape.prototype = new mxCylinder(); + MessageShape.prototype.constructor = MessageShape; + MessageShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) + { + if (isForeground) + { + path.moveTo(0, 0); + path.lineTo(w / 2, h / 2); + path.lineTo(w, 0); + path.end(); + } + else + { + path.moveTo(0, 0); + path.lineTo(w, 0); + path.lineTo(w, h); + path.lineTo(0, h); + path.close(); + } + }; + + mxCellRenderer.prototype.defaultShapes['message'] = MessageShape; + + // New Actor Shape + function UmlActorShape() { }; + UmlActorShape.prototype = new mxCylinder(); + UmlActorShape.prototype.constructor = UmlActorShape; + UmlActorShape.prototype.addPipe = true; + UmlActorShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) + { + var width = w / 3; + var height = h / 4; + + if (!isForeground) + { + path.moveTo(w / 2, height); + path.curveTo(w / 2 - width, height, w / 2 - width, 0, w / 2, 0); + path.curveTo(w / 2 + width, 0, w / 2 + width, height, w / 2, height); + path.close(); + + path.moveTo(w / 2, height); + path.lineTo(w / 2, 2 * h / 3); + + // Arms + path.moveTo(w / 2, h / 3); + path.lineTo(0, h / 3); + path.moveTo(w / 2, h / 3); + path.lineTo(w, h / 3); + + // Legs + path.moveTo(w / 2, 2 * h / 3); + path.lineTo(0, h); + path.moveTo(w / 2, 2 * h / 3); + path.lineTo(w, h); + path.end(); + } + }; + + // Replaces existing actor shape + mxCellRenderer.prototype.defaultShapes['umlActor'] = UmlActorShape; + + // New Actor Shape + function LollipopShape() { }; + LollipopShape.prototype = new mxCylinder(); + LollipopShape.prototype.constructor = LollipopShape; + LollipopShape.prototype.size = 10; + LollipopShape.prototype.addPipe = true; + LollipopShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) + { + var ss = this.scale * mxUtils.getValue(this.style, 'size', this.size); + var width = ss * 2 / 3; + var height = ss; + + if (!isForeground) + { + path.moveTo(w / 2, height); + path.curveTo(w / 2 - width, height, w / 2 - width, 0, w / 2, 0); + path.curveTo(w / 2 + width, 0, w / 2 + width, height, w / 2, height); + path.close(); + + path.moveTo(w / 2, height); + path.lineTo(w / 2, h); + path.end(); + } + }; + + // Replaces existing actor shape + mxCellRenderer.prototype.defaultShapes['lollipop'] = LollipopShape; + + // Folder Shape, supports tabWidth, tabHeight styles + function ComponentShape() { }; + ComponentShape.prototype = new mxCylinder(); + ComponentShape.prototype.constructor = ComponentShape; + ComponentShape.prototype.jettyWidth = 32; + ComponentShape.prototype.jettyHeight = 12; + ComponentShape.prototype.redrawPath = function(path, x, y, w, h, isForeground) + { + var jw = mxUtils.getValue(this.style, 'jettyWidth', this.jettyWidth); + var jh = mxUtils.getValue(this.style, 'jettyHeight', this.jettyHeight); + var dx = jw * this.scale; + var dy = jh * this.scale; + var x0 = dx / 2; + var x1 = x0 + dx / 2; + var y0 = 0.3 * h - dy / 2; + var y1 = 0.7 * h - dy / 2; + + if (isForeground) + { + path.moveTo(x0, y0); + path.lineTo(x1, y0); + path.lineTo(x1, y0 + dy); + path.lineTo(x0, y0 + dy); + path.moveTo(x0, y1); + path.lineTo(x1, y1); + path.lineTo(x1, y1 + dy); + path.lineTo(x0, y1 + dy); + path.end(); + } + else + { + path.moveTo(x0, 0); + path.lineTo(w, 0); + path.lineTo(w, h); + path.lineTo(x0, h); + path.lineTo(x0, y1 + dy); + path.lineTo(0, y1 + dy); + path.lineTo(0, y1); + path.lineTo(x0, y1); + path.lineTo(x0, y0 + dy); + path.lineTo(0, y0 + dy); + path.lineTo(0, y0); + path.lineTo(x0, y0); + path.close(); + path.end(); + } + }; + + mxCellRenderer.prototype.defaultShapes['component'] = ComponentShape; + + // State Shapes derives from double ellipse + function StateShape() { }; + StateShape.prototype = new mxDoubleEllipse(); + StateShape.prototype.constructor = StateShape; + StateShape.prototype.outerStroke = true; + StateShape.prototype.createSvg = function() + { + var g = mxDoubleEllipse.prototype.createSvg.apply(this, arguments); + this.foreground.setAttribute('fill', this.innerNode.getAttribute('fill')); + this.foreground.setAttribute('stroke', this.stroke); + this.innerNode.setAttribute('fill', 'none'); + this.innerNode.setAttribute('stroke', (this.outerStroke) ? this.stroke : 'none'); + + return g; + }; + StateShape.prototype.redrawSvg = function() + { + mxDoubleEllipse.prototype.redrawSvg.apply(this, arguments); + + // Workaround for visible background + this.innerNode.setAttribute('fill', 'none'); + + if (this.shadowNode != null) + { + this.shadowNode.setAttribute('cx', this.foreground.getAttribute('cx')); + this.shadowNode.setAttribute('cy', this.foreground.getAttribute('cy')); + this.shadowNode.setAttribute('rx', this.foreground.getAttribute('rx')); + this.shadowNode.setAttribute('ry', this.foreground.getAttribute('ry')); + } + }; + StateShape.prototype.createVml = function() + { + var result = mxDoubleEllipse.prototype.createVml.apply(this, arguments); + + if (this.fillNode != null) + { + this.foreground.appendChild(this.fillNode); + this.foreground.filled = 'true'; + } + + this.background.filled = 'false'; + this.background.stroked = (this.outerStroke) ? 'true' : 'false'; + + if (this.shadowNode != null) + { + this.foreground.appendChild(this.shadowNode); + } + + return result; + }; + StateShape.prototype.reconfigure = function() + { + mxShape.prototype.reconfigure.apply(this, arguments); + + if (this.dialect == mxConstants.DIALECT_SVG) + { + this.innerNode.setAttribute('fill', 'none'); + } + else if (mxUtils.isVml(this.node)) + { + this.background.filled = 'false'; + } + }; + + mxCellRenderer.prototype.defaultShapes['endState'] = StateShape; + + function StartStateShape() { }; + StartStateShape.prototype = new StateShape(); + StartStateShape.prototype.constructor = StartStateShape; + StartStateShape.prototype.outerStroke = false; + + mxCellRenderer.prototype.defaultShapes['startState'] = StartStateShape; + + // Image export for state shapes + var imageExportInitShapes = mxImageExport.prototype.initShapes; + mxImageExport.prototype.initShapes = function() + { + imageExportInitShapes.apply(this, arguments); + + function createStateShape(outerStroke) + { + return { + drawShape: function(canvas, state, bounds, background) + { + var x = bounds.x; + var y = bounds.y; + var w = bounds.width; + var h = bounds.height; + + if (background) + { + var inset = Math.min(4, Math.min(w / 5, h / 5)); + x += inset; + y += inset; + w -= 2 * inset; + h -= 2 * inset; + + if (w > 0 && h > 0) + { + canvas.ellipse(x, y, w, h); + } + + return true; + } + else + { + canvas.fillAndStroke(); + + if (outerStroke) + { + canvas.ellipse(x, y, w, h); + canvas.stroke(); + } + } + } + }; + }; + + this.shapes['endState'] = createStateShape(true); + this.shapes['startState'] = createStateShape(false); + }; + + // Custom edge shape + function LinkShape() { }; + LinkShape.prototype = new mxArrow(); + LinkShape.prototype.constructor = LinkShape; + LinkShape.prototype.enableFill = false; + LinkShape.prototype.addPipe = true; + + LinkShape.prototype.augmentBoundingBox = function(bbox) + { + bbox.grow(10 * this.scale); + + mxShape.prototype.augmentBoundingBox.apply(this, arguments); + }; + + LinkShape.prototype.redrawPath = function(path, x, y, w, h) + { + // All points are offset + path.translate.x -= x; + path.translate.y -= y; + + // Geometry of arrow + var width = 10 * this.scale; + + // Base vector (between end points) + var p0 = this.points[0]; + var pe = this.points[this.points.length - 1]; + + var dx = pe.x - p0.x; + var dy = pe.y - p0.y; + var dist = Math.sqrt(dx * dx + dy * dy); + var length = dist; + + // Computes the norm and the inverse norm + var nx = dx / dist; + var ny = dy / dist; + var basex = length * nx; + var basey = length * ny; + var floorx = width * ny/3; + var floory = -width * nx/3; + + // Computes points + var p0x = p0.x - floorx / 2; + var p0y = p0.y - floory / 2; + var p1x = p0x + floorx; + var p1y = p0y + floory; + var p2x = p1x + basex; + var p2y = p1y + basey; + var p3x = p2x + floorx; + var p3y = p2y + floory; + // p4 not needed + var p5x = p3x - 3 * floorx; + var p5y = p3y - 3 * floory; + + // LATER: Add support for n points + path.moveTo(p1x, p1y); + path.lineTo(p2x, p2y); + path.moveTo(p5x + floorx, p5y + floory); + path.lineTo(p0x, p0y); + path.end(); + }; + + mxCellRenderer.prototype.defaultShapes['link'] = LinkShape; + + // Defines custom marker + mxMarker.markers['dash'] = function(node, type, pe, nx, ny, strokewidth, size, scale, isVml) + { + nx = nx * (size + strokewidth); + ny = ny * (size + strokewidth); + + if (isVml) + { + node.setAttribute('path', 'm' + Math.floor(pe.x - nx / 2- ny / 2) + ' ' + Math.floor(pe.y - ny / 2 + nx / 2) + + ' l ' + Math.floor(pe.x + ny / 2 - 3 * nx / 2) + ' ' + Math.floor(pe.y - 3 * ny / 2 - nx / 2) + + ' e'); + } + else + { + node.setAttribute('d', 'M ' + (pe.x - nx / 2 - ny / 2) + ' ' + (pe.y - ny / 2 + nx / 2) + + ' L ' + (pe.x + ny / 2 - 3 * nx / 2) + ' ' + (pe.y - 3 * ny / 2 - nx / 2) + + ' z'); + } + + // Returns the offset for the edge + return new mxPoint(0, 0); + }; + + // Registers the marker in mxImageExport + var mxImageExportInitMarkers = mxImageExport.prototype.initMarkers; + mxImageExport.prototype.initMarkers = function() + { + mxImageExportInitMarkers.apply(this, arguments); + + this.markers['dash'] = function(canvas, state, type, pe, unitX, unitY, size, source, sw) + { + nx = unitX * (size + sw); + ny = unitY * (size + sw); + + canvas.begin(); + canvas.moveTo(pe.x - nx / 2 - ny / 2, pe.y - ny / 2 + nx / 2); + canvas.lineTo(pe.x + ny / 2 - 3 * nx / 2, pe.y - 3 * ny / 2 - nx / 2); + canvas.stroke(); + + // Returns the offset for the edge + return new mxPoint(0, 0); + }; + }; + + // Enables crisp rendering in SVG except for connectors, actors, cylinder, + // ellipses must be enabled after rendering the sidebar items + mxShape.prototype.crisp = true; + mxShape.prototype.roundedCrispSvg = false; + mxActor.prototype.crisp = false; + mxCylinder.prototype.crisp = false; + mxEllipse.prototype.crisp = false; + mxDoubleEllipse.prototype.crisp = false; + mxConnector.prototype.crisp = false; + FolderShape.prototype.crisp = true; + ComponentShape.prototype.crisp = true; + + // Implements custom handlers + var SPECIAL_HANDLE_INDEX = -99; + + var handlers = {'swimlane': mxSwimlaneHandler, 'folder': mxFolderHandler, 'cube': mxCubeHandler, + 'card': mxCardHandler, 'note': mxNoteHandler, 'step': mxStepHandler, 'tape': mxTapeHandler}; + + var mxGraphCreateHandler = mxGraph.prototype.createHandler; + mxGraph.prototype.createHandler = function(state) + { + if (state != null) + { + var ctor = handlers[state.style['shape']]; + + if (ctor != null) + { + return new ctor(state); + } + } + + return mxGraphCreateHandler.apply(this, arguments); + }; + + // Handlers are only added if mxVertexHandler is defined (ie. not in embedded graph) + if (typeof(mxVertexHandler) != 'undefined') + { + // Swimlane handler + function mxSwimlaneHandler(state) + { + mxVertexHandler.call(this, state); + }; + + mxUtils.extend(mxSwimlaneHandler, mxVertexHandler); + + mxSwimlaneHandler.prototype.useGridForSpecialHandle = false; + + mxSwimlaneHandler.prototype.init = function() + { + this.horizontal = mxUtils.getValue(this.state.style, mxConstants.STYLE_HORIZONTAL, true); + var graph = this.state.view.graph; + + if (this.handleImage != null) + { + var bounds = new mxRectangle(0, 0, this.handleImage.width, this.handleImage.height); + this.specialHandle = new mxImageShape(bounds, this.handleImage.src); + } + else + { + var size = 10; + var bounds = new mxRectangle(0, 0, size, size); + this.specialHandle = new mxRhombus(bounds, mxConstants.HANDLE_FILLCOLOR, mxConstants.HANDLE_STROKECOLOR); + this.specialHandle.crisp = this.crisp; + } + + this.specialHandle.dialect = (graph.dialect != mxConstants.DIALECT_SVG) ? + mxConstants.DIALECT_VML : mxConstants.DIALECT_SVG; + this.specialHandle.init(graph.getView().getOverlayPane()); + this.specialHandle.node.style.cursor = this.getSpecialHandleCursor(); + + mxEvent.redirectMouseEvents(this.specialHandle.node, graph, this.state); + mxVertexHandler.prototype.init.apply(this, arguments); + }; + + mxSwimlaneHandler.prototype.getSpecialHandleCursor = function() + { + return (this.horizontal) ? 'n-resize' : 'w-resize'; + }; + + mxSwimlaneHandler.prototype.redraw = function() + { + mxVertexHandler.prototype.redraw.apply(this, arguments); + + var size = this.specialHandle.bounds.width; + this.specialHandle.bounds = this.getSpecialHandleBounds(size); + this.specialHandle.redraw(); + }; + + mxSwimlaneHandler.prototype.getSpecialHandleBounds = function(size) + { + var scale = this.graph.getView().scale; + var start = this.state.view.graph.getStartSize(this.state.cell); + + if (this.horizontal) + { + return new mxRectangle(this.state.x + (this.state.width - size) / 2, + this.state.y + start.height * scale - size / 2, size, size); + } + else + { + return new mxRectangle(this.state.x + start.width * scale - size / 2, + this.state.y + (this.state.height - size) / 2, size, size); + } + }; + + mxSwimlaneHandler.prototype.destroy = function() + { + mxVertexHandler.prototype.destroy.apply(this, arguments); + + if (this.specialHandle != null) + { + this.specialHandle.destroy(); + this.specialHandle = null; + } + }; + + mxSwimlaneHandler.prototype.getHandleForEvent = function(me) + { + if (me.isSource(this.specialHandle)) + { + return SPECIAL_HANDLE_INDEX; + } + + return mxVertexHandler.prototype.getHandleForEvent.apply(this, arguments); + }; + + mxSwimlaneHandler.prototype.constrainPoint = function(point) + { + point.x = Math.max(this.state.x, Math.min(this.state.x + this.state.width, point.x)); + point.y = Math.max(this.state.y, Math.min(this.state.y + this.state.height, point.y)); + }; + + mxSwimlaneHandler.prototype.mouseMove = function(sender, me) + { + if (!me.isConsumed() && this.index == SPECIAL_HANDLE_INDEX) + { + var point = new mxPoint(me.getGraphX(), me.getGraphY()); + this.constrainPoint(point); + var gridEnabled = this.graph.isGridEnabledEvent(me.getEvent()); + var scale = this.graph.getView().scale; + + if (gridEnabled && this.useGridForSpecialHandle) + { + point.x = this.graph.snap(point.x / scale) * scale; + point.y = this.graph.snap(point.y / scale) * scale; + } + + this.updateStyle(point); + this.moveSizerTo(this.specialHandle, point.x, point.y); + this.state.view.graph.cellRenderer.redraw(this.state, true); + me.consume(); + } + else + { + mxVertexHandler.prototype.mouseMove.apply(this, arguments); + } + }; + + mxSwimlaneHandler.prototype.updateStyle = function(point) + { + var startSize = 0; + + if (this.horizontal) + { + point.x = this.state.x + this.state.width / 2; + startSize = point.y - this.state.y; + } + else + { + point.y = this.state.y + this.state.height / 2; + startSize = point.x - this.state.x; + } + + var scale = this.graph.getView().scale; + this.state.style['startSize'] = Math.round(Math.max(1, startSize) / scale); + }; + + mxSwimlaneHandler.prototype.mouseUp = function(sender, me) + { + if (!me.isConsumed() && this.index == SPECIAL_HANDLE_INDEX) + { + this.applyStyle(); + this.reset(); + me.consume(); + } + else + { + mxVertexHandler.prototype.mouseUp.apply(this, arguments); + } + }; + + mxSwimlaneHandler.prototype.applyStyle = function() + { + this.state.view.graph.setCellStyles('startSize', this.state.style['startSize'], [this.state.cell]); + }; + + // Folder Handler + function mxFolderHandler(state) + { + mxSwimlaneHandler.call(this, state); + }; + + mxUtils.extend(mxFolderHandler, mxSwimlaneHandler); + + mxFolderHandler.prototype.getSpecialHandleCursor = function() + { + return 'default'; + }; + + mxFolderHandler.prototype.getSpecialHandleBounds = function(size) + { + var rotation = Number(this.state.style[mxConstants.STYLE_ROTATION] || '0'); + var direction = mxUtils.getValue(this.state.style, 'direction', 'east'); + + if (direction != null) + { + if (direction == 'north') + { + rotation += 270; + } + else if (direction == 'west') + { + rotation += 180; + } + else if (direction == 'south') + { + rotation += 90; + } + } + + var alpha = mxUtils.toRadians(rotation); + var cos = Math.cos(alpha); + var sin = Math.sin(alpha); + + var bounds = new mxRectangle(this.state.x, this.state.y, this.state.width, this.state.height); + + if (direction == 'south' || direction == 'north') + { + bounds.x += (bounds.width - bounds.height) / 2; + bounds.y += (bounds.height - bounds.width) / 2; + var tmp = bounds.width; + bounds.width = bounds.height; + bounds.height = tmp; + } + + var pt = this.getSpecialHandlePoint(bounds); + pt = mxUtils.getRotatedPoint(pt, cos, sin, + new mxPoint(this.state.getCenterX(), this.state.getCenterY())); + + return new mxRectangle(pt.x - size / 2, pt.y - size / 2, size, size); + }; + + mxFolderHandler.prototype.getSpecialHandlePoint = function(bounds) + { + var scale = this.graph.getView().scale; + var tw = Math.min(bounds.width, mxUtils.getValue(this.state.style, 'tabWidth', 60) * scale); + var th = Math.min(bounds.height, mxUtils.getValue(this.state.style, 'tabHeight', 20) * scale); + + var tp = mxUtils.getValue(this.state.style, 'tabPosition', 'right'); + var x = (tp == 'left') ? bounds.x + tw : bounds.x + bounds.width - tw; + + return new mxPoint(x, bounds.y + th); + }; + + mxFolderHandler.prototype.updateStyle = function(point) + { + var direction = mxUtils.getValue(this.state.style, 'direction', 'east'); + var rotation = Number(this.state.style[mxConstants.STYLE_ROTATION] || '0'); + + if (direction != null) + { + if (direction == 'north') + { + rotation += 270; + } + else if (direction == 'west') + { + rotation += 180; + } + else if (direction == 'south') + { + rotation += 90; + } + } + + var alpha = mxUtils.toRadians(rotation); + var cos = Math.cos(-alpha); + var sin = Math.sin(-alpha); + + var bounds = new mxRectangle(this.state.x, this.state.y, this.state.width, this.state.height); + + if (direction == 'south' || direction == 'north') + { + bounds.x += (bounds.width - bounds.height) / 2; + bounds.y += (bounds.height - bounds.width) / 2; + var tmp = bounds.width; + bounds.width = bounds.height; + bounds.height = tmp; + } + + var pt = new mxPoint(point.x, point.y); + pt = mxUtils.getRotatedPoint(pt, cos, sin, + new mxPoint(this.state.getCenterX(), this.state.getCenterY())); + + var result = this.updateStyleUnrotated(pt, bounds); + + // Modifies point to use rotated coordinates of return value + if (result != null) + { + cos = Math.cos(alpha); + sin = Math.sin(alpha); + result = mxUtils.getRotatedPoint(result, cos, sin, + new mxPoint(this.state.getCenterX(), this.state.getCenterY())); + point.x = result.x; + point.y = result.y; + } + }; + + mxFolderHandler.prototype.updateStyleUnrotated = function(pt, bounds) + { + var tp = mxUtils.getValue(this.state.style, 'tabPosition', 'right'); + var tw = (tp == 'left') ? pt.x - bounds.x : bounds.x + bounds.width - pt.x; + var th = pt.y - bounds.y; + + var scale = this.graph.getView().scale; + this.state.style['tabWidth'] = Math.round(Math.max(1, tw) / scale); + this.state.style['tabHeight'] = Math.round(Math.max(1, th) / scale); + }; + + mxFolderHandler.prototype.applyStyle = function() + { + var model = this.graph.getModel(); + model.beginUpdate(); + try + { + this.state.view.graph.setCellStyles('tabWidth', this.state.style['tabWidth'], [this.state.cell]); + this.state.view.graph.setCellStyles('tabHeight', this.state.style['tabHeight'], [this.state.cell]); + } + finally + { + model.endUpdate(); + } + }; + + // Cube Handler + function mxCubeHandler(state) + { + mxFolderHandler.call(this, state); + }; + + mxUtils.extend(mxCubeHandler, mxFolderHandler); + + mxCubeHandler.prototype.defaultValue = 20; + + mxCubeHandler.prototype.scaleFactor = 1; + + mxCubeHandler.prototype.getSpecialHandlePoint = function(bounds) + { + var scale = this.graph.getView().scale; + var sz = Math.min(bounds.width, Math.min(bounds.height, + mxUtils.getValue(this.state.style, 'size', this.defaultValue) * scale / this.scaleFactor)); + + return new mxPoint(bounds.x + sz, bounds.y + sz); + }; + + mxCubeHandler.prototype.updateStyleUnrotated = function(pt, bounds) + { + var size = Math.min(Math.min(bounds.width / this.scaleFactor, pt.x - bounds.x), + Math.min(bounds.height / this.scaleFactor, pt.y - bounds.y)); + var scale = this.graph.getView().scale; + this.state.style['size'] = Math.round(Math.max(1, size) / scale) * this.scaleFactor; + + // Stays on the diagonal + return new mxPoint(bounds.x + size, bounds.y + size); + }; + + mxCubeHandler.prototype.applyStyle = function() + { + this.state.view.graph.setCellStyles('size', this.state.style['size'], [this.state.cell]); + }; + + // Card Handler + function mxCardHandler(state) + { + mxCubeHandler.call(this, state); + }; + + mxUtils.extend(mxCardHandler, mxCubeHandler); + + mxCardHandler.prototype.defaultValue = 30; + + mxCardHandler.prototype.scaleFactor = 2; + + // Note Handler + function mxNoteHandler(state) + { + mxCubeHandler.call(this, state); + }; + + mxUtils.extend(mxNoteHandler, mxCubeHandler); + + mxNoteHandler.prototype.defaultValue = 30; + + mxNoteHandler.prototype.scaleFactor = 1; + + mxNoteHandler.prototype.getSpecialHandlePoint = function(bounds) + { + var scale = this.graph.getView().scale; + var sz = Math.min(bounds.width, Math.min(bounds.height, + mxUtils.getValue(this.state.style, 'size', this.defaultValue) * scale / this.scaleFactor)); + + return new mxPoint(bounds.x + bounds.width - sz, bounds.y + sz); + }; + + mxNoteHandler.prototype.updateStyleUnrotated = function(pt, bounds) + { + var size = Math.min(Math.min(bounds.width / this.scaleFactor, pt.x - bounds.x + bounds.width), + Math.min(bounds.height / this.scaleFactor, pt.y - bounds.y)); + var scale = this.graph.getView().scale; + this.state.style['size'] = Math.round(Math.max(1, size) / scale) * this.scaleFactor; + + // Stays on the diagonal + return new mxPoint(bounds.x + bounds.width - size, bounds.y + size); + }; + + // Step Handler + function mxStepHandler(state) + { + mxCubeHandler.call(this, state); + }; + + mxUtils.extend(mxStepHandler, mxCubeHandler); + + mxStepHandler.prototype.defaultValue = 0.2; + + mxStepHandler.prototype.scaleFactor = 1; + + mxStepHandler.prototype.getSpecialHandlePoint = function(bounds) + { + var sz = mxUtils.getValue(this.state.style, 'size', this.defaultValue); + + return new mxPoint(bounds.x + bounds.width * sz, bounds.y + bounds.height / 2); + }; + + mxStepHandler.prototype.updateStyleUnrotated = function(pt, bounds) + { + var size = Math.min(1, (pt.x - bounds.x) / bounds.width); + this.state.style['size'] = size; + + return new mxPoint(bounds.x + size * bounds.width, bounds.y + bounds.height / 2); + }; + + // Tape Handler + function mxTapeHandler(state) + { + mxCubeHandler.call(this, state); + }; + + mxUtils.extend(mxTapeHandler, mxCubeHandler); + + mxTapeHandler.prototype.defaultValue = 0.4; + + mxTapeHandler.prototype.scaleFactor = 1; + + mxTapeHandler.prototype.getSpecialHandlePoint = function(bounds) + { + var sz = mxUtils.getValue(this.state.style, 'size', this.defaultValue); + + return new mxPoint(bounds.x + bounds.width / 2, bounds.y + sz * bounds.height / 2); + }; + + mxTapeHandler.prototype.updateStyleUnrotated = function(pt, bounds) + { + var size = Math.min(1, ((pt.y - bounds.y) / bounds.height) * 2); + this.state.style['size'] = size; + + return new mxPoint(bounds.x + bounds.width / 2, bounds.y + size * bounds.height / 2); + }; + } + + // Constraints + mxGraph.prototype.getAllConnectionConstraints = function(terminal, source) + { + if (terminal != null && terminal.shape != null) + { + if (terminal.shape instanceof mxStencilShape) + { + if (terminal.shape.stencil != null) + { + return terminal.shape.stencil.constraints; + } + } + else if (terminal.shape.constraints != null) + { + return terminal.shape.constraints; + } + } + + return null; + }; + + mxRectangleShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0), true), + new mxConnectionConstraint(new mxPoint(0.5, 0), true), + new mxConnectionConstraint(new mxPoint(0.75, 0), true), + new mxConnectionConstraint(new mxPoint(0, 0.25), true), + new mxConnectionConstraint(new mxPoint(0, 0.5), true), + new mxConnectionConstraint(new mxPoint(0, 0.75), true), + new mxConnectionConstraint(new mxPoint(1, 0.25), true), + new mxConnectionConstraint(new mxPoint(1, 0.5), true), + new mxConnectionConstraint(new mxPoint(1, 0.75), true), + new mxConnectionConstraint(new mxPoint(0.25, 1), true), + new mxConnectionConstraint(new mxPoint(0.5, 1), true), + new mxConnectionConstraint(new mxPoint(0.75, 1), true)]; + mxLabel.prototype.constraints = mxRectangleShape.prototype.constraints; + mxImageShape.prototype.constraints = mxRectangleShape.prototype.constraints; + mxSwimlane.prototype.constraints = mxRectangleShape.prototype.constraints; + PlusShape.prototype.constraints = mxRectangleShape.prototype.constraints; + NoteShape.prototype.constraints = mxRectangleShape.prototype.constraints; + CardShape.prototype.constraints = mxRectangleShape.prototype.constraints; + CubeShape.prototype.constraints = mxRectangleShape.prototype.constraints; + FolderShape.prototype.constraints = mxRectangleShape.prototype.constraints; + mxCylinder.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.15, 0.05), false), + new mxConnectionConstraint(new mxPoint(0.5, 0), true), + new mxConnectionConstraint(new mxPoint(0.85, 0.05), false), + new mxConnectionConstraint(new mxPoint(0, 0.3), true), + new mxConnectionConstraint(new mxPoint(0, 0.5), true), + new mxConnectionConstraint(new mxPoint(0, 0.7), true), + new mxConnectionConstraint(new mxPoint(1, 0.3), true), + new mxConnectionConstraint(new mxPoint(1, 0.5), true), + new mxConnectionConstraint(new mxPoint(1, 0.7), true), + new mxConnectionConstraint(new mxPoint(0.15, 0.95), false), + new mxConnectionConstraint(new mxPoint(0.5, 1), true), + new mxConnectionConstraint(new mxPoint(0.85, 0.95), false)]; + UmlActorShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0), true), + new mxConnectionConstraint(new mxPoint(0.5, 0), true), + new mxConnectionConstraint(new mxPoint(0.75, 0), true), + new mxConnectionConstraint(new mxPoint(0, 0.25), true), + new mxConnectionConstraint(new mxPoint(0, 0.5), true), + new mxConnectionConstraint(new mxPoint(0, 0.75), true), + new mxConnectionConstraint(new mxPoint(1, 0.25), true), + new mxConnectionConstraint(new mxPoint(1, 0.5), true), + new mxConnectionConstraint(new mxPoint(1, 0.75), true), + new mxConnectionConstraint(new mxPoint(0.25, 1), true), + new mxConnectionConstraint(new mxPoint(0.5, 1), true), + new mxConnectionConstraint(new mxPoint(0.75, 1), true)]; + ComponentShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0), true), + new mxConnectionConstraint(new mxPoint(0.5, 0), true), + new mxConnectionConstraint(new mxPoint(0.75, 0), true), + new mxConnectionConstraint(new mxPoint(0, 0.3), true), + new mxConnectionConstraint(new mxPoint(0, 0.7), true), + new mxConnectionConstraint(new mxPoint(1, 0.25), true), + new mxConnectionConstraint(new mxPoint(1, 0.5), true), + new mxConnectionConstraint(new mxPoint(1, 0.75), true), + new mxConnectionConstraint(new mxPoint(0.25, 1), true), + new mxConnectionConstraint(new mxPoint(0.5, 1), true), + new mxConnectionConstraint(new mxPoint(0.75, 1), true)]; + mxActor.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.5, 0), true), + new mxConnectionConstraint(new mxPoint(0.25, 0.2), false), + new mxConnectionConstraint(new mxPoint(0.1, 0.5), false), + new mxConnectionConstraint(new mxPoint(0, 0.75), true), + new mxConnectionConstraint(new mxPoint(0.75, 0.25), false), + new mxConnectionConstraint(new mxPoint(0.9, 0.5), false), + new mxConnectionConstraint(new mxPoint(1, 0.75), true), + new mxConnectionConstraint(new mxPoint(0.25, 1), true), + new mxConnectionConstraint(new mxPoint(0.5, 1), true), + new mxConnectionConstraint(new mxPoint(0.75, 1), true)]; + TapeShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0.35), false), + new mxConnectionConstraint(new mxPoint(0, 0.5), false), + new mxConnectionConstraint(new mxPoint(0, 0.65), false), + new mxConnectionConstraint(new mxPoint(1, 0.35), false), + new mxConnectionConstraint(new mxPoint(1, 0.5), false), + new mxConnectionConstraint(new mxPoint(1, 0.65), false), + new mxConnectionConstraint(new mxPoint(0.25, 1), false), + new mxConnectionConstraint(new mxPoint(0.75, 0), false)]; + // TODO: Relative ports + StepShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0), true), + new mxConnectionConstraint(new mxPoint(0.5, 0), true), + new mxConnectionConstraint(new mxPoint(0.75, 0), true), + new mxConnectionConstraint(new mxPoint(0.25, 1), true), + new mxConnectionConstraint(new mxPoint(0.5, 1), true), + new mxConnectionConstraint(new mxPoint(0.75, 1), true), + new mxConnectionConstraint(new mxPoint(0.1, 0.25), false), + new mxConnectionConstraint(new mxPoint(0.2, 0.5), false), + new mxConnectionConstraint(new mxPoint(0.1, 0.75), false), + new mxConnectionConstraint(new mxPoint(0.9, 0.25), false), + new mxConnectionConstraint(new mxPoint(1, 0.5), false), + new mxConnectionConstraint(new mxPoint(0.9, 0.75), false)]; + mxLine.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0.5), false), + new mxConnectionConstraint(new mxPoint(0.25, 0.5), false), + new mxConnectionConstraint(new mxPoint(0.75, 0.5), false), + new mxConnectionConstraint(new mxPoint(1, 0.5), false)]; + LollipopShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.5, 0), false), + new mxConnectionConstraint(new mxPoint(0.5, 1), false)]; + mxEllipse.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0), true), new mxConnectionConstraint(new mxPoint(1, 0), true), + new mxConnectionConstraint(new mxPoint(0, 1), true), new mxConnectionConstraint(new mxPoint(1, 1), true), + new mxConnectionConstraint(new mxPoint(0.5, 0), true), new mxConnectionConstraint(new mxPoint(0.5, 1), true), + new mxConnectionConstraint(new mxPoint(0, 0.5), true), new mxConnectionConstraint(new mxPoint(1, 0.5))]; + mxDoubleEllipse.prototype.constraints = mxEllipse.prototype.constraints; + mxRhombus.prototype.constraints = mxEllipse.prototype.constraints; + mxTriangle.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0.25), true), + new mxConnectionConstraint(new mxPoint(0, 0.5), true), + new mxConnectionConstraint(new mxPoint(0, 0.75), true), + new mxConnectionConstraint(new mxPoint(0.5, 0), true), + new mxConnectionConstraint(new mxPoint(0.5, 1), true), + new mxConnectionConstraint(new mxPoint(1, 0.5), true)]; + mxHexagon.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.375, 0), true), + new mxConnectionConstraint(new mxPoint(0.5, 0), true), + new mxConnectionConstraint(new mxPoint(0.625, 0), true), + new mxConnectionConstraint(new mxPoint(0.125, 0.25), false), + new mxConnectionConstraint(new mxPoint(0, 0.5), true), + new mxConnectionConstraint(new mxPoint(0.125, 0.75), false), + new mxConnectionConstraint(new mxPoint(0.875, 0.25), false), + new mxConnectionConstraint(new mxPoint(0, 0.5), true), + new mxConnectionConstraint(new mxPoint(1, 0.5), true), + new mxConnectionConstraint(new mxPoint(0.875, 0.75), false), + new mxConnectionConstraint(new mxPoint(0.375, 1), true), + new mxConnectionConstraint(new mxPoint(0.5, 1), true), + new mxConnectionConstraint(new mxPoint(0.625, 1), true)]; + mxCloud.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0.25), false), + new mxConnectionConstraint(new mxPoint(0.4, 0.1), false), + new mxConnectionConstraint(new mxPoint(0.16, 0.55), false), + new mxConnectionConstraint(new mxPoint(0.07, 0.4), false), + new mxConnectionConstraint(new mxPoint(0.31, 0.8), false), + new mxConnectionConstraint(new mxPoint(0.13, 0.77), false), + new mxConnectionConstraint(new mxPoint(0.8, 0.8), false), + new mxConnectionConstraint(new mxPoint(0.55, 0.95), false), + new mxConnectionConstraint(new mxPoint(0.875, 0.5), false), + new mxConnectionConstraint(new mxPoint(0.96, 0.7), false), + new mxConnectionConstraint(new mxPoint(0.625, 0.2), false), + new mxConnectionConstraint(new mxPoint(0.88, 0.25), false)]; + mxArrow.prototype.constraints = null; +})(); diff --git a/javascript/examples/grapheditor/www/resources/grapheditor.properties b/javascript/examples/grapheditor/www/resources/grapheditor.properties index 6fad3d759..270f7c9b8 100644 --- a/javascript/examples/grapheditor/www/resources/grapheditor.properties +++ b/javascript/examples/grapheditor/www/resources/grapheditor.properties @@ -51,6 +51,7 @@ drawingTooLarge=Drawing is too large duplicate=Duplicate east=East edit=Edit +editLink=Edit link enterGroup=Enter Group enterValue=Enter value entityRelation=Entity Relation @@ -106,7 +107,8 @@ north=North opacity=Opacity open=Open openArrow=Open Arrow -openFile=Open File +openFile=Open file +openLInk=Open link openSupported=Supported format is .XML files saved from this software openInNewWindow=Open in new window options=Options diff --git a/javascript/examples/grapheditor/www/resources/grapheditor_de.properties b/javascript/examples/grapheditor/www/resources/grapheditor_de.properties index ad01cd000..4eef324c3 100644 --- a/javascript/examples/grapheditor/www/resources/grapheditor_de.properties +++ b/javascript/examples/grapheditor/www/resources/grapheditor_de.properties @@ -51,6 +51,7 @@ drawingTooLarge=Zeichnung ist zu gross duplicate=Duplizieren east=Ost edit=Bearbeiten +editLink=Link bearbeiten enterGroup=In Gruppe Hinein enterValue=Wert eingeben entityRelation=Entity Relation @@ -107,6 +108,7 @@ opacity=Deckkraft open=%d6ffnen openArrow=Offen openFile=Datei %f6ffnen +openLink=Link %f6ffnen openSupported=Unterst%fctzte Formate sind mit dieser Anwendung erstellte .XML Dateien openInNewWindow=In neuem Fenster %d6ffnen options=Optionen diff --git a/javascript/index.html b/javascript/index.html index f256447b5..ddf8fd7e2 100755 --- a/javascript/index.html +++ b/javascript/index.html @@ -162,8 +162,8 @@ javascript/examples/editors contains the following examples:

    -
  • Graph Editor - - Graph Editor that integrates mxGraph with ExtJs.
  • +
  • Graph Editor - + Fully functional diagram editor and drawing application.
  • mxDraw - Web 2.0-style diagram editor and drawing application.
  • mxProcess - diff --git a/javascript/mxClient.js b/javascript/mxClient.js index 6f3092adf..2b5743ae1 100644 --- a/javascript/mxClient.js +++ b/javascript/mxClient.js @@ -21,9 +21,9 @@ var mxClient = * * versionMajor.versionMinor.buildNumber.revisionNumber * - * Current version is 1.10.2.0. + * Current version is 1.10.2.1. */ - VERSION: '1.10.2.0', + VERSION: '1.10.2.1', /** * Variable: IS_IE @@ -19124,7 +19124,7 @@ mxGuide.prototype.destroy = function() } }; /** - * $Id: mxShape.js,v 1.172 2012-07-16 15:28:41 gaudenz Exp $ + * $Id: mxShape.js,v 1.173 2012-07-31 11:46:53 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -20669,7 +20669,8 @@ mxShape.prototype.updateSvgScale = function(node) node.setAttribute('stroke-dasharray', phase + ' ' + phase); } - if (this.crisp && (this.roundedCrispSvg || this.isRounded != true)) + if (this.crisp && (this.roundedCrispSvg || this.isRounded != true) && + (this.rotation == null || this.rotation == 0)) { node.setAttribute('shape-rendering', 'crispEdges'); } @@ -23282,7 +23283,7 @@ mxMarker.markers[mxConstants.ARROW_OVAL] = function(node, type, pe, nx, ny, stro mxMarker.markers[mxConstants.ARROW_DIAMOND_THIN] = tmp_diamond; }()); /** - * $Id: mxActor.js,v 1.34 2012-05-28 09:40:59 gaudenz Exp $ + * $Id: mxActor.js,v 1.35 2012-07-31 11:46:53 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -23408,7 +23409,7 @@ mxActor.prototype.redrawSvg = function() this.innerNode.setAttribute('stroke-width', strokeWidth); this.innerNode.setAttribute('stroke-linejoin', 'round'); - if (this.crisp) + if (this.crisp && (this.rotation == null || this.rotation == 0)) { this.innerNode.setAttribute('shape-rendering', 'crispEdges'); } @@ -27410,7 +27411,7 @@ mxLabel.prototype.redraw = function() } }; /** - * $Id: mxCylinder.js,v 1.37 2012-05-28 09:40:59 gaudenz Exp $ + * $Id: mxCylinder.js,v 1.38 2012-07-31 11:46:53 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -27632,7 +27633,7 @@ mxCylinder.prototype.redrawSvg = function() var strokeWidth = Math.round(Math.max(1, this.strokewidth * this.scale)); this.innerNode.setAttribute('stroke-width', strokeWidth); - if (this.crisp) + if (this.crisp && (this.rotation == null || this.rotation == 0)) { this.innerNode.setAttribute('shape-rendering', 'crispEdges'); this.foreground.setAttribute('shape-rendering', 'crispEdges'); @@ -64475,7 +64476,7 @@ mxCellMarker.prototype.destroy = function() this.highlight.destroy(); }; /** - * $Id: mxSelectionCellsHandler.js,v 1.3 2012-03-18 19:07:35 gaudenz Exp $ + * $Id: mxSelectionCellsHandler.js,v 1.4 2012-07-25 08:23:43 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -64496,7 +64497,7 @@ function mxSelectionCellsHandler(graph) this.refreshHandler = mxUtils.bind(this, function(sender, evt) { - if (this.graph.isEnabled()) + if (this.isEnabled()) { this.refresh(); } @@ -67273,7 +67274,7 @@ mxRubberband.prototype.destroy = function() } }; /** - * $Id: mxVertexHandler.js,v 1.103 2012-06-20 14:35:55 gaudenz Exp $ + * $Id: mxVertexHandler.js,v 1.104 2012-07-25 08:26:23 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -67526,9 +67527,13 @@ mxVertexHandler.prototype.createSizer = function(cursor, index, size, fillColor) sizer.init(this.graph.getView().getOverlayPane()); } - sizer.node.style.cursor = cursor; mxEvent.redirectMouseEvents(sizer.node, this.graph, this.state); + if (this.graph.isEnabled()) + { + sizer.node.style.cursor = cursor; + } + if (!this.isSizerVisible(index)) { sizer.node.style.visibility = 'hidden'; @@ -70941,7 +70946,7 @@ mxCellTracker.prototype.destroy = function() } }; /** - * $Id: mxCellHighlight.js,v 1.22 2012-07-09 16:59:25 gaudenz Exp $ + * $Id: mxCellHighlight.js,v 1.24 2012-07-28 19:17:40 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -70966,18 +70971,25 @@ function mxCellHighlight(graph, highlightColor, strokeWidth) this.highlightColor = (highlightColor != null) ? highlightColor : mxConstants.DEFAULT_VALID_COLOR; this.strokeWidth = (strokeWidth != null) ? strokeWidth : mxConstants.HIGHLIGHT_STROKEWIDTH; - // Hides the marker if the graph changes - this.resetHandler = mxUtils.bind(this, function(sender) + // Updates the marker if the graph changes + this.repaintHandler = mxUtils.bind(this, function() + { + this.repaint(); + }); + + this.graph.getView().addListener(mxEvent.SCALE, this.repaintHandler); + this.graph.getView().addListener(mxEvent.TRANSLATE, this.repaintHandler); + this.graph.getView().addListener(mxEvent.SCALE_AND_TRANSLATE, this.repaintHandler); + this.graph.getModel().addListener(mxEvent.CHANGE, this.repaintHandler); + + // Hides the marker if the current root changes + this.resetHandler = mxUtils.bind(this, function() { this.hide(); }); - this.graph.getView().addListener(mxEvent.SCALE, this.resetHandler); - this.graph.getView().addListener(mxEvent.TRANSLATE, this.resetHandler); - this.graph.getView().addListener(mxEvent.SCALE_AND_TRANSLATE, this.resetHandler); this.graph.getView().addListener(mxEvent.DOWN, this.resetHandler); this.graph.getView().addListener(mxEvent.UP, this.resetHandler); - this.graph.getModel().addListener(mxEvent.CHANGE, this.resetHandler); } }; @@ -71050,23 +71062,21 @@ mxCellHighlight.prototype.setHighlightColor = function(color) * * Creates and returns the highlight shape for the given state. */ -mxCellHighlight.prototype.drawHighlight = function(state) +mxCellHighlight.prototype.drawHighlight = function() { - var shape = this.createShape(state); - shape.redraw(); + this.shape = this.createShape(); + this.repaint(); - if (!this.keepOnTop && shape.node.parentNode.firstChild != shape.node) + if (!this.keepOnTop && this.shape.node.parentNode.firstChild != this.shape.node) { - shape.node.parentNode.insertBefore(shape.node, shape.node.parentNode.firstChild); + this.shape.node.parentNode.insertBefore(this.shape.node, this.shape.node.parentNode.firstChild); } // Workaround to force a repaint in AppleWebKit - if (this.graph.model.isEdge(state.cell)) + if (this.graph.model.isEdge(this.state.cell)) { - mxUtils.repaintGraph(this.graph, shape.points[0]); + mxUtils.repaintGraph(this.graph, this.shape.points[0]); } - - return shape; }; /** @@ -71074,63 +71084,85 @@ mxCellHighlight.prototype.drawHighlight = function(state) * * Creates and returns the highlight shape for the given state. */ -mxCellHighlight.prototype.createShape = function(state) +mxCellHighlight.prototype.createShape = function() { var shape = null; - if (this.graph.model.isEdge(state.cell)) + if (this.graph.model.isEdge(this.state.cell)) { - shape = new mxPolyline(state.absolutePoints, + shape = new mxPolyline(this.state.absolutePoints, this.highlightColor, this.strokeWidth); } else { - shape = new mxRectangleShape( - new mxRectangle(state.x - this.spacing, state.y - this.spacing, - state.width + 2 * this.spacing, state.height + 2 * this.spacing), + shape = new mxRectangleShape( new mxRectangle(), null, this.highlightColor, this.strokeWidth); } shape.dialect = (this.graph.dialect != mxConstants.DIALECT_SVG) ? mxConstants.DIALECT_VML : mxConstants.DIALECT_SVG; shape.init(this.graph.getView().getOverlayPane()); - mxEvent.redirectMouseEvents(shape.node, this.graph, state); - - // Uses cursor from shape in highlight - if (state.shape != null) - { - shape.setCursor(state.shape.getCursor()); - } - - var alpha = (!this.graph.model.isEdge(state.cell)) ? Number(state.style[mxConstants.STYLE_ROTATION] || '0') : 0; - - // Event-transparency - if (shape.dialect == mxConstants.DIALECT_SVG) - { - shape.node.setAttribute('style', 'pointer-events:none;'); - - if (alpha != 0) - { - var cx = state.getCenterX(); - var cy = state.getCenterY(); - var transform = 'rotate(' + alpha + ' ' + cx + ' ' + cy + ')'; - - shape.node.setAttribute('transform', transform); - } - } - else - { - shape.node.style.background = ''; - - if (alpha != 0) - { - shape.node.rotation = alpha; - } - } + mxEvent.redirectMouseEvents(shape.node, this.graph, this.state); return shape; }; + +/** + * Function: repaint + * + * Updates the highlight after a change of the model or view. + */ +mxCellHighlight.prototype.repaint = function() +{ + if (this.state != null && this.shape != null) + { + if (this.graph.model.isEdge(this.state.cell)) + { + this.shape.points = this.state.absolutePoints; + } + else + { + this.shape.bounds = new mxRectangle(this.state.x - this.spacing, this.state.y - this.spacing, + this.state.width + 2 * this.spacing, this.state.height + 2 * this.spacing); + } + + this.shape.redraw(); + + // Uses cursor from shape in highlight + if (this.state.shape != null) + { + this.shape.setCursor(this.state.shape.getCursor()); + } + + var alpha = (!this.graph.model.isEdge(this.state.cell)) ? Number(this.state.style[mxConstants.STYLE_ROTATION] || '0') : 0; + + // Event-transparency + if (this.shape.dialect == mxConstants.DIALECT_SVG) + { + this.shape.node.setAttribute('style', 'pointer-events:none;'); + + if (alpha != 0) + { + var cx = state.getCenterX(); + var cy = state.getCenterY(); + var transform = 'rotate(' + alpha + ' ' + cx + ' ' + cy + ')'; + + this.shape.node.setAttribute('transform', transform); + } + } + else + { + this.shape.node.style.background = ''; + + if (alpha != 0) + { + this.shape.node.rotation = alpha; + } + } + } +}; + /** * Function: hide * @@ -71156,12 +71188,12 @@ mxCellHighlight.prototype.highlight = function(state) this.shape = null; } - if (state != null) - { - this.shape = this.drawHighlight(state); - } - this.state = state; + + if (this.state != null) + { + this.drawHighlight(); + } } }; @@ -71172,6 +71204,9 @@ mxCellHighlight.prototype.highlight = function(state) */ mxCellHighlight.prototype.destroy = function() { + this.graph.getView().removeListener(this.repaintHandler); + this.graph.getModel().removeListener(this.repaintHandler); + this.graph.getView().removeListener(this.resetHandler); this.graph.getModel().removeListener(this.resetHandler); diff --git a/javascript/mxClient.min.js b/javascript/mxClient.min.js index dd912de7d..ca6f147d9 100755 --- a/javascript/mxClient.min.js +++ b/javascript/mxClient.min.js @@ -1,4 +1,4 @@ -var mxClient={VERSION:"1.10.2.0",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE"),IS_OP:0<=navigator.userAgent.indexOf("Opera/"),IS_OT:0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&& +var mxClient={VERSION:"1.10.2.1",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE"),IS_OP:0<=navigator.userAgent.indexOf("Opera/"),IS_OT:0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&& 0>navigator.userAgent.indexOf("Presto/2.1.")&&0>navigator.userAgent.indexOf("Presto/2.0.")&&0>navigator.userAgent.indexOf("Presto/1."),IS_SF:0<=navigator.userAgent.indexOf("AppleWebKit/")&&0>navigator.userAgent.indexOf("Chrome/"),IS_GC:0<=navigator.userAgent.indexOf("Chrome/"),IS_MT:0<=navigator.userAgent.indexOf("Firefox/")&&0>navigator.userAgent.indexOf("Firefox/1.")&&0>navigator.userAgent.indexOf("Firefox/2.")||0<=navigator.userAgent.indexOf("Iceweasel/")&&0>navigator.userAgent.indexOf("Iceweasel/1.")&& 0>navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/")&&0>navigator.userAgent.indexOf("SeaMonkey/1.")||0<=navigator.userAgent.indexOf("Iceape/")&&0>navigator.userAgent.indexOf("Iceape/1."),IS_SVG:0<=navigator.userAgent.indexOf("Firefox/")||0<=navigator.userAgent.indexOf("Iceweasel/")||0<=navigator.userAgent.indexOf("Seamonkey/")||0<=navigator.userAgent.indexOf("Iceape/")||0<=navigator.userAgent.indexOf("Galeon/")||0<=navigator.userAgent.indexOf("Epiphany/")||0<= navigator.userAgent.indexOf("AppleWebKit/")||0<=navigator.userAgent.indexOf("Gecko/")||0<=navigator.userAgent.indexOf("Opera/"),NO_FO:0<=navigator.userAgent.indexOf("Firefox/1.")||0<=navigator.userAgent.indexOf("Iceweasel/1.")||0<=navigator.userAgent.indexOf("Firefox/2.")||0<=navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/1.")||0<=navigator.userAgent.indexOf("Iceape/1.")||0<=navigator.userAgent.indexOf("Camino/1.")||0<=navigator.userAgent.indexOf("Epiphany/2.")|| @@ -351,7 +351,7 @@ f)+" "+Math.round(d[0].y-g)+" qb",c=1;c3){for(var d="M "+b[0].x+" "+b[0].y+" ",d=d+(" Q "+b[1].x+" "+b[1].y+" "+b[2].x+" "+b[2].y),e=3;e0){this.innerNode.setAttribute("d",b);if(this.shadowNode!=null){this.shadowNode.setAttribute("transform",this.getSvgShadowTransform()+(this.innerNode.getAttribute("transform")|| -""));this.shadowNode.setAttribute("stroke-width",a);this.shadowNode.setAttribute("d",b)}}else{this.innerNode.removeAttribute("d");this.shadowNode!=null&&this.shadowNode.removeAttribute("d")}if(this.isDashed){a=Math.max(1,Math.round(3*this.scale*this.strokewidth));this.innerNode.setAttribute("stroke-dasharray",a+" "+a)}}; +mxActor.prototype.redrawSvg=function(){var a=Math.round(Math.max(1,this.strokewidth*this.scale));this.innerNode.setAttribute("stroke-width",a);this.innerNode.setAttribute("stroke-linejoin","round");this.crisp&&(this.rotation==null||this.rotation==0)?this.innerNode.setAttribute("shape-rendering","crispEdges"):this.innerNode.removeAttribute("shape-rendering");var b=this.createPath();if(b.length>0){this.innerNode.setAttribute("d",b);if(this.shadowNode!=null){this.shadowNode.setAttribute("transform", +this.getSvgShadowTransform()+(this.innerNode.getAttribute("transform")||""));this.shadowNode.setAttribute("stroke-width",a);this.shadowNode.setAttribute("d",b)}}else{this.innerNode.removeAttribute("d");this.shadowNode!=null&&this.shadowNode.removeAttribute("d")}if(this.isDashed){a=Math.max(1,Math.round(3*this.scale*this.strokewidth));this.innerNode.setAttribute("stroke-dasharray",a+" "+a)}}; mxActor.prototype.redrawPath=function(a,b,c,d,e){b=d/3;a.moveTo(0,e);a.curveTo(0,3*e/5,0,2*e/5,d/2,2*e/5);a.curveTo(d/2-b,2*e/5,d/2-b,0,d/2,0);a.curveTo(d/2+b,0,d/2+b,2*e/5,d/2,2*e/5);a.curveTo(d,2*e/5,d,3*e/5,d,e);a.close()};function mxCloud(a,b,c,d){this.bounds=a;this.fill=b;this.stroke=c;this.strokewidth=d!=null?d:1}mxCloud.prototype=new mxActor;mxCloud.prototype.constructor=mxActor; mxCloud.prototype.redrawPath=function(a,b,c,d,e){a.moveTo(0.25*d,0.25*e);a.curveTo(0.05*d,0.25*e,0,0.5*e,0.16*d,0.55*e);a.curveTo(0,0.66*e,0.18*d,0.9*e,0.31*d,0.8*e);a.curveTo(0.4*d,e,0.7*d,e,0.8*d,0.8*e);a.curveTo(d,0.8*e,d,0.6*e,0.875*d,0.5*e);a.curveTo(d,0.3*e,0.8*d,0.1*e,0.625*d,0.2*e);a.curveTo(0.5*d,0.05*e,0.3*d,0.05*e,0.25*d,0.25*e);a.close()};function mxRectangleShape(a,b,c,d){this.bounds=a;this.fill=b;this.stroke=c;this.strokewidth=d!=null?d:1}mxRectangleShape.prototype=new mxShape; mxRectangleShape.prototype.constructor=mxRectangleShape;mxRectangleShape.prototype.createHtml=function(){var a=document.createElement("DIV");this.configureHtmlShape(a);return a};mxRectangleShape.prototype.createVml=function(){var a=document.createElement(this.isRounded?"v:roundrect":"v:rect");this.configureVmlShape(a);return a};mxRectangleShape.prototype.createSvg=function(){return this.createSvgGroup("rect")}; @@ -542,9 +542,9 @@ mxCylinder.prototype.reconfigure=function(){if(this.dialect==mxConstants.DIALECT mxCylinder.prototype.createVml=function(){var a=document.createElement("v:group");this.label=this.background=document.createElement("v:shape");this.configureVmlShape(this.background);a.appendChild(this.background);this.fill=null;this.isShadow=false;this.configureVmlShape(a);this.foreground=document.createElement("v:shape");this.configureVmlShape(this.foreground);this.fgStrokeNode=document.createElement("v:stroke");this.fgStrokeNode.joinstyle="miter";this.fgStrokeNode.miterlimit=4;this.foreground.appendChild(this.fgStrokeNode); a.appendChild(this.foreground);return a};mxCylinder.prototype.redrawVml=function(){this.updateVmlShape(this.node);this.updateVmlShape(this.background);this.updateVmlShape(this.foreground);this.background.path=this.createPath(false);this.foreground.path=this.createPath(true);this.fgStrokeNode.dashstyle=this.strokeNode.dashstyle}; mxCylinder.prototype.createSvg=function(){var a=this.createSvgGroup("path");this.foreground=document.createElementNS(mxConstants.NS_SVG,"path");this.stroke!=null&&this.stroke!=mxConstants.NONE?this.foreground.setAttribute("stroke",this.stroke):this.foreground.setAttribute("stroke","none");this.foreground.setAttribute("fill","none");a.appendChild(this.foreground);if(this.addPipe){this.pipe=this.createSvgPipe();a.appendChild(this.pipe)}return a}; -mxCylinder.prototype.redrawSvg=function(){var a=Math.round(Math.max(1,this.strokewidth*this.scale));this.innerNode.setAttribute("stroke-width",a);if(this.crisp){this.innerNode.setAttribute("shape-rendering","crispEdges");this.foreground.setAttribute("shape-rendering","crispEdges")}else{this.innerNode.removeAttribute("shape-rendering");this.foreground.removeAttribute("shape-rendering")}var b=this.createPath(false);if(b.length>0){this.innerNode.setAttribute("d",b);if(this.pipe!=null){this.pipe.setAttribute("d", -b);this.pipe.setAttribute("stroke-width",a+mxShape.prototype.SVG_STROKE_TOLERANCE);this.pipe.setAttribute("transform",this.innerNode.getAttribute("transform")||"")}}else{this.innerNode.removeAttribute("d");this.pipe!=null&&this.pipe.removeAttribute("d")}this.strokedBackground||this.innerNode.setAttribute("stroke","none");if(this.shadowNode!=null){this.shadowNode.setAttribute("stroke-width",a);this.shadowNode.setAttribute("d",b);this.shadowNode.setAttribute("transform",this.getSvgShadowTransform())}b= -this.createPath(true);if(b.length>0){this.foreground.setAttribute("stroke-width",a);this.foreground.setAttribute("d",b)}else this.foreground.removeAttribute("d");if(this.isDashed){a=Math.max(1,Math.round(3*this.scale*this.strokewidth));this.innerNode.setAttribute("stroke-dasharray",a+" "+a);this.foreground.setAttribute("stroke-dasharray",a+" "+a)}}; +mxCylinder.prototype.redrawSvg=function(){var a=Math.round(Math.max(1,this.strokewidth*this.scale));this.innerNode.setAttribute("stroke-width",a);if(this.crisp&&(this.rotation==null||this.rotation==0)){this.innerNode.setAttribute("shape-rendering","crispEdges");this.foreground.setAttribute("shape-rendering","crispEdges")}else{this.innerNode.removeAttribute("shape-rendering");this.foreground.removeAttribute("shape-rendering")}var b=this.createPath(false);if(b.length>0){this.innerNode.setAttribute("d", +b);if(this.pipe!=null){this.pipe.setAttribute("d",b);this.pipe.setAttribute("stroke-width",a+mxShape.prototype.SVG_STROKE_TOLERANCE);this.pipe.setAttribute("transform",this.innerNode.getAttribute("transform")||"")}}else{this.innerNode.removeAttribute("d");this.pipe!=null&&this.pipe.removeAttribute("d")}this.strokedBackground||this.innerNode.setAttribute("stroke","none");if(this.shadowNode!=null){this.shadowNode.setAttribute("stroke-width",a);this.shadowNode.setAttribute("d",b);this.shadowNode.setAttribute("transform", +this.getSvgShadowTransform())}b=this.createPath(true);if(b.length>0){this.foreground.setAttribute("stroke-width",a);this.foreground.setAttribute("d",b)}else this.foreground.removeAttribute("d");if(this.isDashed){a=Math.max(1,Math.round(3*this.scale*this.strokewidth));this.innerNode.setAttribute("stroke-dasharray",a+" "+a);this.foreground.setAttribute("stroke-dasharray",a+" "+a)}}; mxCylinder.prototype.redrawPath=function(a,b,c,d,e,f){b=Math.min(this.maxHeight,Math.round(e/5));if(f){a.moveTo(0,b);a.curveTo(0,2*b,d,2*b,d,b)}else{a.moveTo(0,b);a.curveTo(0,-b/3,d,-b/3,d,b);a.lineTo(d,e-b);a.curveTo(d,e+b/3,0,e+b/3,0,e-b);a.close()}};function mxConnector(a,b,c){this.points=a;this.stroke=b;this.strokewidth=c!=null?c:1}mxConnector.prototype=new mxShape;mxConnector.prototype.constructor=mxConnector;mxConnector.prototype.vmlNodes=mxConnector.prototype.vmlNodes.concat("shapeNode start end startStroke endStroke startFill endFill".split(" ")); mxConnector.prototype.mixedModeHtml=!1;mxConnector.prototype.preferModeHtml=!1;mxConnector.prototype.allowCrispMarkers=!1;mxConnector.prototype.addPipe=!0;mxConnector.prototype.configureHtmlShape=function(a){mxShape.prototype.configureHtmlShape.apply(this,arguments);a.style.borderStyle="";a.style.background=""}; mxConnector.prototype.createVml=function(){var a=document.createElement("v:group");a.style.position="absolute";this.shapeNode=document.createElement("v:shape");this.updateVmlStrokeColor(this.shapeNode);this.updateVmlStrokeNode(this.shapeNode);a.appendChild(this.shapeNode);this.shapeNode.filled="false";this.isShadow&&this.createVmlShadow(this.shapeNode);if(this.startArrow!=null){this.start=document.createElement("v:shape");this.start.style.position="absolute";this.startStroke=document.createElement("v:stroke"); @@ -1255,7 +1255,7 @@ mxCellMarker.prototype.process=function(a){var b=null;if(this.isEnabled()){var b mxCellMarker.prototype.markCell=function(a,b){var c=this.graph.getView().getState(a);if(c!=null){this.currentColor=b!=null?b:this.validColor;this.markedState=c;this.mark()}};mxCellMarker.prototype.mark=function(){this.highlight.setHighlightColor(this.currentColor);this.highlight.highlight(this.markedState);this.fireEvent(new mxEventObject(mxEvent.MARK,"state",this.markedState))};mxCellMarker.prototype.unmark=function(){this.mark()};mxCellMarker.prototype.isValidState=function(){return true}; mxCellMarker.prototype.getMarkerColor=function(a,b,c){return c?this.validColor:this.invalidColor};mxCellMarker.prototype.getState=function(a){var b=this.graph.getView();cell=this.getCell(a);b=this.getStateToMark(b.getState(cell));return b!=null&&this.intersects(b,a)?b:null};mxCellMarker.prototype.getCell=function(a){return a.getCell()};mxCellMarker.prototype.getStateToMark=function(a){return a}; mxCellMarker.prototype.intersects=function(a,b){return this.hotspotEnabled?mxUtils.intersectsHotspot(a,b.getGraphX(),b.getGraphY(),this.hotspot,mxConstants.MIN_HOTSPOT_SIZE,mxConstants.MAX_HOTSPOT_SIZE):true};mxCellMarker.prototype.destroy=function(){this.graph.getView().removeListener(this.resetHandler);this.graph.getModel().removeListener(this.resetHandler);this.highlight.destroy()}; -function mxSelectionCellsHandler(a){this.graph=a;this.handlers=new mxDictionary;this.graph.addMouseListener(this);this.refreshHandler=mxUtils.bind(this,function(){this.graph.isEnabled()&&this.refresh()});this.graph.getSelectionModel().addListener(mxEvent.CHANGE,this.refreshHandler);this.graph.getModel().addListener(mxEvent.CHANGE,this.refreshHandler);this.graph.getView().addListener(mxEvent.SCALE,this.refreshHandler);this.graph.getView().addListener(mxEvent.TRANSLATE,this.refreshHandler);this.graph.getView().addListener(mxEvent.SCALE_AND_TRANSLATE, +function mxSelectionCellsHandler(a){this.graph=a;this.handlers=new mxDictionary;this.graph.addMouseListener(this);this.refreshHandler=mxUtils.bind(this,function(){this.isEnabled()&&this.refresh()});this.graph.getSelectionModel().addListener(mxEvent.CHANGE,this.refreshHandler);this.graph.getModel().addListener(mxEvent.CHANGE,this.refreshHandler);this.graph.getView().addListener(mxEvent.SCALE,this.refreshHandler);this.graph.getView().addListener(mxEvent.TRANSLATE,this.refreshHandler);this.graph.getView().addListener(mxEvent.SCALE_AND_TRANSLATE, this.refreshHandler);this.graph.getView().addListener(mxEvent.DOWN,this.refreshHandler);this.graph.getView().addListener(mxEvent.UP,this.refreshHandler)}mxSelectionCellsHandler.prototype.graph=null;mxSelectionCellsHandler.prototype.enabled=!0;mxSelectionCellsHandler.prototype.refreshHandler=null;mxSelectionCellsHandler.prototype.maxHandlers=100;mxSelectionCellsHandler.prototype.handlers=null;mxSelectionCellsHandler.prototype.isEnabled=function(){return this.enabled}; mxSelectionCellsHandler.prototype.setEnabled=function(a){this.enabled=a};mxSelectionCellsHandler.prototype.getHandler=function(a){return this.handlers.get(a)};mxSelectionCellsHandler.prototype.reset=function(){this.handlers.visit(function(a,b){b.reset.apply(b)})}; mxSelectionCellsHandler.prototype.refresh=function(){var a=this.handlers;this.handlers=new mxDictionary;for(var b=this.graph.getSelectionCells(),c=0;c0)?new mxRectangle(a.getGraphX()-b,a.getGraphY()-b,2*b,2*b):null,c=0;c0||b.getState()==this.state)){var c=this.getHandleForEvent(b);if(c!=null){this.start(b.getX(),b.getY(),c);b.consume()}}}; @@ -1425,13 +1425,15 @@ mxTooltipHandler.prototype.hide=function(){this.resetTimer();this.hideTooltip()} mxTooltipHandler.prototype.show=function(a,b,c){if(a!=null&&a.length>0){this.div==null&&this.init();var d=mxUtils.getScrollOrigin();this.div.style.left=b+d.x+"px";this.div.style.top=c+mxConstants.TOOLTIP_VERTICAL_OFFSET+d.y+"px";if(mxUtils.isNode(a)){this.div.innerHTML="";this.div.appendChild(a)}else this.div.innerHTML=a.replace(/\n/g,"
    ");this.div.style.visibility="";mxUtils.fit(this.div)}}; mxTooltipHandler.prototype.destroy=function(){this.graph.removeMouseListener(this);mxEvent.release(this.div);this.div!=null&&this.div.parentNode!=null&&this.div.parentNode.removeChild(this.div);this.div=null};function mxCellTracker(a,b,c){mxCellMarker.call(this,a,b);this.graph.addMouseListener(this);if(c!=null)this.getCell=c;mxClient.IS_IE&&mxEvent.addListener(window,"unload",mxUtils.bind(this,function(){this.destroy()}))}mxCellTracker.prototype=new mxCellMarker; mxCellTracker.prototype.constructor=mxCellTracker;mxCellTracker.prototype.mouseDown=function(){};mxCellTracker.prototype.mouseMove=function(a,b){this.isEnabled()&&this.process(b)};mxCellTracker.prototype.mouseUp=function(){this.reset()};mxCellTracker.prototype.destroy=function(){if(!this.destroyed){this.destroyed=true;this.graph.removeMouseListener(this);mxCellMarker.prototype.destroy.apply(this)}}; -function mxCellHighlight(a,b,c){if(a!=null){this.graph=a;this.highlightColor=b!=null?b:mxConstants.DEFAULT_VALID_COLOR;this.strokeWidth=c!=null?c:mxConstants.HIGHLIGHT_STROKEWIDTH;this.resetHandler=mxUtils.bind(this,function(){this.hide()});this.graph.getView().addListener(mxEvent.SCALE,this.resetHandler);this.graph.getView().addListener(mxEvent.TRANSLATE,this.resetHandler);this.graph.getView().addListener(mxEvent.SCALE_AND_TRANSLATE,this.resetHandler);this.graph.getView().addListener(mxEvent.DOWN, -this.resetHandler);this.graph.getView().addListener(mxEvent.UP,this.resetHandler);this.graph.getModel().addListener(mxEvent.CHANGE,this.resetHandler)}}mxCellHighlight.prototype.keepOnTop=!1;mxCellHighlight.prototype.graph=!0;mxCellHighlight.prototype.state=null;mxCellHighlight.prototype.spacing=2;mxCellHighlight.prototype.resetHandler=null; +function mxCellHighlight(a,b,c){if(a!=null){this.graph=a;this.highlightColor=b!=null?b:mxConstants.DEFAULT_VALID_COLOR;this.strokeWidth=c!=null?c:mxConstants.HIGHLIGHT_STROKEWIDTH;this.repaintHandler=mxUtils.bind(this,function(){this.repaint()});this.graph.getView().addListener(mxEvent.SCALE,this.repaintHandler);this.graph.getView().addListener(mxEvent.TRANSLATE,this.repaintHandler);this.graph.getView().addListener(mxEvent.SCALE_AND_TRANSLATE,this.repaintHandler);this.graph.getModel().addListener(mxEvent.CHANGE, +this.repaintHandler);this.resetHandler=mxUtils.bind(this,function(){this.hide()});this.graph.getView().addListener(mxEvent.DOWN,this.resetHandler);this.graph.getView().addListener(mxEvent.UP,this.resetHandler)}}mxCellHighlight.prototype.keepOnTop=!1;mxCellHighlight.prototype.graph=!0;mxCellHighlight.prototype.state=null;mxCellHighlight.prototype.spacing=2;mxCellHighlight.prototype.resetHandler=null; mxCellHighlight.prototype.setHighlightColor=function(a){this.highlightColor=a;if(this.shape!=null)if(this.shape.dialect==mxConstants.DIALECT_SVG)this.shape.innerNode.setAttribute("stroke",a);else if(this.shape.dialect==mxConstants.DIALECT_VML)this.shape.node.strokecolor=a}; -mxCellHighlight.prototype.drawHighlight=function(a){var b=this.createShape(a);b.redraw();!this.keepOnTop&&b.node.parentNode.firstChild!=b.node&&b.node.parentNode.insertBefore(b.node,b.node.parentNode.firstChild);this.graph.model.isEdge(a.cell)&&mxUtils.repaintGraph(this.graph,b.points[0]);return b}; -mxCellHighlight.prototype.createShape=function(a){var b=null,b=this.graph.model.isEdge(a.cell)?new mxPolyline(a.absolutePoints,this.highlightColor,this.strokeWidth):new mxRectangleShape(new mxRectangle(a.x-this.spacing,a.y-this.spacing,a.width+2*this.spacing,a.height+2*this.spacing),null,this.highlightColor,this.strokeWidth);b.dialect=this.graph.dialect!=mxConstants.DIALECT_SVG?mxConstants.DIALECT_VML:mxConstants.DIALECT_SVG;b.init(this.graph.getView().getOverlayPane());mxEvent.redirectMouseEvents(b.node, -this.graph,a);a.shape!=null&&b.setCursor(a.shape.getCursor());var c=!this.graph.model.isEdge(a.cell)?Number(a.style[mxConstants.STYLE_ROTATION]||"0"):0;if(b.dialect==mxConstants.DIALECT_SVG){b.node.setAttribute("style","pointer-events:none;");if(c!=0){var d=a.getCenterX(),a=a.getCenterY();b.node.setAttribute("transform","rotate("+c+" "+d+" "+a+")")}}else{b.node.style.background="";if(c!=0)b.node.rotation=c}return b};mxCellHighlight.prototype.hide=function(){this.highlight(null)}; -mxCellHighlight.prototype.highlight=function(a){if(this.state!=a){if(this.shape!=null){this.shape.destroy();this.shape=null}if(a!=null)this.shape=this.drawHighlight(a);this.state=a}};mxCellHighlight.prototype.destroy=function(){this.graph.getView().removeListener(this.resetHandler);this.graph.getModel().removeListener(this.resetHandler);if(this.shape!=null){this.shape.destroy();this.shape=null}}; +mxCellHighlight.prototype.drawHighlight=function(){this.shape=this.createShape();this.repaint();!this.keepOnTop&&this.shape.node.parentNode.firstChild!=this.shape.node&&this.shape.node.parentNode.insertBefore(this.shape.node,this.shape.node.parentNode.firstChild);this.graph.model.isEdge(this.state.cell)&&mxUtils.repaintGraph(this.graph,this.shape.points[0])}; +mxCellHighlight.prototype.createShape=function(){var a=null,a=this.graph.model.isEdge(this.state.cell)?new mxPolyline(this.state.absolutePoints,this.highlightColor,this.strokeWidth):new mxRectangleShape(new mxRectangle,null,this.highlightColor,this.strokeWidth);a.dialect=this.graph.dialect!=mxConstants.DIALECT_SVG?mxConstants.DIALECT_VML:mxConstants.DIALECT_SVG;a.init(this.graph.getView().getOverlayPane());mxEvent.redirectMouseEvents(a.node,this.graph,this.state);return a}; +mxCellHighlight.prototype.repaint=function(){if(this.state!=null&&this.shape!=null){this.graph.model.isEdge(this.state.cell)?this.shape.points=this.state.absolutePoints:this.shape.bounds=new mxRectangle(this.state.x-this.spacing,this.state.y-this.spacing,this.state.width+2*this.spacing,this.state.height+2*this.spacing);this.shape.redraw();this.state.shape!=null&&this.shape.setCursor(this.state.shape.getCursor());var a=!this.graph.model.isEdge(this.state.cell)?Number(this.state.style[mxConstants.STYLE_ROTATION]|| +"0"):0;if(this.shape.dialect==mxConstants.DIALECT_SVG){this.shape.node.setAttribute("style","pointer-events:none;");if(a!=0){var b=state.getCenterX(),c=state.getCenterY();this.shape.node.setAttribute("transform","rotate("+a+" "+b+" "+c+")")}}else{this.shape.node.style.background="";if(a!=0)this.shape.node.rotation=a}}};mxCellHighlight.prototype.hide=function(){this.highlight(null)}; +mxCellHighlight.prototype.highlight=function(a){if(this.state!=a){if(this.shape!=null){this.shape.destroy();this.shape=null}this.state=a;this.state!=null&&this.drawHighlight()}}; +mxCellHighlight.prototype.destroy=function(){this.graph.getView().removeListener(this.repaintHandler);this.graph.getModel().removeListener(this.repaintHandler);this.graph.getView().removeListener(this.resetHandler);this.graph.getModel().removeListener(this.resetHandler);if(this.shape!=null){this.shape.destroy();this.shape=null}}; function mxDefaultKeyHandler(a){if(a!=null){this.editor=a;this.handler=new mxKeyHandler(a.graph);var b=this.handler.escape;this.handler.escape=function(c){b.apply(this,arguments);a.hideProperties();a.fireEvent(new mxEventObject(mxEvent.ESCAPE,"event",c))}}}mxDefaultKeyHandler.prototype.editor=null;mxDefaultKeyHandler.prototype.handler=null; mxDefaultKeyHandler.prototype.bindAction=function(a,b,c){var d=mxUtils.bind(this,function(){this.editor.execute(b)});c?this.handler.bindControlKey(a,d):this.handler.bindKey(a,d)};mxDefaultKeyHandler.prototype.destroy=function(){this.handler.destroy();this.handler=null};function mxDefaultPopupMenu(a){this.config=a}mxDefaultPopupMenu.prototype.imageBasePath=null;mxDefaultPopupMenu.prototype.config=null; mxDefaultPopupMenu.prototype.createMenu=function(a,b,c,d){if(this.config!=null){var e=this.createConditions(a,c,d);this.addItems(a,b,c,d,e,this.config.firstChild,null)}}; diff --git a/javascript/src/js/handler/mxCellHighlight.js b/javascript/src/js/handler/mxCellHighlight.js index 111a4f1f9..6006ed20b 100755 --- a/javascript/src/js/handler/mxCellHighlight.js +++ b/javascript/src/js/handler/mxCellHighlight.js @@ -1,5 +1,5 @@ /** - * $Id: mxCellHighlight.js,v 1.22 2012-07-09 16:59:25 gaudenz Exp $ + * $Id: mxCellHighlight.js,v 1.24 2012-07-28 19:17:40 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -24,18 +24,25 @@ function mxCellHighlight(graph, highlightColor, strokeWidth) this.highlightColor = (highlightColor != null) ? highlightColor : mxConstants.DEFAULT_VALID_COLOR; this.strokeWidth = (strokeWidth != null) ? strokeWidth : mxConstants.HIGHLIGHT_STROKEWIDTH; - // Hides the marker if the graph changes - this.resetHandler = mxUtils.bind(this, function(sender) + // Updates the marker if the graph changes + this.repaintHandler = mxUtils.bind(this, function() + { + this.repaint(); + }); + + this.graph.getView().addListener(mxEvent.SCALE, this.repaintHandler); + this.graph.getView().addListener(mxEvent.TRANSLATE, this.repaintHandler); + this.graph.getView().addListener(mxEvent.SCALE_AND_TRANSLATE, this.repaintHandler); + this.graph.getModel().addListener(mxEvent.CHANGE, this.repaintHandler); + + // Hides the marker if the current root changes + this.resetHandler = mxUtils.bind(this, function() { this.hide(); }); - this.graph.getView().addListener(mxEvent.SCALE, this.resetHandler); - this.graph.getView().addListener(mxEvent.TRANSLATE, this.resetHandler); - this.graph.getView().addListener(mxEvent.SCALE_AND_TRANSLATE, this.resetHandler); this.graph.getView().addListener(mxEvent.DOWN, this.resetHandler); this.graph.getView().addListener(mxEvent.UP, this.resetHandler); - this.graph.getModel().addListener(mxEvent.CHANGE, this.resetHandler); } }; @@ -108,23 +115,21 @@ mxCellHighlight.prototype.setHighlightColor = function(color) * * Creates and returns the highlight shape for the given state. */ -mxCellHighlight.prototype.drawHighlight = function(state) +mxCellHighlight.prototype.drawHighlight = function() { - var shape = this.createShape(state); - shape.redraw(); + this.shape = this.createShape(); + this.repaint(); - if (!this.keepOnTop && shape.node.parentNode.firstChild != shape.node) + if (!this.keepOnTop && this.shape.node.parentNode.firstChild != this.shape.node) { - shape.node.parentNode.insertBefore(shape.node, shape.node.parentNode.firstChild); + this.shape.node.parentNode.insertBefore(this.shape.node, this.shape.node.parentNode.firstChild); } // Workaround to force a repaint in AppleWebKit - if (this.graph.model.isEdge(state.cell)) + if (this.graph.model.isEdge(this.state.cell)) { - mxUtils.repaintGraph(this.graph, shape.points[0]); + mxUtils.repaintGraph(this.graph, this.shape.points[0]); } - - return shape; }; /** @@ -132,63 +137,85 @@ mxCellHighlight.prototype.drawHighlight = function(state) * * Creates and returns the highlight shape for the given state. */ -mxCellHighlight.prototype.createShape = function(state) +mxCellHighlight.prototype.createShape = function() { var shape = null; - if (this.graph.model.isEdge(state.cell)) + if (this.graph.model.isEdge(this.state.cell)) { - shape = new mxPolyline(state.absolutePoints, + shape = new mxPolyline(this.state.absolutePoints, this.highlightColor, this.strokeWidth); } else { - shape = new mxRectangleShape( - new mxRectangle(state.x - this.spacing, state.y - this.spacing, - state.width + 2 * this.spacing, state.height + 2 * this.spacing), + shape = new mxRectangleShape( new mxRectangle(), null, this.highlightColor, this.strokeWidth); } shape.dialect = (this.graph.dialect != mxConstants.DIALECT_SVG) ? mxConstants.DIALECT_VML : mxConstants.DIALECT_SVG; shape.init(this.graph.getView().getOverlayPane()); - mxEvent.redirectMouseEvents(shape.node, this.graph, state); - - // Uses cursor from shape in highlight - if (state.shape != null) - { - shape.setCursor(state.shape.getCursor()); - } - - var alpha = (!this.graph.model.isEdge(state.cell)) ? Number(state.style[mxConstants.STYLE_ROTATION] || '0') : 0; - - // Event-transparency - if (shape.dialect == mxConstants.DIALECT_SVG) - { - shape.node.setAttribute('style', 'pointer-events:none;'); - - if (alpha != 0) - { - var cx = state.getCenterX(); - var cy = state.getCenterY(); - var transform = 'rotate(' + alpha + ' ' + cx + ' ' + cy + ')'; - - shape.node.setAttribute('transform', transform); - } - } - else - { - shape.node.style.background = ''; - - if (alpha != 0) - { - shape.node.rotation = alpha; - } - } + mxEvent.redirectMouseEvents(shape.node, this.graph, this.state); return shape; }; + +/** + * Function: repaint + * + * Updates the highlight after a change of the model or view. + */ +mxCellHighlight.prototype.repaint = function() +{ + if (this.state != null && this.shape != null) + { + if (this.graph.model.isEdge(this.state.cell)) + { + this.shape.points = this.state.absolutePoints; + } + else + { + this.shape.bounds = new mxRectangle(this.state.x - this.spacing, this.state.y - this.spacing, + this.state.width + 2 * this.spacing, this.state.height + 2 * this.spacing); + } + + this.shape.redraw(); + + // Uses cursor from shape in highlight + if (this.state.shape != null) + { + this.shape.setCursor(this.state.shape.getCursor()); + } + + var alpha = (!this.graph.model.isEdge(this.state.cell)) ? Number(this.state.style[mxConstants.STYLE_ROTATION] || '0') : 0; + + // Event-transparency + if (this.shape.dialect == mxConstants.DIALECT_SVG) + { + this.shape.node.setAttribute('style', 'pointer-events:none;'); + + if (alpha != 0) + { + var cx = state.getCenterX(); + var cy = state.getCenterY(); + var transform = 'rotate(' + alpha + ' ' + cx + ' ' + cy + ')'; + + this.shape.node.setAttribute('transform', transform); + } + } + else + { + this.shape.node.style.background = ''; + + if (alpha != 0) + { + this.shape.node.rotation = alpha; + } + } + } +}; + /** * Function: hide * @@ -214,12 +241,12 @@ mxCellHighlight.prototype.highlight = function(state) this.shape = null; } - if (state != null) - { - this.shape = this.drawHighlight(state); - } - this.state = state; + + if (this.state != null) + { + this.drawHighlight(); + } } }; @@ -230,6 +257,9 @@ mxCellHighlight.prototype.highlight = function(state) */ mxCellHighlight.prototype.destroy = function() { + this.graph.getView().removeListener(this.repaintHandler); + this.graph.getModel().removeListener(this.repaintHandler); + this.graph.getView().removeListener(this.resetHandler); this.graph.getModel().removeListener(this.resetHandler); diff --git a/javascript/src/js/handler/mxSelectionCellsHandler.js b/javascript/src/js/handler/mxSelectionCellsHandler.js index 81c9ab63e..ec10363aa 100755 --- a/javascript/src/js/handler/mxSelectionCellsHandler.js +++ b/javascript/src/js/handler/mxSelectionCellsHandler.js @@ -1,5 +1,5 @@ /** - * $Id: mxSelectionCellsHandler.js,v 1.3 2012-03-18 19:07:35 gaudenz Exp $ + * $Id: mxSelectionCellsHandler.js,v 1.4 2012-07-25 08:23:43 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -20,7 +20,7 @@ function mxSelectionCellsHandler(graph) this.refreshHandler = mxUtils.bind(this, function(sender, evt) { - if (this.graph.isEnabled()) + if (this.isEnabled()) { this.refresh(); } diff --git a/javascript/src/js/handler/mxVertexHandler.js b/javascript/src/js/handler/mxVertexHandler.js index b8a3a0ee8..f65726bc6 100755 --- a/javascript/src/js/handler/mxVertexHandler.js +++ b/javascript/src/js/handler/mxVertexHandler.js @@ -1,5 +1,5 @@ /** - * $Id: mxVertexHandler.js,v 1.103 2012-06-20 14:35:55 gaudenz Exp $ + * $Id: mxVertexHandler.js,v 1.104 2012-07-25 08:26:23 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -252,9 +252,13 @@ mxVertexHandler.prototype.createSizer = function(cursor, index, size, fillColor) sizer.init(this.graph.getView().getOverlayPane()); } - sizer.node.style.cursor = cursor; mxEvent.redirectMouseEvents(sizer.node, this.graph, this.state); + if (this.graph.isEnabled()) + { + sizer.node.style.cursor = cursor; + } + if (!this.isSizerVisible(index)) { sizer.node.style.visibility = 'hidden'; diff --git a/javascript/src/js/mxClient.js b/javascript/src/js/mxClient.js index 977a53f3f..6fbf7681f 100644 --- a/javascript/src/js/mxClient.js +++ b/javascript/src/js/mxClient.js @@ -21,9 +21,9 @@ var mxClient = * * versionMajor.versionMinor.buildNumber.revisionNumber * - * Current version is 1.10.2.0. + * Current version is 1.10.2.1. */ - VERSION: '1.10.2.0', + VERSION: '1.10.2.1', /** * Variable: IS_IE diff --git a/javascript/src/js/shape/mxActor.js b/javascript/src/js/shape/mxActor.js index f9dd67285..e6a0765d2 100755 --- a/javascript/src/js/shape/mxActor.js +++ b/javascript/src/js/shape/mxActor.js @@ -1,5 +1,5 @@ /** - * $Id: mxActor.js,v 1.34 2012-05-28 09:40:59 gaudenz Exp $ + * $Id: mxActor.js,v 1.35 2012-07-31 11:46:53 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -125,7 +125,7 @@ mxActor.prototype.redrawSvg = function() this.innerNode.setAttribute('stroke-width', strokeWidth); this.innerNode.setAttribute('stroke-linejoin', 'round'); - if (this.crisp) + if (this.crisp && (this.rotation == null || this.rotation == 0)) { this.innerNode.setAttribute('shape-rendering', 'crispEdges'); } diff --git a/javascript/src/js/shape/mxCylinder.js b/javascript/src/js/shape/mxCylinder.js index 48900958f..9a45760d5 100755 --- a/javascript/src/js/shape/mxCylinder.js +++ b/javascript/src/js/shape/mxCylinder.js @@ -1,5 +1,5 @@ /** - * $Id: mxCylinder.js,v 1.37 2012-05-28 09:40:59 gaudenz Exp $ + * $Id: mxCylinder.js,v 1.38 2012-07-31 11:46:53 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -221,7 +221,7 @@ mxCylinder.prototype.redrawSvg = function() var strokeWidth = Math.round(Math.max(1, this.strokewidth * this.scale)); this.innerNode.setAttribute('stroke-width', strokeWidth); - if (this.crisp) + if (this.crisp && (this.rotation == null || this.rotation == 0)) { this.innerNode.setAttribute('shape-rendering', 'crispEdges'); this.foreground.setAttribute('shape-rendering', 'crispEdges'); diff --git a/javascript/src/js/shape/mxShape.js b/javascript/src/js/shape/mxShape.js index e5e5ecdd5..44ba3e77d 100755 --- a/javascript/src/js/shape/mxShape.js +++ b/javascript/src/js/shape/mxShape.js @@ -1,5 +1,5 @@ /** - * $Id: mxShape.js,v 1.172 2012-07-16 15:28:41 gaudenz Exp $ + * $Id: mxShape.js,v 1.173 2012-07-31 11:46:53 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -1544,7 +1544,8 @@ mxShape.prototype.updateSvgScale = function(node) node.setAttribute('stroke-dasharray', phase + ' ' + phase); } - if (this.crisp && (this.roundedCrispSvg || this.isRounded != true)) + if (this.crisp && (this.roundedCrispSvg || this.isRounded != true) && + (this.rotation == null || this.rotation == 0)) { node.setAttribute('shape-rendering', 'crispEdges'); } diff --git a/php/src/mxServer.php b/php/src/mxServer.php index 41eb0d08d..530977f99 100644 --- a/php/src/mxServer.php +++ b/php/src/mxServer.php @@ -5,15 +5,15 @@ * * Class: mxServer * - * Bootstrapping for the PHP backend. This is version 1.10.2.0 + * Bootstrapping for the PHP backend. This is version 1.10.2.1 * of mxGraph. * * Variable: MXGRAPH-VERSION * * Constant that holds the current mxGraph version. The current version - * is 1.10.2.0. + * is 1.10.2.1. */ -define("MXGRAPH-VERSION", "1.10.2.0"); +define("MXGRAPH-VERSION", "1.10.2.1"); include_once("util/mxLog.php"); include_once("util/mxConstants.php");