diff --git a/ChangeLog b/ChangeLog index 52d095f76..c2ba01d44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +03-SEP-2013: 2.1.1.1 + +- Fixes non-native double click handling in quirks mode [JavaScript] +- Adds anchors.html example [JavaScript] +- Hides rotation handle for small vertices in mxVertexHandler [JavaScript] +- Adds parent orientation in mxSwimlaneManager.resizeSwimlane [JavaScript,Java] +- Ignores overlapping points in mxConnectorShape.getMarkerVector, mxGraphics2DCanvas.paintPolyline [Java] +- Adds cloning of label in mxCellState.clone [Java] +- Fixes minor bug in mxConnectionHandler.createMarker [JavaScript] + 21-AUG-2013: 2.1.1.0 - Adds mxCellEditor.isEventSource hook [JavaScript] diff --git a/docs/js-api/files/mxClient-js.html b/docs/js-api/files/mxClient-js.html index 2d0a68703..e30e99866 100644 --- a/docs/js-api/files/mxClient-js.html +++ b/docs/js-api/files/mxClient-js.html @@ -15,7 +15,7 @@ if (browserType) {document.write("
");if (browserV

Variables

-

VERSION

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

versionMajor.versionMinor.buildNumber.revisionNumber

Current version is 2.1.1.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 2.1.1.1.

IS_IE

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

True if the current browser is Internet Explorer.

diff --git a/docs/js-api/files/view/mxSwimlaneManager-js.html b/docs/js-api/files/view/mxSwimlaneManager-js.html index d5d5b82a7..2e0ddb271 100644 --- a/docs/js-api/files/view/mxSwimlaneManager-js.html +++ b/docs/js-api/files/view/mxSwimlaneManager-js.html @@ -65,7 +65,7 @@ if (browserType) {document.write("
");if (browserV

cellsResized

mxSwimlaneManager.prototype.cellsResized = function(cells)

Called if any cells have been resizes.  Calls <swimlaneResized> for all swimlanes where isSwimlaneIgnored returns false.

Parameters

cellsArray of mxCells whose size was changed.
-

resizeSwimlane

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.

Parameters

swimlanemxCell whose size has changed.
+

resizeSwimlane

mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h,
parentHorizontal)

Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if <bubbling> is true.

Parameters

swimlanemxCell whose size has changed.

destroy

mxSwimlaneManager.prototype.destroy = function()

Removes all handlers from the graph and deletes the reference to it.

@@ -83,7 +83,7 @@ HideAllBut([11], 13);// -->
-
function mxSwimlaneManager(graph,
horizontal,
addEnabled,
resizeEnabled)
Constructs a new swimlane manager for the given graph.
mxSwimlaneManager.prototype.graph
Reference to the enclosing mxGraph.
Extends mxEventSource to implement a graph component for the browser.
mxSwimlaneManager.prototype.enabled
Specifies if event handling is enabled.
mxSwimlaneManager.prototype.horizontal
Specifies the orientation of the swimlanes.
mxSwimlaneManager.prototype.addEnabled
Specifies if newly added cells should be resized to match the size of their existing siblings.
mxSwimlaneManager.prototype.resizeEnabled
Specifies if resizing of swimlanes should be handled.
mxSwimlaneManager.prototype.isEnabled = function()
Returns true if events are handled.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.isHorizontal = function()
Returns horizontal.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxSwimlaneManager.prototype.isAddEnabled = function()
Returns addEnabled.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxSwimlaneManager.prototype.isResizeEnabled = function()
Returns resizeEnabled.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxSwimlaneManager.prototype.getGraph = function()
Returns the graph that this manager operates on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxSwimlaneManager.prototype.isSwimlaneIgnored = function(swimlane)
Returns true if the given swimlane should be ignored.
mxSwimlaneManager.prototype.isCellHorizontal = function(cell)
Returns true if the given cell is horizontal.
mxSwimlaneManager.prototype.cellsAdded = function(cells)
Called if any cells have been added.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
mxSwimlaneManager.prototype.cellsResized = function(cells)
Called if any cells have been resizes.
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.
mxSwimlaneManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
Cells are the elements of the graph model.
+
function mxSwimlaneManager(graph,
horizontal,
addEnabled,
resizeEnabled)
Constructs a new swimlane manager for the given graph.
mxSwimlaneManager.prototype.graph
Reference to the enclosing mxGraph.
Extends mxEventSource to implement a graph component for the browser.
mxSwimlaneManager.prototype.enabled
Specifies if event handling is enabled.
mxSwimlaneManager.prototype.horizontal
Specifies the orientation of the swimlanes.
mxSwimlaneManager.prototype.addEnabled
Specifies if newly added cells should be resized to match the size of their existing siblings.
mxSwimlaneManager.prototype.resizeEnabled
Specifies if resizing of swimlanes should be handled.
mxSwimlaneManager.prototype.isEnabled = function()
Returns true if events are handled.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.isHorizontal = function()
Returns horizontal.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxSwimlaneManager.prototype.isAddEnabled = function()
Returns addEnabled.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxSwimlaneManager.prototype.isResizeEnabled = function()
Returns resizeEnabled.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxSwimlaneManager.prototype.getGraph = function()
Returns the graph that this manager operates on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxSwimlaneManager.prototype.isSwimlaneIgnored = function(swimlane)
Returns true if the given swimlane should be ignored.
mxSwimlaneManager.prototype.isCellHorizontal = function(cell)
Returns true if the given cell is horizontal.
mxSwimlaneManager.prototype.cellsAdded = function(cells)
Called if any cells have been added.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
mxSwimlaneManager.prototype.cellsResized = function(cells)
Called if any cells have been resizes.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h,
parentHorizontal)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
mxSwimlaneManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
Cells are the elements of the graph model.
diff --git a/docs/js-api/index/Functions15.html b/docs/js-api/index/Functions15.html index 8b34d2152..659276070 100644 --- a/docs/js-api/index/Functions15.html +++ b/docs/js-api/index/Functions15.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
R
 rankCoordinates, mxCoordinateAssignment
 rankMedianPosition, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 reconfigure, mxShape
 rect
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 redirectMouseEvents, mxEvent
 redo
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawHandles
 redrawHtml, mxRectangleShape
 redrawHtmlShape
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxShape
 reduceTemperature, mxFastOrganicLayout
 reference, mxCodec
 refresh
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgGradients, mxShape
 remove
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent, mxGraph
 removeCursors, mxUtils
 removeEdge, mxCell
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeGestureListeners, mxEvent
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderPage, mxPrintPreview
 repaint
 repositionValid, mxCoordinateAssignment
 reset
 resetEdge, mxGraph
 resetEdges, mxGraph
 resetFirstTime, mxEditor
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resize
 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
 rotateCell, mxVertexHandler
 rotateLabelBounds, mxCellRenderer
 rotatePoint, mxAbstractCanvas2D
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run
-
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSvgCanvas2D.prototype.rect = function(x,
y,
w,
h)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Sets the current path to a rectangle.
mxXmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Puts a rectangle into the drawing buffer.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
mxEdgeSegmentHandler.prototype.redraw = function()
Overridden to invoke refresh before the redraw.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redrawHtmlShape = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Reconfigures this shape.
mxShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state,
forced)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state,
forced)
Redraws the control for the given cell state.
mxEdgeHandler.prototype.redrawHandles = function()
Redraws the handles.
mxVertexHandler.prototype.redrawHandles = function()
Redraws the handles.
mxRectangleShape.prototype.redrawHtmlShape = function()
Allow optimization by replacing VML with HTML.
mxLabel.prototype.redrawHtmlShape = function()
Generic background painting implementation.
mxText.prototype.redrawHtmlShape = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state,
forced)
Redraws the label for the given cell state.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(c,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxShape.prototype.releaseSvgGradients = function(grads)
Paints the line shape.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
removeGestureListeners: function(node,
startListener,
moveListener,
endListener)
Removes the given listeners from mousedown, mousemove, mouseup and the respective touch events if mxClient.IS_TOUCH is true.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxPrintPreview.prototype.renderPage = function(w,
h,
content)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxCellHighlight.prototype.repaint = function()
Updates the highlight after a change of the model or view.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxAbstractCanvas2D.prototype.reset = function()
Resets the state of this canvas.
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxSvgCanvas2D.prototype.reset = function()
Returns any offsets for rendering pixels.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxCellEditor.prototype.resize = function()
Returns modified.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
mxGraph.prototype.resizeCell = function(cell,
bounds)
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.
mxAbstractCanvas2D.prototype.restore = function()
Restores the current state.
mxXmlCanvas2D.prototype.restore = function()
Restores the drawing state.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
mxSvgCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxVmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxXmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the output around a given center.
mxVertexHandler.prototype.rotateCell = function(cell,
delta)
Rotates the given cell to the given rotation.
mxCellRenderer.prototype.rotateLabelBounds = function(state,
bounds)
Adds the shape rotation to the given label bounds and applies the alignment and offsets.
mxAbstractCanvas2D.prototype.rotatePoint = function(x,
y,
theta,
cx,
cy)
Rotates the given point and returns the result as an mxPoint.
mxSvgCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxXmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Puts a rounded rectangle into the drawing buffer.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
mxSwimlaneLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
+
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSvgCanvas2D.prototype.rect = function(x,
y,
w,
h)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Sets the current path to a rectangle.
mxXmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Puts a rectangle into the drawing buffer.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
mxEdgeSegmentHandler.prototype.redraw = function()
Overridden to invoke refresh before the redraw.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redrawHtmlShape = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Reconfigures this shape.
mxShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state,
forced)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state,
forced)
Redraws the control for the given cell state.
mxEdgeHandler.prototype.redrawHandles = function()
Redraws the handles.
mxVertexHandler.prototype.redrawHandles = function()
Redraws the handles.
mxRectangleShape.prototype.redrawHtmlShape = function()
Allow optimization by replacing VML with HTML.
mxLabel.prototype.redrawHtmlShape = function()
Generic background painting implementation.
mxText.prototype.redrawHtmlShape = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state,
forced)
Redraws the label for the given cell state.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(c,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxShape.prototype.releaseSvgGradients = function(grads)
Paints the line shape.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
removeGestureListeners: function(node,
startListener,
moveListener,
endListener)
Removes the given listeners from mousedown, mousemove, mouseup and the respective touch events if mxClient.IS_TOUCH is true.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxPrintPreview.prototype.renderPage = function(w,
h,
content)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxCellHighlight.prototype.repaint = function()
Updates the highlight after a change of the model or view.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxAbstractCanvas2D.prototype.reset = function()
Resets the state of this canvas.
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxSvgCanvas2D.prototype.reset = function()
Returns any offsets for rendering pixels.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxCellEditor.prototype.resize = function()
Returns modified.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
mxGraph.prototype.resizeCell = function(cell,
bounds)
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,
parentHorizontal)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
mxAbstractCanvas2D.prototype.restore = function()
Restores the current state.
mxXmlCanvas2D.prototype.restore = function()
Restores the drawing state.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
mxSvgCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxVmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxXmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the output around a given center.
mxVertexHandler.prototype.rotateCell = function(cell,
delta)
Rotates the given cell to the given rotation.
mxCellRenderer.prototype.rotateLabelBounds = function(state,
bounds)
Adds the shape rotation to the given label bounds and applies the alignment and offsets.
mxAbstractCanvas2D.prototype.rotatePoint = function(x,
y,
theta,
cx,
cy)
Rotates the given point and returns the result as an mxPoint.
mxSvgCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxXmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Puts a rounded rectangle into the drawing buffer.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
mxSwimlaneLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
diff --git a/docs/js-api/index/General15.html b/docs/js-api/index/General15.html index 88cea1c8f..3ebf0a541 100644 --- a/docs/js-api/index/General15.html +++ b/docs/js-api/index/General15.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
R
 radius
 radiusSquared, mxFastOrganicLayout
 rankBottomY, mxCoordinateAssignment
 rankCoordinates, mxCoordinateAssignment
 rankIndex, WeightedCellSorter
 rankMedianPosition, mxCoordinateAssignment
 ranks
 ranksPerGroup, mxSwimlaneModel
 rankTopY, mxCoordinateAssignment
 rankWidths, mxCoordinateAssignment
 rankY, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 RECEIVE
 received, mxSession
 reconfigure, mxShape
 rect
 RECTANGLE_ROUNDING_FACTOR, mxConstants
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 redirectMouseEvents, mxEvent
 redo
 REDO
 redone, mxUndoableEdit
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawHandles
 redrawHtml, mxRectangleShape
 redrawHtmlShape
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxShape
 reduceTemperature, mxFastOrganicLayout
 refCount, mxSvgCanvas2D
 reference, mxCodec
 refresh
 REFRESH
 refreshHandler, mxSelectionCellsHandler
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relative, mxGeometry
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgGradients, mxShape
 remove
 REMOVE
 REMOVE_CELLS
 REMOVE_CELLS_FROM_PARENT
 REMOVE_OVERLAY
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent
 removeCursors, mxUtils
 removeEdge, mxCell
 removeEnabled, mxEdgeHandler
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeGestureListeners, mxEvent
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderHint, mxGraph
 rendering, mxGraphView
 RENDERING_HINT_EXACT, mxConstants
 RENDERING_HINT_FASTER, mxConstants
 RENDERING_HINT_FASTEST, mxConstants
 renderPage, mxPrintPreview
 repaint
 replaceLinefeeds, mxText
 repositionValid, mxCoordinateAssignment
 request, mxXmlRequest
 reset
 RESET
 resetEdge, mxGraph
 resetEdges
 resetEdgesOnConnect, mxGraph
 resetEdgesOnMove, mxGraph
 resetEdgesOnResize, mxGraph
 resetFirstTime, mxEditor
 resetHandler
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resetViewOnRootChange, mxGraph
 resize
 RESIZE
 RESIZE_CELLS
 RESIZE_END
 RESIZE_START
 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
 resourcesEncoded, mxResources
 restore
 restoreClone, mxGraphModel
 resume, mxSession
 RESUME
 revalidate, mxGraphView
 revalidateState, mxCellStatePreview
 reverse, mxObjectCodec
 reversePortConstraints, mxUtils
 RhombusPerimeter, mxPerimeter
 root
 ROOT
 rootChanged, mxGraphModel
 roots
 rotate
 rotateCell, mxVertexHandler
 rotatedHtmlBackground, mxVmlCanvas2D
 rotateHtml, mxAbstractCanvas2D
 rotateLabelBounds, mxCellRenderer
 rotatePoint, mxAbstractCanvas2D
 ROTATION_HANDLE, mxEvent
 rotationEnabled
 rotationRaster, mxVertexHandler
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run
-
mxCircleLayout.prototype.radius
Integer specifying the size of the radius.
mxFastOrganicLayout.prototype.radius
The approximate radius of each cell, nodes only.
mxFastOrganicLayout.prototype.radiusSquared
The approximate radius squared of each cell, nodes only.
mxCoordinateAssignment.prototype.rankBottomY
Internal cache of bottom-most value of Y for each rank
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
WeightedCellSorter.prototype.rankIndex
The index this cell is in the model rank.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxGraphHierarchyModel.prototype.ranks
Mapping from rank number to actual rank
mxSwimlaneModel.prototype.ranks
Mapping from rank number to actual rank
mxSwimlaneModel.prototype.ranksPerGroup
An array of the number of ranks within each swimlane
mxCoordinateAssignment.prototype.rankTopY
Internal cache of top-most values of Y for each rank
mxCoordinateAssignment.prototype.rankWidths
The width of all the ranks
mxCoordinateAssignment.prototype.rankY
The Y-coordinate of all the ranks
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
Specifies the event name for receive.
Fires after an XML node was received in receive.
mxSession.prototype.received
Total number of received bytes.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSvgCanvas2D.prototype.rect = function(x,
y,
w,
h)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Sets the current path to a rectangle.
mxXmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Puts a rectangle into the drawing buffer.
Defines the rounding factor for rounded rectangles in percent between 0 and 1.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
Specifies the event name for redo.
Fires afer a significant edit was redone in redo.
mxUndoableEdit.prototype.redone
Specifies if this edit has been redone.
mxEdgeSegmentHandler.prototype.redraw = function()
Overridden to invoke refresh before the redraw.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redrawHtmlShape = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Reconfigures this shape.
mxShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state,
forced)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state,
forced)
Redraws the control for the given cell state.
mxEdgeHandler.prototype.redrawHandles = function()
Redraws the handles.
mxVertexHandler.prototype.redrawHandles = function()
Redraws the handles.
mxRectangleShape.prototype.redrawHtmlShape = function()
Allow optimization by replacing VML with HTML.
mxLabel.prototype.redrawHtmlShape = function()
Generic background painting implementation.
mxText.prototype.redrawHtmlShape = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state,
forced)
Redraws the label for the given cell state.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(c,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxSvgCanvas2D.prototype.refCount
Local counter for references in SVG export.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
Specifies the event name for refresh.
Fires after refresh was executed.
mxSelectionCellsHandler.prototype.refreshHandler
Keeps a reference to an event listener for later removal.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
mxGeometry.prototype.relative
Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxShape.prototype.releaseSvgGradients = function(grads)
Paints the line shape.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
Specifies the event name for remove.
Fires if a cell has been remove from the selection.
Specifies the event name for removeCells.
Fires between begin- and endUpdate in removeCells.
Specifies the event name for removeCellsFromParent.
Fires between begin- and endUpdate in removeCellsFromParent.
Specifies the event name for removeOverlay.
Fires after an overlay is removed in removeCellOverlay and removeCellOverlays.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
mxGraphHandler.prototype.removeCellsFromParent
Specifies if cells may be moved out of their parents.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxEdgeHandler.prototype.removeEnabled
Specifies if removing bends by shift-click is enabled.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
removeGestureListeners: function(node,
startListener,
moveListener,
endListener)
Removes the given listeners from mousedown, mousemove, mouseup and the respective touch events if mxClient.IS_TOUCH is true.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxGraph.prototype.renderHint
RenderHint as it was passed to the constructor.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
Defines the exact rendering hint.
Defines the faster rendering hint.
Defines the fastest rendering hint.
mxPrintPreview.prototype.renderPage = function(w,
h,
content)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxCellHighlight.prototype.repaint = function()
Updates the highlight after a change of the model or view.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
mxText.prototype.replaceLinefeeds
Specifies if linefeeds in HTML labels should be replaced with BR tags.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxXmlRequest.prototype.request
Holds the inner, browser-specific request object.
mxAbstractCanvas2D.prototype.reset = function()
Resets the state of this canvas.
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxSvgCanvas2D.prototype.reset = function()
Returns any offsets for rendering pixels.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
Fires when the reset method is invoked.
RESET: 'reset' }
Specifies the event name for reset.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxCircleLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxCompactTreeLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxFastOrganicLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxGraph.prototype.resetEdgesOnConnect
Specifies if edge control points should be reset after the the edge has been reconnected.
mxGraph.prototype.resetEdgesOnMove
Specifies if edge control points should be reset after the move of a connected cell.
mxGraph.prototype.resetEdgesOnResize
Specifies if edge control points should be reset after the resize of a connected cell.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxCellHighlight.prototype.resetHandler
Holds the handler that automatically invokes reset if the highlight should be hidden.
mxDefaultToolbar.prototype.resetHandler
Reference to the function used to reset the toolbar.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxGraph.prototype.resetViewOnRootChange
Specifies if the scale and translate should be reset if the root changes in the model.
mxCellEditor.prototype.resize = function()
Returns modified.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
Specifies the event name for resize.
Fires while the window is being resized.
Specifies the event name for resizeCells.
Fires between begin- and endUpdate in resizeCells.
Specifies the event name for resizeEnd.
Fires after the window is resized.
Specifies the event name for resizeStart.
Fires before the window is resized.
mxGraph.prototype.resizeCell = function(cell,
bounds)
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.
mxSwimlaneLayout.prototype.resizeParent
Specifies if the parent should be resized after the layout so that it contains all the child cells.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
mxPartitionLayout.prototype.resizeVertices
Boolean that specifies if vertices should be resized.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
Associative array that maps from keys to values.
Specifies whether or not values in resource files are encoded with \u or percentage.
mxAbstractCanvas2D.prototype.restore = function()
Restores the current state.
mxXmlCanvas2D.prototype.restore = function()
Restores the drawing state.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
Specifies the event name for suspend.
Fires after the session was resumed in resume.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
mxObjectCodec.prototype.reverse
Maps from from XML attribute names to fieldnames.
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
this.root
Reference to the container for the SVG content.
this.root
Reference to the container for the SVG content.
this.root
Reference to the container for the SVG content.
Fires when the current root has changed, or when the title of the current root has changed.
Specifies the event name for root.
Fires if the root in the model has changed.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
mxGraphHierarchyModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxHierarchicalLayout.prototype.roots
Holds the array of mxCell that this layout contains.
mxSwimlaneLayout.prototype.roots
Holds the array of mxCell that this layout contains.
mxSwimlaneModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxSvgCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxVmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxXmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the output around a given center.
mxVertexHandler.prototype.rotateCell = function(cell,
delta)
Rotates the given cell to the given rotation.
mxVmlCanvas2D.prototype.rotatedHtmlBackground
Background color for rotated HTML.
mxAbstractCanvas2D.prototype.rotateHtml
Switch for rotation of HTML.
mxCellRenderer.prototype.rotateLabelBounds = function(state,
bounds)
Adds the shape rotation to the given label bounds and applies the alignment and offsets.
mxAbstractCanvas2D.prototype.rotatePoint = function(x,
y,
theta,
cx,
cy)
Rotates the given point and returns the result as an mxPoint.
Index for the rotation handle in an mxMouseEvent.
mxGraphHandler.prototype.rotationEnabled
Specifies if the bounding box should allow for rotation.
mxVertexHandler.prototype.rotationEnabled
Specifies if a rotation handle should be visible.
mxVertexHandler.prototype.rotationRaster
Specifies if rotation steps should be “rasterized” depening on the distance to the handle.
mxSvgCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxXmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Puts a rounded rectangle into the drawing buffer.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
mxSwimlaneLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
+
mxCircleLayout.prototype.radius
Integer specifying the size of the radius.
mxFastOrganicLayout.prototype.radius
The approximate radius of each cell, nodes only.
mxFastOrganicLayout.prototype.radiusSquared
The approximate radius squared of each cell, nodes only.
mxCoordinateAssignment.prototype.rankBottomY
Internal cache of bottom-most value of Y for each rank
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
WeightedCellSorter.prototype.rankIndex
The index this cell is in the model rank.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxGraphHierarchyModel.prototype.ranks
Mapping from rank number to actual rank
mxSwimlaneModel.prototype.ranks
Mapping from rank number to actual rank
mxSwimlaneModel.prototype.ranksPerGroup
An array of the number of ranks within each swimlane
mxCoordinateAssignment.prototype.rankTopY
Internal cache of top-most values of Y for each rank
mxCoordinateAssignment.prototype.rankWidths
The width of all the ranks
mxCoordinateAssignment.prototype.rankY
The Y-coordinate of all the ranks
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
Specifies the event name for receive.
Fires after an XML node was received in receive.
mxSession.prototype.received
Total number of received bytes.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSvgCanvas2D.prototype.rect = function(x,
y,
w,
h)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Sets the current path to a rectangle.
mxXmlCanvas2D.prototype.rect = function(x,
y,
w,
h)
Puts a rectangle into the drawing buffer.
Defines the rounding factor for rounded rectangles in percent between 0 and 1.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
Specifies the event name for redo.
Fires afer a significant edit was redone in redo.
mxUndoableEdit.prototype.redone
Specifies if this edit has been redone.
mxEdgeSegmentHandler.prototype.redraw = function()
Overridden to invoke refresh before the redraw.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redrawHtmlShape = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Reconfigures this shape.
mxShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state,
forced)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state,
forced)
Redraws the control for the given cell state.
mxEdgeHandler.prototype.redrawHandles = function()
Redraws the handles.
mxVertexHandler.prototype.redrawHandles = function()
Redraws the handles.
mxRectangleShape.prototype.redrawHtmlShape = function()
Allow optimization by replacing VML with HTML.
mxLabel.prototype.redrawHtmlShape = function()
Generic background painting implementation.
mxText.prototype.redrawHtmlShape = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state,
forced)
Redraws the label for the given cell state.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(c,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(c,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxSvgCanvas2D.prototype.refCount
Local counter for references in SVG export.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
Specifies the event name for refresh.
Fires after refresh was executed.
mxSelectionCellsHandler.prototype.refreshHandler
Keeps a reference to an event listener for later removal.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
mxGeometry.prototype.relative
Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxShape.prototype.releaseSvgGradients = function(grads)
Paints the line shape.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
Specifies the event name for remove.
Fires if a cell has been remove from the selection.
Specifies the event name for removeCells.
Fires between begin- and endUpdate in removeCells.
Specifies the event name for removeCellsFromParent.
Fires between begin- and endUpdate in removeCellsFromParent.
Specifies the event name for removeOverlay.
Fires after an overlay is removed in removeCellOverlay and removeCellOverlays.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
mxGraphHandler.prototype.removeCellsFromParent
Specifies if cells may be moved out of their parents.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxEdgeHandler.prototype.removeEnabled
Specifies if removing bends by shift-click is enabled.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
removeGestureListeners: function(node,
startListener,
moveListener,
endListener)
Removes the given listeners from mousedown, mousemove, mouseup and the respective touch events if mxClient.IS_TOUCH is true.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxGraph.prototype.renderHint
RenderHint as it was passed to the constructor.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
Defines the exact rendering hint.
Defines the faster rendering hint.
Defines the fastest rendering hint.
mxPrintPreview.prototype.renderPage = function(w,
h,
content)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxCellHighlight.prototype.repaint = function()
Updates the highlight after a change of the model or view.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
mxText.prototype.replaceLinefeeds
Specifies if linefeeds in HTML labels should be replaced with BR tags.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxXmlRequest.prototype.request
Holds the inner, browser-specific request object.
mxAbstractCanvas2D.prototype.reset = function()
Resets the state of this canvas.
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxSvgCanvas2D.prototype.reset = function()
Returns any offsets for rendering pixels.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
Fires when the reset method is invoked.
RESET: 'reset' }
Specifies the event name for reset.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxCircleLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxCompactTreeLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxFastOrganicLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxGraph.prototype.resetEdgesOnConnect
Specifies if edge control points should be reset after the the edge has been reconnected.
mxGraph.prototype.resetEdgesOnMove
Specifies if edge control points should be reset after the move of a connected cell.
mxGraph.prototype.resetEdgesOnResize
Specifies if edge control points should be reset after the resize of a connected cell.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxCellHighlight.prototype.resetHandler
Holds the handler that automatically invokes reset if the highlight should be hidden.
mxDefaultToolbar.prototype.resetHandler
Reference to the function used to reset the toolbar.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxGraph.prototype.resetViewOnRootChange
Specifies if the scale and translate should be reset if the root changes in the model.
mxCellEditor.prototype.resize = function()
Returns modified.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
Specifies the event name for resize.
Fires while the window is being resized.
Specifies the event name for resizeCells.
Fires between begin- and endUpdate in resizeCells.
Specifies the event name for resizeEnd.
Fires after the window is resized.
Specifies the event name for resizeStart.
Fires before the window is resized.
mxGraph.prototype.resizeCell = function(cell,
bounds)
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.
mxSwimlaneLayout.prototype.resizeParent
Specifies if the parent should be resized after the layout so that it contains all the child cells.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h,
parentHorizontal)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
mxPartitionLayout.prototype.resizeVertices
Boolean that specifies if vertices should be resized.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
Associative array that maps from keys to values.
Specifies whether or not values in resource files are encoded with \u or percentage.
mxAbstractCanvas2D.prototype.restore = function()
Restores the current state.
mxXmlCanvas2D.prototype.restore = function()
Restores the drawing state.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
Specifies the event name for suspend.
Fires after the session was resumed in resume.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
mxObjectCodec.prototype.reverse
Maps from from XML attribute names to fieldnames.
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
this.root
Reference to the container for the SVG content.
this.root
Reference to the container for the SVG content.
this.root
Reference to the container for the SVG content.
Fires when the current root has changed, or when the title of the current root has changed.
Specifies the event name for root.
Fires if the root in the model has changed.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
mxGraphHierarchyModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxHierarchicalLayout.prototype.roots
Holds the array of mxCell that this layout contains.
mxSwimlaneLayout.prototype.roots
Holds the array of mxCell that this layout contains.
mxSwimlaneModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxSvgCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxVmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Sets the rotation of the canvas.
mxXmlCanvas2D.prototype.rotate = function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the output around a given center.
mxVertexHandler.prototype.rotateCell = function(cell,
delta)
Rotates the given cell to the given rotation.
mxVmlCanvas2D.prototype.rotatedHtmlBackground
Background color for rotated HTML.
mxAbstractCanvas2D.prototype.rotateHtml
Switch for rotation of HTML.
mxCellRenderer.prototype.rotateLabelBounds = function(state,
bounds)
Adds the shape rotation to the given label bounds and applies the alignment and offsets.
mxAbstractCanvas2D.prototype.rotatePoint = function(x,
y,
theta,
cx,
cy)
Rotates the given point and returns the result as an mxPoint.
Index for the rotation handle in an mxMouseEvent.
mxGraphHandler.prototype.rotationEnabled
Specifies if the bounding box should allow for rotation.
mxVertexHandler.prototype.rotationEnabled
Specifies if a rotation handle should be visible.
mxVertexHandler.prototype.rotationRaster
Specifies if rotation steps should be “rasterized” depening on the distance to the handle.
mxSvgCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Private helper function to create SVG elements
mxVmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxXmlCanvas2D.prototype.roundrect = function(x,
y,
w,
h,
dx,
dy)
Puts a rounded rectangle into the drawing buffer.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
mxSwimlaneLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
diff --git a/docs/manual.html b/docs/manual.html index 2b7b5d272..75098b7b7 100644 --- a/docs/manual.html +++ b/docs/manual.html @@ -9,7 +9,7 @@

mxGraph User Manual – JavaScript Client



-

mxGraph Version 2.1.1.0 – 21. August 2013

+

mxGraph Version 2.1.1.1 – 03. September 2013

Copyright (c) JGraph Ltd 2006-2013


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

JGraphX (JGraph 6) User Manual



-

JGraphX Version 2.1.1.0 – 21. August 2013

+

JGraphX Version 2.1.1.1 – 03. September 2013

Copyright (c) JGraph Ltd 2006-2012


All rights reserved. No part of this publication may be diff --git a/dotnet/docs/html/annotated.html b/dotnet/docs/html/annotated.html index 8df605891..d09bba011 100644 --- a/dotnet/docs/html/annotated.html +++ b/dotnet/docs/html/annotated.html @@ -113,7 +113,7 @@

diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas-members.html index 48f085256..20a2e9b31 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas-members.html @@ -81,7 +81,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas.html index 175ce4d13..41010eb58 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxBasicCanvas.html @@ -360,7 +360,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell-members.html index 7db249f2e..ca2fbd9e4 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell-members.html @@ -118,7 +118,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell.html index 57caea8d8..5754266c5 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCell.html @@ -1286,7 +1286,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec-members.html index adb8a8a33..339430c1e 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec-members.html @@ -111,7 +111,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec.html index 13be14209..c8ebdcbb4 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellCodec.html @@ -114,7 +114,7 @@ Public Member Functions diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath-members.html index 75cfae112..83e248fbd 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath-members.html @@ -73,7 +73,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath.html index 3d4e40905..ceeb0bf80 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellPath.html @@ -200,7 +200,7 @@ Static Public Attributes diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer-members.html index f9ee4de22..28958a4b3 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer-members.html @@ -72,7 +72,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer.html index d3c704238..be37c8990 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer.html @@ -257,7 +257,7 @@ Static Public Member Functions diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory-members.html index 464c68071..abef9e35a 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory-members.html @@ -71,7 +71,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html index b37bb089a..94f2df812 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html @@ -128,7 +128,7 @@ Public Member Functions diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory-members.html index bc4e3bd54..fb9042e18 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory-members.html @@ -75,7 +75,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html index abe64142e..1c37bbff2 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html @@ -229,7 +229,7 @@ Protected Attributes diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState-members.html index 0e64cf2d3..397b37c82 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState-members.html @@ -123,7 +123,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState.html index 21152c13b..d47fed942 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCellState.html @@ -674,7 +674,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec-members.html index ac5971770..aacb5d764 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec-members.html @@ -91,7 +91,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec.html index 3d097a467..f6b84451f 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodec.html @@ -716,7 +716,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry-members.html index 60e56225c..219e02864 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry-members.html @@ -79,7 +79,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry.html index d9bc93b8d..5aeeda69a 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxCodecRegistry.html @@ -332,7 +332,7 @@ Static Protected Attributes diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint-members.html index 314a0bec6..92ed9eb38 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint-members.html @@ -76,7 +76,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint.html index dbceda139..3b69bb3b8 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConnectionConstraint.html @@ -240,7 +240,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants-members.html index 348b7fa00..d3861fcb3 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants-members.html @@ -217,7 +217,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants.html index 50c7fd881..6b538bb20 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxConstants.html @@ -2617,7 +2617,7 @@ Static Public Attributes diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle-members.html index 9b2b2150f..655b381e3 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle-members.html @@ -74,7 +74,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle.html index 14c0c6d02..68590eb65 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxEdgeStyle.html @@ -170,7 +170,7 @@ Static Public Attributes diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout-members.html index 59a3740f8..0a6226075 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout-members.html @@ -102,7 +102,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout.html index 82ead34e6..90be6c962 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxFastOrganicLayout.html @@ -743,7 +743,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas-members.html index 11b1fe682..f529b1d1e 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas-members.html @@ -107,7 +107,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas.html index 5e9d07bed..74a37e29a 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas.html @@ -1481,7 +1481,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D-members.html index 90a7654b0..3e24009e9 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D-members.html @@ -137,7 +137,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D.html index c27d76a08..774fb6f08 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D.html @@ -1908,7 +1908,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState-members.html index a69417951..5574ab398 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState-members.html @@ -71,7 +71,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState.html index ed25a26dc..48b6460a7 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState.html @@ -99,7 +99,7 @@ Public Member Functions diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry-members.html index 70f3e8e0b..125f0a6b0 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry-members.html @@ -114,7 +114,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry.html index d336ee626..be922b45c 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGeometry.html @@ -555,7 +555,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph-members.html index 678cc56ca..0af42bd4b 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph-members.html @@ -162,7 +162,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph.html index 8a7321765..0c460f91e 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph.html @@ -224,8 +224,8 @@ Public Member Functions  Called when the graph model has changed to invalidate the view.

Public Attributes

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

Protected Member Functions

mxStylesheet CreateStylesheet () @@ -2968,13 +2968,13 @@ Properties
- +
const String com.mxgraph.mxGraph.VERSION = "2.1.1.0"const String com.mxgraph.mxGraph.VERSION = "2.1.1.1"
-

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

+

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

@@ -3121,7 +3121,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel-members.html index bc6a5a8ae..4215cc84f 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel-members.html @@ -137,7 +137,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel.html index e72c34494..3ba009b9a 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphModel.html @@ -2300,7 +2300,7 @@ Events diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView-members.html index 7a7480135..56141a19b 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView-members.html @@ -119,7 +119,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView.html index 9d25c1764..ec059a596 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphView.html @@ -1538,7 +1538,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader-members.html index dce657198..6bf6bfff4 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader-members.html @@ -95,7 +95,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader.html index 85d5e9de7..fc0a710ba 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewImageReader.html @@ -521,7 +521,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader-members.html index a0c781d41..41c6e605e 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader-members.html @@ -79,7 +79,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader.html index 3c122be71..08f5a0a80 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraphViewReader.html @@ -358,7 +358,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle-members.html index 9430658a0..8e728fe2b 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle-members.html @@ -73,7 +73,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle.html index 83d8d97b6..1005a8de9 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageBundle.html @@ -185,7 +185,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas-members.html index 3078b37e1..c1fbac1a3 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas-members.html @@ -80,7 +80,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas.html index 0c965deab..d0d56b80e 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxImageCanvas.html @@ -364,7 +364,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec-members.html index 7f52d5819..2a3648a40 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec-members.html @@ -113,7 +113,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec.html index f7de474a2..063e5c8a9 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxModelCodec.html @@ -260,7 +260,7 @@ Protected Member Functions diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec-members.html index 4451d204f..e76dc7965 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec-members.html @@ -110,7 +110,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec.html index 5e4a1c905..1012fa1fd 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxObjectCodec.html @@ -1568,7 +1568,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter-members.html index e86a29b1c..58a3a2b61 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter-members.html @@ -73,7 +73,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter.html index 5bcbe7963..094321b46 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPerimeter.html @@ -153,7 +153,7 @@ Static Public Attributes diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint-members.html index 7794e2e9a..943ff98f9 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint-members.html @@ -80,7 +80,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint.html index 73c4665e3..be933d802 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxPoint.html @@ -353,7 +353,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle-members.html index eb6c56e0b..b4bbca874 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle-members.html @@ -95,7 +95,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle.html index aadf23bf2..5c0add417 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxRectangle.html @@ -541,7 +541,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler-members.html index 83c42a6db..f01b96988 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler-members.html @@ -85,7 +85,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler.html index ae7947478..dfb715140 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSaxOutputHandler.html @@ -284,7 +284,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession-members.html index 9d2302492..2977ae02f 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession-members.html @@ -84,7 +84,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession.html index 8c9df5adf..c1ef69fb2 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSession.html @@ -432,7 +432,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram-members.html index 6e61d787b..769673a4f 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram-members.html @@ -79,7 +79,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram.html index 2ca55b82d..8cdb26e81 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxSharedDiagram.html @@ -317,7 +317,7 @@ Events diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil-members.html index 970f94662..db3425ae7 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil-members.html @@ -92,7 +92,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil.html index 96e1a8cf1..b82ec3bc9 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencil.html @@ -806,7 +806,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry-members.html index ae5645026..c225999f4 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry-members.html @@ -72,7 +72,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry.html index c37787567..b3cae8781 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStencilRegistry.html @@ -152,7 +152,7 @@ static Dictionary< string,
diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry-members.html index 3c5be47f8..883b725ab 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry-members.html @@ -73,7 +73,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry.html index 484e72208..fc5049170 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStyleRegistry.html @@ -179,7 +179,7 @@ Static Protected Attributes diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet-members.html index 6f23c6387..78d07f8e0 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet-members.html @@ -79,7 +79,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet.html index abb002ad0..5510bc26c 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheet.html @@ -328,7 +328,7 @@ Properties diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec-members.html index 2be732e6a..10118fe20 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec-members.html @@ -114,7 +114,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec.html index e14fdb5da..5627fbef5 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxStylesheetCodec.html @@ -275,7 +275,7 @@ Protected Member Functions diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils-members.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils-members.html index c5761b1c0..c046d1fcf 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils-members.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils-members.html @@ -123,7 +123,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils.html index aa8641f05..efeed8228 100644 --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils.html +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxUtils.html @@ -2266,7 +2266,7 @@ Static Public Member Functions diff --git a/dotnet/docs/html/classes.html b/dotnet/docs/html/classes.html index 55fbf6d56..15dde4f02 100644 --- a/dotnet/docs/html/classes.html +++ b/dotnet/docs/html/classes.html @@ -79,7 +79,7 @@ diff --git a/dotnet/docs/html/dir_1179442bf228cab7bd4d4e2e0ddc1458.html b/dotnet/docs/html/dir_1179442bf228cab7bd4d4e2e0ddc1458.html index 75a92e5b2..28f4d9af4 100644 --- a/dotnet/docs/html/dir_1179442bf228cab7bd4d4e2e0ddc1458.html +++ b/dotnet/docs/html/dir_1179442bf228cab7bd4d4e2e0ddc1458.html @@ -70,7 +70,7 @@ Files diff --git a/dotnet/docs/html/dir_205351e87b536693cced78e8dee0fa3e.html b/dotnet/docs/html/dir_205351e87b536693cced78e8dee0fa3e.html index 6c32fa620..da682d247 100644 --- a/dotnet/docs/html/dir_205351e87b536693cced78e8dee0fa3e.html +++ b/dotnet/docs/html/dir_205351e87b536693cced78e8dee0fa3e.html @@ -71,7 +71,7 @@ Directories diff --git a/dotnet/docs/html/dir_610406434e6f9d0301a71f953a744e49.html b/dotnet/docs/html/dir_610406434e6f9d0301a71f953a744e49.html index 6bd81d1d9..6747776e1 100644 --- a/dotnet/docs/html/dir_610406434e6f9d0301a71f953a744e49.html +++ b/dotnet/docs/html/dir_610406434e6f9d0301a71f953a744e49.html @@ -72,7 +72,7 @@ Files diff --git a/dotnet/docs/html/dir_960c412c123a7e1c8dd7bc6cf4f35dbe.html b/dotnet/docs/html/dir_960c412c123a7e1c8dd7bc6cf4f35dbe.html index 8c9e2a9d4..fe90cf99d 100644 --- a/dotnet/docs/html/dir_960c412c123a7e1c8dd7bc6cf4f35dbe.html +++ b/dotnet/docs/html/dir_960c412c123a7e1c8dd7bc6cf4f35dbe.html @@ -70,7 +70,7 @@ Files diff --git a/dotnet/docs/html/dir_96da2601d863413e75bdc100ea940324.html b/dotnet/docs/html/dir_96da2601d863413e75bdc100ea940324.html index be4cddd21..c428f91ce 100644 --- a/dotnet/docs/html/dir_96da2601d863413e75bdc100ea940324.html +++ b/dotnet/docs/html/dir_96da2601d863413e75bdc100ea940324.html @@ -66,7 +66,7 @@ Files diff --git a/dotnet/docs/html/dir_98c853f1d36d623a62cbf5a9cee6a3f1.html b/dotnet/docs/html/dir_98c853f1d36d623a62cbf5a9cee6a3f1.html index c2da18a80..5d6cd13e9 100644 --- a/dotnet/docs/html/dir_98c853f1d36d623a62cbf5a9cee6a3f1.html +++ b/dotnet/docs/html/dir_98c853f1d36d623a62cbf5a9cee6a3f1.html @@ -70,7 +70,7 @@ Files diff --git a/dotnet/docs/html/dir_a54e5691f3417b2421121504d53b0a24.html b/dotnet/docs/html/dir_a54e5691f3417b2421121504d53b0a24.html index 00fa12ac0..c4a0f70cf 100644 --- a/dotnet/docs/html/dir_a54e5691f3417b2421121504d53b0a24.html +++ b/dotnet/docs/html/dir_a54e5691f3417b2421121504d53b0a24.html @@ -72,7 +72,7 @@ Files diff --git a/dotnet/docs/html/dir_dd81411fd7f51ae097b84a3798461967.html b/dotnet/docs/html/dir_dd81411fd7f51ae097b84a3798461967.html index c3d0c42d0..6218e0682 100644 --- a/dotnet/docs/html/dir_dd81411fd7f51ae097b84a3798461967.html +++ b/dotnet/docs/html/dir_dd81411fd7f51ae097b84a3798461967.html @@ -67,7 +67,7 @@ Files diff --git a/dotnet/docs/html/dir_f27368f44534187243475534272d8d7f.html b/dotnet/docs/html/dir_f27368f44534187243475534272d8d7f.html index 692fa3a35..9679d9bda 100644 --- a/dotnet/docs/html/dir_f27368f44534187243475534272d8d7f.html +++ b/dotnet/docs/html/dir_f27368f44534187243475534272d8d7f.html @@ -66,7 +66,7 @@ Files diff --git a/dotnet/docs/html/dirs.html b/dotnet/docs/html/dirs.html index 559c85fd7..13bae70f2 100644 --- a/dotnet/docs/html/dirs.html +++ b/dotnet/docs/html/dirs.html @@ -67,7 +67,7 @@ diff --git a/dotnet/docs/html/functions.html b/dotnet/docs/html/functions.html index 6b26ec95b..5c1c819c0 100644 --- a/dotnet/docs/html/functions.html +++ b/dotnet/docs/html/functions.html @@ -215,7 +215,7 @@ diff --git a/dotnet/docs/html/functions_0x62.html b/dotnet/docs/html/functions_0x62.html index 53b90eded..a2cfac8a1 100644 --- a/dotnet/docs/html/functions_0x62.html +++ b/dotnet/docs/html/functions_0x62.html @@ -137,7 +137,7 @@ diff --git a/dotnet/docs/html/functions_0x63.html b/dotnet/docs/html/functions_0x63.html index 608668c2b..4fc24e5cd 100644 --- a/dotnet/docs/html/functions_0x63.html +++ b/dotnet/docs/html/functions_0x63.html @@ -287,7 +287,7 @@ diff --git a/dotnet/docs/html/functions_0x64.html b/dotnet/docs/html/functions_0x64.html index 64a7792d2..2ab446106 100644 --- a/dotnet/docs/html/functions_0x64.html +++ b/dotnet/docs/html/functions_0x64.html @@ -300,7 +300,7 @@ diff --git a/dotnet/docs/html/functions_0x65.html b/dotnet/docs/html/functions_0x65.html index 34ef2a58a..0b5edc5ae 100644 --- a/dotnet/docs/html/functions_0x65.html +++ b/dotnet/docs/html/functions_0x65.html @@ -202,7 +202,7 @@ diff --git a/dotnet/docs/html/functions_0x66.html b/dotnet/docs/html/functions_0x66.html index fcc511350..01bead3ca 100644 --- a/dotnet/docs/html/functions_0x66.html +++ b/dotnet/docs/html/functions_0x66.html @@ -169,7 +169,7 @@ diff --git a/dotnet/docs/html/functions_0x67.html b/dotnet/docs/html/functions_0x67.html index d462e4e39..b09b2d709 100644 --- a/dotnet/docs/html/functions_0x67.html +++ b/dotnet/docs/html/functions_0x67.html @@ -490,7 +490,7 @@ diff --git a/dotnet/docs/html/functions_0x68.html b/dotnet/docs/html/functions_0x68.html index c6044f0df..9358822d9 100644 --- a/dotnet/docs/html/functions_0x68.html +++ b/dotnet/docs/html/functions_0x68.html @@ -118,7 +118,7 @@ diff --git a/dotnet/docs/html/functions_0x69.html b/dotnet/docs/html/functions_0x69.html index d79c5117a..6c817ab10 100644 --- a/dotnet/docs/html/functions_0x69.html +++ b/dotnet/docs/html/functions_0x69.html @@ -270,7 +270,7 @@ diff --git a/dotnet/docs/html/functions_0x6c.html b/dotnet/docs/html/functions_0x6c.html index ac9d32028..55e094e34 100644 --- a/dotnet/docs/html/functions_0x6c.html +++ b/dotnet/docs/html/functions_0x6c.html @@ -174,7 +174,7 @@ diff --git a/dotnet/docs/html/functions_0x6d.html b/dotnet/docs/html/functions_0x6d.html index d124b86ba..fe1557adb 100644 --- a/dotnet/docs/html/functions_0x6d.html +++ b/dotnet/docs/html/functions_0x6d.html @@ -223,7 +223,7 @@ diff --git a/dotnet/docs/html/functions_0x6e.html b/dotnet/docs/html/functions_0x6e.html index c05994cfa..d6cbc71e6 100644 --- a/dotnet/docs/html/functions_0x6e.html +++ b/dotnet/docs/html/functions_0x6e.html @@ -118,7 +118,7 @@ diff --git a/dotnet/docs/html/functions_0x6f.html b/dotnet/docs/html/functions_0x6f.html index 754473b71..48ea02178 100644 --- a/dotnet/docs/html/functions_0x6f.html +++ b/dotnet/docs/html/functions_0x6f.html @@ -115,7 +115,7 @@ diff --git a/dotnet/docs/html/functions_0x70.html b/dotnet/docs/html/functions_0x70.html index 582e6a754..0b92d3ac2 100644 --- a/dotnet/docs/html/functions_0x70.html +++ b/dotnet/docs/html/functions_0x70.html @@ -198,7 +198,7 @@ diff --git a/dotnet/docs/html/functions_0x71.html b/dotnet/docs/html/functions_0x71.html index a67066d3a..2ae4b2b4c 100644 --- a/dotnet/docs/html/functions_0x71.html +++ b/dotnet/docs/html/functions_0x71.html @@ -101,7 +101,7 @@ diff --git a/dotnet/docs/html/functions_0x72.html b/dotnet/docs/html/functions_0x72.html index b0b315b0b..e5dc2365d 100644 --- a/dotnet/docs/html/functions_0x72.html +++ b/dotnet/docs/html/functions_0x72.html @@ -210,7 +210,7 @@ diff --git a/dotnet/docs/html/functions_0x73.html b/dotnet/docs/html/functions_0x73.html index 5c8c35061..b09dc1081 100644 --- a/dotnet/docs/html/functions_0x73.html +++ b/dotnet/docs/html/functions_0x73.html @@ -565,7 +565,7 @@ diff --git a/dotnet/docs/html/functions_0x74.html b/dotnet/docs/html/functions_0x74.html index 069c17573..c32cc5638 100644 --- a/dotnet/docs/html/functions_0x74.html +++ b/dotnet/docs/html/functions_0x74.html @@ -164,7 +164,7 @@ diff --git a/dotnet/docs/html/functions_0x75.html b/dotnet/docs/html/functions_0x75.html index b9a0ba40c..f1b7c5994 100644 --- a/dotnet/docs/html/functions_0x75.html +++ b/dotnet/docs/html/functions_0x75.html @@ -139,7 +139,7 @@ diff --git a/dotnet/docs/html/functions_0x76.html b/dotnet/docs/html/functions_0x76.html index 2510e7ebb..df710d72d 100644 --- a/dotnet/docs/html/functions_0x76.html +++ b/dotnet/docs/html/functions_0x76.html @@ -146,7 +146,7 @@ diff --git a/dotnet/docs/html/functions_0x77.html b/dotnet/docs/html/functions_0x77.html index 5a32f41c1..7b0726571 100644 --- a/dotnet/docs/html/functions_0x77.html +++ b/dotnet/docs/html/functions_0x77.html @@ -121,7 +121,7 @@ diff --git a/dotnet/docs/html/functions_0x78.html b/dotnet/docs/html/functions_0x78.html index 6b4e1ea5d..a7edc48f2 100644 --- a/dotnet/docs/html/functions_0x78.html +++ b/dotnet/docs/html/functions_0x78.html @@ -103,7 +103,7 @@ diff --git a/dotnet/docs/html/functions_0x79.html b/dotnet/docs/html/functions_0x79.html index 3b204b5f3..5ba04283a 100644 --- a/dotnet/docs/html/functions_0x79.html +++ b/dotnet/docs/html/functions_0x79.html @@ -103,7 +103,7 @@ diff --git a/dotnet/docs/html/functions_evnt.html b/dotnet/docs/html/functions_evnt.html index 7c49deef3..cbf4ccb78 100644 --- a/dotnet/docs/html/functions_evnt.html +++ b/dotnet/docs/html/functions_evnt.html @@ -75,7 +75,7 @@ diff --git a/dotnet/docs/html/functions_func.html b/dotnet/docs/html/functions_func.html index ee6fe7db7..b92507151 100644 --- a/dotnet/docs/html/functions_func.html +++ b/dotnet/docs/html/functions_func.html @@ -131,7 +131,7 @@ diff --git a/dotnet/docs/html/functions_func_0x62.html b/dotnet/docs/html/functions_func_0x62.html index 940d8d9da..78d22b003 100644 --- a/dotnet/docs/html/functions_func_0x62.html +++ b/dotnet/docs/html/functions_func_0x62.html @@ -108,7 +108,7 @@ diff --git a/dotnet/docs/html/functions_func_0x63.html b/dotnet/docs/html/functions_func_0x63.html index 97a43e525..4fa38bb35 100644 --- a/dotnet/docs/html/functions_func_0x63.html +++ b/dotnet/docs/html/functions_func_0x63.html @@ -219,7 +219,7 @@ diff --git a/dotnet/docs/html/functions_func_0x64.html b/dotnet/docs/html/functions_func_0x64.html index fcc390f97..911ef5e1f 100644 --- a/dotnet/docs/html/functions_func_0x64.html +++ b/dotnet/docs/html/functions_func_0x64.html @@ -203,7 +203,7 @@ diff --git a/dotnet/docs/html/functions_func_0x65.html b/dotnet/docs/html/functions_func_0x65.html index 9cec62265..6cdb7add6 100644 --- a/dotnet/docs/html/functions_func_0x65.html +++ b/dotnet/docs/html/functions_func_0x65.html @@ -143,7 +143,7 @@ diff --git a/dotnet/docs/html/functions_func_0x66.html b/dotnet/docs/html/functions_func_0x66.html index cba143659..0868645c9 100644 --- a/dotnet/docs/html/functions_func_0x66.html +++ b/dotnet/docs/html/functions_func_0x66.html @@ -110,7 +110,7 @@ diff --git a/dotnet/docs/html/functions_func_0x67.html b/dotnet/docs/html/functions_func_0x67.html index 13e250be6..3e8b626ec 100644 --- a/dotnet/docs/html/functions_func_0x67.html +++ b/dotnet/docs/html/functions_func_0x67.html @@ -432,7 +432,7 @@ diff --git a/dotnet/docs/html/functions_func_0x68.html b/dotnet/docs/html/functions_func_0x68.html index a2790c5b2..f24149b99 100644 --- a/dotnet/docs/html/functions_func_0x68.html +++ b/dotnet/docs/html/functions_func_0x68.html @@ -99,7 +99,7 @@ diff --git a/dotnet/docs/html/functions_func_0x69.html b/dotnet/docs/html/functions_func_0x69.html index 094902b8f..18fe62f30 100644 --- a/dotnet/docs/html/functions_func_0x69.html +++ b/dotnet/docs/html/functions_func_0x69.html @@ -199,7 +199,7 @@ diff --git a/dotnet/docs/html/functions_func_0x6c.html b/dotnet/docs/html/functions_func_0x6c.html index 8334961ad..83818a989 100644 --- a/dotnet/docs/html/functions_func_0x6c.html +++ b/dotnet/docs/html/functions_func_0x6c.html @@ -108,7 +108,7 @@ diff --git a/dotnet/docs/html/functions_func_0x6d.html b/dotnet/docs/html/functions_func_0x6d.html index 8d0af80b4..585437734 100644 --- a/dotnet/docs/html/functions_func_0x6d.html +++ b/dotnet/docs/html/functions_func_0x6d.html @@ -182,7 +182,7 @@ diff --git a/dotnet/docs/html/functions_func_0x70.html b/dotnet/docs/html/functions_func_0x70.html index 7d417e5ca..56966c8f1 100644 --- a/dotnet/docs/html/functions_func_0x70.html +++ b/dotnet/docs/html/functions_func_0x70.html @@ -148,7 +148,7 @@ diff --git a/dotnet/docs/html/functions_func_0x71.html b/dotnet/docs/html/functions_func_0x71.html index 12dce2a45..1bf72571c 100644 --- a/dotnet/docs/html/functions_func_0x71.html +++ b/dotnet/docs/html/functions_func_0x71.html @@ -97,7 +97,7 @@ diff --git a/dotnet/docs/html/functions_func_0x72.html b/dotnet/docs/html/functions_func_0x72.html index adcd38d7f..98dbff6af 100644 --- a/dotnet/docs/html/functions_func_0x72.html +++ b/dotnet/docs/html/functions_func_0x72.html @@ -170,7 +170,7 @@ diff --git a/dotnet/docs/html/functions_func_0x73.html b/dotnet/docs/html/functions_func_0x73.html index fb5723f47..34f0338b6 100644 --- a/dotnet/docs/html/functions_func_0x73.html +++ b/dotnet/docs/html/functions_func_0x73.html @@ -175,7 +175,7 @@ diff --git a/dotnet/docs/html/functions_func_0x74.html b/dotnet/docs/html/functions_func_0x74.html index 45374aa5a..bf78d95bc 100644 --- a/dotnet/docs/html/functions_func_0x74.html +++ b/dotnet/docs/html/functions_func_0x74.html @@ -111,7 +111,7 @@ diff --git a/dotnet/docs/html/functions_func_0x75.html b/dotnet/docs/html/functions_func_0x75.html index 5be1e1f6e..16c379942 100644 --- a/dotnet/docs/html/functions_func_0x75.html +++ b/dotnet/docs/html/functions_func_0x75.html @@ -132,7 +132,7 @@ diff --git a/dotnet/docs/html/functions_func_0x76.html b/dotnet/docs/html/functions_func_0x76.html index be477b1c1..a705fb8ef 100644 --- a/dotnet/docs/html/functions_func_0x76.html +++ b/dotnet/docs/html/functions_func_0x76.html @@ -102,7 +102,7 @@ diff --git a/dotnet/docs/html/functions_func_0x77.html b/dotnet/docs/html/functions_func_0x77.html index 55178ccdc..21a22de6b 100644 --- a/dotnet/docs/html/functions_func_0x77.html +++ b/dotnet/docs/html/functions_func_0x77.html @@ -102,7 +102,7 @@ diff --git a/dotnet/docs/html/functions_prop.html b/dotnet/docs/html/functions_prop.html index aff69e6a4..fafa10750 100644 --- a/dotnet/docs/html/functions_prop.html +++ b/dotnet/docs/html/functions_prop.html @@ -491,7 +491,7 @@ diff --git a/dotnet/docs/html/functions_vars.html b/dotnet/docs/html/functions_vars.html index e92967923..39c6c2914 100644 --- a/dotnet/docs/html/functions_vars.html +++ b/dotnet/docs/html/functions_vars.html @@ -160,7 +160,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x62.html b/dotnet/docs/html/functions_vars_0x62.html index 4eef745f2..240348a09 100644 --- a/dotnet/docs/html/functions_vars_0x62.html +++ b/dotnet/docs/html/functions_vars_0x62.html @@ -112,7 +112,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x63.html b/dotnet/docs/html/functions_vars_0x63.html index 6aac48a26..c62e16c56 100644 --- a/dotnet/docs/html/functions_vars_0x63.html +++ b/dotnet/docs/html/functions_vars_0x63.html @@ -134,7 +134,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x64.html b/dotnet/docs/html/functions_vars_0x64.html index 12fcdead7..ff839d0de 100644 --- a/dotnet/docs/html/functions_vars_0x64.html +++ b/dotnet/docs/html/functions_vars_0x64.html @@ -159,7 +159,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x65.html b/dotnet/docs/html/functions_vars_0x65.html index fad693a51..e0076d19c 100644 --- a/dotnet/docs/html/functions_vars_0x65.html +++ b/dotnet/docs/html/functions_vars_0x65.html @@ -147,7 +147,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x66.html b/dotnet/docs/html/functions_vars_0x66.html index 541d99405..f32976783 100644 --- a/dotnet/docs/html/functions_vars_0x66.html +++ b/dotnet/docs/html/functions_vars_0x66.html @@ -120,7 +120,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x67.html b/dotnet/docs/html/functions_vars_0x67.html index 75f307a33..f40a3098b 100644 --- a/dotnet/docs/html/functions_vars_0x67.html +++ b/dotnet/docs/html/functions_vars_0x67.html @@ -121,7 +121,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x68.html b/dotnet/docs/html/functions_vars_0x68.html index f1caf640e..23d84b05a 100644 --- a/dotnet/docs/html/functions_vars_0x68.html +++ b/dotnet/docs/html/functions_vars_0x68.html @@ -108,7 +108,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x69.html b/dotnet/docs/html/functions_vars_0x69.html index 9ea98f452..830788626 100644 --- a/dotnet/docs/html/functions_vars_0x69.html +++ b/dotnet/docs/html/functions_vars_0x69.html @@ -130,7 +130,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x6c.html b/dotnet/docs/html/functions_vars_0x6c.html index c2297c4e4..a64b2d7ad 100644 --- a/dotnet/docs/html/functions_vars_0x6c.html +++ b/dotnet/docs/html/functions_vars_0x6c.html @@ -141,7 +141,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x6d.html b/dotnet/docs/html/functions_vars_0x6d.html index c4fceae08..1cf4ce230 100644 --- a/dotnet/docs/html/functions_vars_0x6d.html +++ b/dotnet/docs/html/functions_vars_0x6d.html @@ -120,7 +120,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x6e.html b/dotnet/docs/html/functions_vars_0x6e.html index 1cbd8f739..c9ff6f9cf 100644 --- a/dotnet/docs/html/functions_vars_0x6e.html +++ b/dotnet/docs/html/functions_vars_0x6e.html @@ -117,7 +117,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x6f.html b/dotnet/docs/html/functions_vars_0x6f.html index 3f1fb4283..231a94e36 100644 --- a/dotnet/docs/html/functions_vars_0x6f.html +++ b/dotnet/docs/html/functions_vars_0x6f.html @@ -105,7 +105,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x70.html b/dotnet/docs/html/functions_vars_0x70.html index b51ca6aee..ac8d0b6ed 100644 --- a/dotnet/docs/html/functions_vars_0x70.html +++ b/dotnet/docs/html/functions_vars_0x70.html @@ -129,7 +129,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x72.html b/dotnet/docs/html/functions_vars_0x72.html index 59c5ac5ef..f075c69c1 100644 --- a/dotnet/docs/html/functions_vars_0x72.html +++ b/dotnet/docs/html/functions_vars_0x72.html @@ -123,7 +123,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x73.html b/dotnet/docs/html/functions_vars_0x73.html index 791a75a9a..a0885f895 100644 --- a/dotnet/docs/html/functions_vars_0x73.html +++ b/dotnet/docs/html/functions_vars_0x73.html @@ -424,7 +424,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x74.html b/dotnet/docs/html/functions_vars_0x74.html index 8f8d9323c..de268c06d 100644 --- a/dotnet/docs/html/functions_vars_0x74.html +++ b/dotnet/docs/html/functions_vars_0x74.html @@ -127,7 +127,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x75.html b/dotnet/docs/html/functions_vars_0x75.html index 21da87f42..4292add15 100644 --- a/dotnet/docs/html/functions_vars_0x75.html +++ b/dotnet/docs/html/functions_vars_0x75.html @@ -99,7 +99,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x76.html b/dotnet/docs/html/functions_vars_0x76.html index 94cdf487c..57f57e58c 100644 --- a/dotnet/docs/html/functions_vars_0x76.html +++ b/dotnet/docs/html/functions_vars_0x76.html @@ -118,7 +118,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x77.html b/dotnet/docs/html/functions_vars_0x77.html index 92212a559..4e204bb0d 100644 --- a/dotnet/docs/html/functions_vars_0x77.html +++ b/dotnet/docs/html/functions_vars_0x77.html @@ -108,7 +108,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x78.html b/dotnet/docs/html/functions_vars_0x78.html index dc9f193bb..6df0b0845 100644 --- a/dotnet/docs/html/functions_vars_0x78.html +++ b/dotnet/docs/html/functions_vars_0x78.html @@ -99,7 +99,7 @@ diff --git a/dotnet/docs/html/functions_vars_0x79.html b/dotnet/docs/html/functions_vars_0x79.html index 60cdc0991..18fe06053 100644 --- a/dotnet/docs/html/functions_vars_0x79.html +++ b/dotnet/docs/html/functions_vars_0x79.html @@ -99,7 +99,7 @@ diff --git a/dotnet/docs/html/hierarchy.html b/dotnet/docs/html/hierarchy.html index 38f783864..bdd19171b 100644 --- a/dotnet/docs/html/hierarchy.html +++ b/dotnet/docs/html/hierarchy.html @@ -129,7 +129,7 @@ diff --git a/dotnet/docs/html/index.html b/dotnet/docs/html/index.html index e1f3cb2d7..c8e9526df 100644 --- a/dotnet/docs/html/index.html +++ b/dotnet/docs/html/index.html @@ -54,7 +54,7 @@ diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas-members.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas-members.html index d4083d897..6abc49321 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas-members.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas-members.html @@ -73,7 +73,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas.html index 2477dd6d4..3c5c0c78d 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas.html @@ -216,7 +216,7 @@ Properties diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D-members.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D-members.html index 0f7b70be6..f2bf4090f 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D-members.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D-members.html @@ -108,7 +108,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D.html index 1cf24e47c..99e3176ec 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICanvas2D.html @@ -1305,7 +1305,7 @@ Properties diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell-members.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell-members.html index dbb1a549f..5bc58fff4 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell-members.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell-members.html @@ -96,7 +96,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell.html index 96eb26f3e..018d4eef0 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxICell.html @@ -812,7 +812,7 @@ Properties diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout-members.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout-members.html index 42963ec7b..dbaab342d 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout-members.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout-members.html @@ -71,7 +71,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout.html index 4d1d12ea2..64d76e0d9 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphLayout.html @@ -170,7 +170,7 @@ Public Member Functions diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel-members.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel-members.html index 50363ab48..7045ec114 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel-members.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel-members.html @@ -98,7 +98,7 @@ This is the complete list of members for diff --git a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel.html b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel.html index 3c455800a..0b1fc95fc 100644 --- a/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel.html +++ b/dotnet/docs/html/interfacecom_1_1mxgraph_1_1mxIGraphModel.html @@ -1074,7 +1074,7 @@ Events diff --git a/dotnet/docs/html/namespacecom_1_1mxgraph.html b/dotnet/docs/html/namespacecom_1_1mxgraph.html index 8059d7fe5..2c9a7b038 100644 --- a/dotnet/docs/html/namespacecom_1_1mxgraph.html +++ b/dotnet/docs/html/namespacecom_1_1mxgraph.html @@ -324,7 +324,7 @@ Functions diff --git a/dotnet/docs/html/namespacemembers.html b/dotnet/docs/html/namespacemembers.html index 2a56abc3e..662b911f5 100644 --- a/dotnet/docs/html/namespacemembers.html +++ b/dotnet/docs/html/namespacemembers.html @@ -76,7 +76,7 @@ diff --git a/dotnet/docs/html/namespacemembers_func.html b/dotnet/docs/html/namespacemembers_func.html index 93e345dbe..5406e83dd 100644 --- a/dotnet/docs/html/namespacemembers_func.html +++ b/dotnet/docs/html/namespacemembers_func.html @@ -76,7 +76,7 @@ diff --git a/dotnet/docs/html/namespaces.html b/dotnet/docs/html/namespaces.html index e613adab2..e14a90666 100644 --- a/dotnet/docs/html/namespaces.html +++ b/dotnet/docs/html/namespaces.html @@ -63,7 +63,7 @@ diff --git a/dotnet/src/view/mxGraph.cs b/dotnet/src/view/mxGraph.cs index 90e0677be..c9949ecb2 100644 --- a/dotnet/src/view/mxGraph.cs +++ b/dotnet/src/view/mxGraph.cs @@ -15,9 +15,9 @@ namespace com.mxgraph { /// /// Holds the version number of this release. Current version - /// is 2.1.1.0. + /// is 2.1.1.1. /// - public const String VERSION = "2.1.1.0"; + public const String VERSION = "2.1.1.1"; /// /// Holds the model that contains the cells to be displayed. diff --git a/index.html b/index.html index c334f1885..b7db108b0 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ - mxGraph 2.1.1.0 + mxGraph 2.1.1.1 @@ -9,12 +9,12 @@
mxGraph
-Version 2.1.1.0 – 21. August 2013 +Version 2.1.1.1 – 03. September 2013


-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

mxGraph is a JavaScript diagramming library that enables interactive graph and charting applications to be quickly created that run natively in any diff --git a/java/build.xml b/java/build.xml index 49fc250ea..bb143aebb 100644 --- a/java/build.xml +++ b/java/build.xml @@ -8,7 +8,7 @@ - + diff --git a/java/docs/allclasses-frame.html b/java/docs/allclasses-frame.html index aa920c0f2..7620c9f5c 100644 --- a/java/docs/allclasses-frame.html +++ b/java/docs/allclasses-frame.html @@ -2,12 +2,12 @@ - + -All Classes (mxGraph 2.1.1.0 API Specification) +All Classes (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/allclasses-noframe.html b/java/docs/allclasses-noframe.html index d77b64632..db204eeb6 100644 --- a/java/docs/allclasses-noframe.html +++ b/java/docs/allclasses-noframe.html @@ -2,12 +2,12 @@ - + -All Classes (mxGraph 2.1.1.0 API Specification) +All Classes (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/analysis/StructuralException.html b/java/docs/com/mxgraph/analysis/StructuralException.html index a6ac47231..e43b076b2 100644 --- a/java/docs/com/mxgraph/analysis/StructuralException.html +++ b/java/docs/com/mxgraph/analysis/StructuralException.html @@ -2,12 +2,12 @@ - + -StructuralException (mxGraph 2.1.1.0 API Specification) +StructuralException (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ StructuralException (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="StructuralException (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="StructuralException (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 44e5f8ee3..1114249cc 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 2.1.1.0 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 590e89b01..881cd4d0c 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 2.1.1.0 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/analysis/package-frame.html b/java/docs/com/mxgraph/analysis/package-frame.html index f5368c5d4..3c177a6bd 100644 --- a/java/docs/com/mxgraph/analysis/package-frame.html +++ b/java/docs/com/mxgraph/analysis/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.analysis (mxGraph 2.1.1.0 API Specification) +com.mxgraph.analysis (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/analysis/package-summary.html b/java/docs/com/mxgraph/analysis/package-summary.html index b8096c7a5..2c75086e5 100644 --- a/java/docs/com/mxgraph/analysis/package-summary.html +++ b/java/docs/com/mxgraph/analysis/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.analysis (mxGraph 2.1.1.0 API Specification) +com.mxgraph.analysis (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.analysis (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.analysis (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.analysis (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 208d82b3e..ab280dfa2 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/canvas/package-frame.html b/java/docs/com/mxgraph/canvas/package-frame.html index da323375d..cef7001fa 100644 --- a/java/docs/com/mxgraph/canvas/package-frame.html +++ b/java/docs/com/mxgraph/canvas/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.canvas (mxGraph 2.1.1.0 API Specification) +com.mxgraph.canvas (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/canvas/package-summary.html b/java/docs/com/mxgraph/canvas/package-summary.html index 903cf0454..8900410fa 100644 --- a/java/docs/com/mxgraph/canvas/package-summary.html +++ b/java/docs/com/mxgraph/canvas/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.canvas (mxGraph 2.1.1.0 API Specification) +com.mxgraph.canvas (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.canvas (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.canvas (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.canvas (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/costfunction/package-frame.html b/java/docs/com/mxgraph/costfunction/package-frame.html index 806253d22..9a0d40354 100644 --- a/java/docs/com/mxgraph/costfunction/package-frame.html +++ b/java/docs/com/mxgraph/costfunction/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.costfunction (mxGraph 2.1.1.0 API Specification) +com.mxgraph.costfunction (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/costfunction/package-summary.html b/java/docs/com/mxgraph/costfunction/package-summary.html index 2b4e990c7..0818693c9 100644 --- a/java/docs/com/mxgraph/costfunction/package-summary.html +++ b/java/docs/com/mxgraph/costfunction/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.costfunction (mxGraph 2.1.1.0 API Specification) +com.mxgraph.costfunction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.costfunction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.costfunction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.costfunction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/generatorfunction/package-frame.html b/java/docs/com/mxgraph/generatorfunction/package-frame.html index b84921603..23b2fb25a 100644 --- a/java/docs/com/mxgraph/generatorfunction/package-frame.html +++ b/java/docs/com/mxgraph/generatorfunction/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.generatorfunction (mxGraph 2.1.1.0 API Specification) +com.mxgraph.generatorfunction (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/generatorfunction/package-summary.html b/java/docs/com/mxgraph/generatorfunction/package-summary.html index 5e37ae990..7013ce7f4 100644 --- a/java/docs/com/mxgraph/generatorfunction/package-summary.html +++ b/java/docs/com/mxgraph/generatorfunction/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.generatorfunction (mxGraph 2.1.1.0 API Specification) +com.mxgraph.generatorfunction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.generatorfunction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.generatorfunction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.generatorfunction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 6a9d0a890..cec7a9c88 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlConstants.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlConstants.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 2.1.1.0 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 a9114de1c..979c4512b 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlData.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlData.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 2.1.1.0 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 d0a3f1eac..bcb6d337b 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlEdge.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlEdge.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 2.1.1.0 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 69c6ae024..4c29fe4d1 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlGraph.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlGraph.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 2.1.1.0 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 82ee1c07c..10ad329ca 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 2.1.1.0 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 26ad4b1b0..8151941c4 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyForValues.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyForValues.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 be5cec34a..b319f05fb 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyTypeValues.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyTypeValues.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 99a78a02b..08f055086 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKeyManager.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKeyManager.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 2.1.1.0 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 8d469a30d..d8f0d61e4 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlNode.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlNode.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 2.1.1.0 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 7d32b6328..ca654fd7d 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlPort.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlPort.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 2.1.1.0 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 4f0ae0f9f..873b3b482 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeEdge.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeEdge.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 2.1.1.0 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 c4c7ccad6..d9ef71e42 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeNode.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeNode.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 2.1.1.0 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 9e36b002a..300bbaac4 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlUtils.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlUtils.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 2.1.1.0 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/io/graphml/package-frame.html b/java/docs/com/mxgraph/io/graphml/package-frame.html index c7c6f273c..d3c58c7a6 100644 --- a/java/docs/com/mxgraph/io/graphml/package-frame.html +++ b/java/docs/com/mxgraph/io/graphml/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io.graphml (mxGraph 2.1.1.0 API Specification) +com.mxgraph.io.graphml (mxGraph 2.1.1.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 9ff21c0a5..ee1e8401e 100644 --- a/java/docs/com/mxgraph/io/graphml/package-summary.html +++ b/java/docs/com/mxgraph/io/graphml/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io.graphml (mxGraph 2.1.1.0 API Specification) +com.mxgraph.io.graphml (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io.graphml (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io.graphml (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.io.graphml (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/io/package-frame.html b/java/docs/com/mxgraph/io/package-frame.html index 0d12b117a..5100980e7 100644 --- a/java/docs/com/mxgraph/io/package-frame.html +++ b/java/docs/com/mxgraph/io/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io (mxGraph 2.1.1.0 API Specification) +com.mxgraph.io (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/io/package-summary.html b/java/docs/com/mxgraph/io/package-summary.html index 436f6e9c4..2a2a317a7 100644 --- a/java/docs/com/mxgraph/io/package-summary.html +++ b/java/docs/com/mxgraph/io/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io (mxGraph 2.1.1.0 API Specification) +com.mxgraph.io (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.io (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 80cb2979a..097dc723e 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 2.1.1.0 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 cae70e1b7..af3bef225 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 2.1.1.0 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 60c0be09d..20a909542 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 2.1.1.0 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 4ebb9337e..95179d5cd 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 97bfa1815..b3f14b1fb 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html +++ b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 2.1.1.0 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 5cb069f9c..bd4cf2aa7 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html +++ b/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 2.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 9793d210c..18e6f4bb4 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 80e298a51..4a4e2cb6f 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 8d40c01ad..721137bee 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 e99930275..cb2a63141 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 3e09eb214..464c2bc22 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 3c1a9c7d3..fe174e1ae 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 7db6b1c13..949e9151b 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html @@ -2,12 +2,12 @@ - + -mxGraphHierarchyModel.CellVisitor (mxGraph 2.1.1.0 API Specification) +mxGraphHierarchyModel.CellVisitor (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyModel.CellVisitor (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyModel.CellVisitor (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphHierarchyModel.CellVisitor (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 261296e62..ba47d5f8c 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-frame.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.model (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout.hierarchical.model (mxGraph 2.1.1.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 b59c41975..23780c168 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.model (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout.hierarchical.model (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.model (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.model (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.model (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 218b2e41e..a6ee94f6d 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 2.1.1.0 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 2faf378e7..c9d9e5d2f 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 2.1.1.0 API Specification) +Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 2.1.1.0 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-frame.html b/java/docs/com/mxgraph/layout/hierarchical/package-frame.html index 49d413fcd..2c74a94f7 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/package-frame.html +++ b/java/docs/com/mxgraph/layout/hierarchical/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout.hierarchical (mxGraph 2.1.1.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 925e955b9..3d0a96ab1 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/package-summary.html +++ b/java/docs/com/mxgraph/layout/hierarchical/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout.hierarchical (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 abe7804d2..1cbe2d67a 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 b404a599b..f0184f19d 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 db44bfc00..fbcd3b248 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 a8bb197da..8b8ad1ac3 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 de9418fd7..234816a6a 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 2ead7f761..97c94f7da 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 d54af741e..6bdd59cf8 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 2c1f671a5..2b55738e7 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html @@ -2,12 +2,12 @@ - + -mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.1.1.0 API Specification) +mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxCoordinateAssignment.AreaSpatialCache (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 fdce4c384..e975e34c2 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html @@ -2,12 +2,12 @@ - + -mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.1.1.0 API Specification) +mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxCoordinateAssignment.WeightedCellSorter (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 a5db630ea..1d1771c8c 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html @@ -2,12 +2,12 @@ - + -mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.1.1.0 API Specification) +mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.1.1.0 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 e5f2e6973..404fd421a 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-frame.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.stage (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout.hierarchical.stage (mxGraph 2.1.1.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 074f0b267..61c0f6134 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.stage (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout.hierarchical.stage (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.stage (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.stage (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.stage (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 da083a233..1aad06f44 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 2.1.1.0 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 8199452bd..0936b0e43 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 2.1.1.0 API Specification) +Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 2.1.1.0 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 7bb83857b..20e75877c 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html +++ b/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 acb18d986..4e28c0ac7 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 2.1 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 4493d9f34..89b18cd09 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 2.1.1.0 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 b09d1357f..b67d0b2b1 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 2.1.1 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 56f825dbb..671a57f23 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 2.1.1.0 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 6e9bd2510..2842f19a9 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-frame.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal.model (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout.orthogonal.model (mxGraph 2.1.1.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 450a2b65e..8cf68fb02 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal.model (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout.orthogonal.model (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal.model (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal.model (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal.model (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 7f1bc0373..851bbacae 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 2.1.1.0 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 7d6d23891..900b8687b 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 2.1.1.0 API Specification) +Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 2.1.1.0 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-frame.html b/java/docs/com/mxgraph/layout/orthogonal/package-frame.html index ce895a51d..36a7828d4 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/package-frame.html +++ b/java/docs/com/mxgraph/layout/orthogonal/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout.orthogonal (mxGraph 2.1.1.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 9d3ccf5d1..9d92936b8 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/package-summary.html +++ b/java/docs/com/mxgraph/layout/orthogonal/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout.orthogonal (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/layout/package-frame.html b/java/docs/com/mxgraph/layout/package-frame.html index da5f68468..cf3d5aec9 100644 --- a/java/docs/com/mxgraph/layout/package-frame.html +++ b/java/docs/com/mxgraph/layout/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/package-summary.html b/java/docs/com/mxgraph/layout/package-summary.html index 70b4327bb..598ecb1bc 100644 --- a/java/docs/com/mxgraph/layout/package-summary.html +++ b/java/docs/com/mxgraph/layout/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout (mxGraph 2.1.1.0 API Specification) +com.mxgraph.layout (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.layout (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 a81cdf23f..40c78a0e6 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 2.1.1.0 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 f5f3a46c1..50683257a 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 2.1.1.0 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 853f1e2d0..05351b384 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 2.1.1.0 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 150682856..e0735b0e7 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 2.1.1.0 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 5a3be3926..4d2bb5c9e 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 2.1.1.0 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 dd1c8cc33..c650b1904 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 2.1.1.0 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 83b4b6aa3..c5ef5bb93 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 2.1.1.0 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 bf6f66c19..8e95b7670 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 2.1.1.0 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 b8deff286..ade499253 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 2.1.1.0 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 5fb185023..dc3c481c6 100644 --- a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/model/package-frame.html b/java/docs/com/mxgraph/model/package-frame.html index 19a048fec..717c4864f 100644 --- a/java/docs/com/mxgraph/model/package-frame.html +++ b/java/docs/com/mxgraph/model/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.model (mxGraph 2.1.1.0 API Specification) +com.mxgraph.model (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/model/package-summary.html b/java/docs/com/mxgraph/model/package-summary.html index e385879b1..1c023de2b 100644 --- a/java/docs/com/mxgraph/model/package-summary.html +++ b/java/docs/com/mxgraph/model/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.model (mxGraph 2.1.1.0 API Specification) +com.mxgraph.model (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.model (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.model (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.model (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 4c26270f4..47e230e0c 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html +++ b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 81addeab3..459119986 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html +++ b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/reader/package-frame.html b/java/docs/com/mxgraph/reader/package-frame.html index 8087e1671..0313f8da5 100644 --- a/java/docs/com/mxgraph/reader/package-frame.html +++ b/java/docs/com/mxgraph/reader/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.reader (mxGraph 2.1.1.0 API Specification) +com.mxgraph.reader (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/reader/package-summary.html b/java/docs/com/mxgraph/reader/package-summary.html index 226916773..d46910ed9 100644 --- a/java/docs/com/mxgraph/reader/package-summary.html +++ b/java/docs/com/mxgraph/reader/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.reader (mxGraph 2.1.1.0 API Specification) +com.mxgraph.reader (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.reader (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.reader (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.reader (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 3e2c2529a..a3bac59ad 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 2.1.1 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 2f2094072..49f52765a 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 077eb3382..38b7be285 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 2.1.1.0 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/shape/package-frame.html b/java/docs/com/mxgraph/shape/package-frame.html index ea73c5217..e47ba2c90 100644 --- a/java/docs/com/mxgraph/shape/package-frame.html +++ b/java/docs/com/mxgraph/shape/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.shape (mxGraph 2.1.1.0 API Specification) +com.mxgraph.shape (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/shape/package-summary.html b/java/docs/com/mxgraph/shape/package-summary.html index 340408267..2b876ea71 100644 --- a/java/docs/com/mxgraph/shape/package-summary.html +++ b/java/docs/com/mxgraph/shape/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.shape (mxGraph 2.1.1.0 API Specification) +com.mxgraph.shape (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.shape (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.shape (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.shape (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 86bae2de6..633f241d1 100644 --- a/java/docs/com/mxgraph/sharing/class-use/mxSharedState.mxDiagramChangeListener.html +++ b/java/docs/com/mxgraph/sharing/class-use/mxSharedState.mxDiagramChangeListener.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/sharing/package-frame.html b/java/docs/com/mxgraph/sharing/package-frame.html index 72da33ede..8b1f64340 100644 --- a/java/docs/com/mxgraph/sharing/package-frame.html +++ b/java/docs/com/mxgraph/sharing/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.sharing (mxGraph 2.1.1.0 API Specification) +com.mxgraph.sharing (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/sharing/package-summary.html b/java/docs/com/mxgraph/sharing/package-summary.html index 568dd5264..fa265b217 100644 --- a/java/docs/com/mxgraph/sharing/package-summary.html +++ b/java/docs/com/mxgraph/sharing/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.sharing (mxGraph 2.1.1.0 API Specification) +com.mxgraph.sharing (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.sharing (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.sharing (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.sharing (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 5c5b3fcbc..c2bbb12f9 100644 --- a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 199a1d3a0..a91dbfbe2 100644 --- a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 2.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 23ae8b09b..8051d545b 100644 --- a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 2.1.1.0 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 e9f965687..33258248e 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 2.1.1.0 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 28349f2ae..aafb3843f 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 2.1.1.0 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 33f79cbfa..e3f0e43dd 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 2.1.1.0 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 292d12944..3ee6c5c88 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 2.1.1.0 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 8b456a5b8..04cef6b79 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 2.1.1.0 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 42195bda9..71f7fa65a 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 2.1.1.0 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 892ce2260..64a6af634 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 2.1.1.0 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 24a40a693..a4d9ae11b 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 2.1.1.0 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 bf8244e02..81d26ebce 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 082d78b2f..adf68d9fc 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 2.1.1.0 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 bc1d4e0e1..acdcc82c9 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 2.1.1.0 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 698ce4043..d9238bda5 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 2.1.1.0 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 4853017b5..4c790ba3e 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 2.1.1.0 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 951f49244..2dfc689b0 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 2.1.1.0 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 0fa740b76..d5c7a0769 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 2.1.1.0 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 a22d08f54..b08f1d2e8 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 79872ce3c..362705cf0 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 2.1.1.0 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/handler/package-frame.html b/java/docs/com/mxgraph/swing/handler/package-frame.html index e6996c906..ae4e842e9 100644 --- a/java/docs/com/mxgraph/swing/handler/package-frame.html +++ b/java/docs/com/mxgraph/swing/handler/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.handler (mxGraph 2.1.1.0 API Specification) +com.mxgraph.swing.handler (mxGraph 2.1.1.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 a4852d10d..231da7502 100644 --- a/java/docs/com/mxgraph/swing/handler/package-summary.html +++ b/java/docs/com/mxgraph/swing/handler/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.handler (mxGraph 2.1.1.0 API Specification) +com.mxgraph.swing.handler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.handler (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.handler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.swing.handler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/package-frame.html b/java/docs/com/mxgraph/swing/package-frame.html index 473dda8fb..959920c67 100644 --- a/java/docs/com/mxgraph/swing/package-frame.html +++ b/java/docs/com/mxgraph/swing/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing (mxGraph 2.1.1.0 API Specification) +com.mxgraph.swing (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/swing/package-summary.html b/java/docs/com/mxgraph/swing/package-summary.html index cc95f1d72..128df7c2b 100644 --- a/java/docs/com/mxgraph/swing/package-summary.html +++ b/java/docs/com/mxgraph/swing/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing (mxGraph 2.1.1.0 API Specification) +com.mxgraph.swing (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.swing (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 151e3a684..677e73814 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 2.1.1.0 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 58c79119b..c362f2b42 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 2.1.1.0 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 74c1e83ee..a01be4d3f 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 2.1.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 6d16a18df..c1c9ef21d 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 0758e1eca..7f79c73f8 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 7be7a8229..9892c6c8a 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 0462c0bc3..9ed3be294 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 84c84122a..99e5658f3 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 c507969a9..0ff660162 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 9f2a2793b..4ef11d17d 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 2.1.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 4c4045d0b..f1697c942 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 2.1.1 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 d55ebc716..00d4bff90 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 d8c9c5c86..1667de0c3 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 7b547b94e..8145d3e12 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 2.1.1.0 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 f0402a8b4..a9141ab78 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 2.1.1.0 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 3329ada47..64c5fbacf 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 2.1.1.0 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 325eed250..f9e70890a 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 2.1.1.0 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 46bc16271..27bdaea22 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 2.1.1.0 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 03bffcc57..804b43cdc 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 2.1.1.0 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxAnimation.html b/java/docs/com/mxgraph/swing/util/mxAnimation.html index f7a05467f..1123df369 100644 --- a/java/docs/com/mxgraph/swing/util/mxAnimation.html +++ b/java/docs/com/mxgraph/swing/util/mxAnimation.html @@ -2,12 +2,12 @@ - + -mxAnimation (mxGraph 2.1.1.0 API Specification) +mxAnimation (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxAnimation (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxAnimation (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxAnimation (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html index 3b64f0643..38e2cae20 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.DeleteAction (mxGraph 2.1.1.0 API Specification) +mxGraphActions.DeleteAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.DeleteAction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.DeleteAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphActions.DeleteAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html index 57925ee1a..208c72fe3 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.DrillAction (mxGraph 2.1.1.0 API Specification) +mxGraphActions.DrillAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.DrillAction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.DrillAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphActions.DrillAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html index 5a7289a3d..22cd6fcab 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.EditAction (mxGraph 2.1.1.0 API Specification) +mxGraphActions.EditAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.EditAction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.EditAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphActions.EditAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html index cda95ac64..0f6370c7a 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.FoldAction (mxGraph 2.1.1.0 API Specification) +mxGraphActions.FoldAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.FoldAction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.FoldAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphActions.FoldAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html index fd3df294a..074596284 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.GroupAction (mxGraph 2.1.1.0 API Specification) +mxGraphActions.GroupAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.GroupAction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.GroupAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphActions.GroupAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html index a126f4543..73a48a2a5 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.LayerAction (mxGraph 2.1.1.0 API Specification) +mxGraphActions.LayerAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.LayerAction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.LayerAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphActions.LayerAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html index efccbaa80..32af60988 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.RemoveFromParentAction (mxGraph 2.1.1.0 API Specification) +mxGraphActions.RemoveFromParentAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.RemoveFromParentAction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.RemoveFromParentAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphActions.RemoveFromParentAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html index f606e3ca3..cbdd9c816 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.SelectAction (mxGraph 2.1.1.0 API Specification) +mxGraphActions.SelectAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.SelectAction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.SelectAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphActions.SelectAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html index 62a42af46..47bb52af0 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.UngroupAction (mxGraph 2.1.1.0 API Specification) +mxGraphActions.UngroupAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.UngroupAction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.UngroupAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphActions.UngroupAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html index 7396ca092..348f85c07 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.1.1.0 API Specification) +mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphActions.UpdateGroupBoundsAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html index 0a661513a..13f84f7a5 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.ZoomAction (mxGraph 2.1.1.0 API Specification) +mxGraphActions.ZoomAction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.ZoomAction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.ZoomAction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphActions.ZoomAction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.html index b76c50f85..4159640f5 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.html @@ -2,12 +2,12 @@ - + -mxGraphActions (mxGraph 2.1.1.0 API Specification) +mxGraphActions (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphActions (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -789,7 +789,7 @@ public static final
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html b/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html index 1e58b6255..887f6493d 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html @@ -2,12 +2,12 @@ - + -mxGraphTransferable (mxGraph 2.1.1.0 API Specification) +mxGraphTransferable (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphTransferable (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphTransferable (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphTransferable (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -780,7 +780,7 @@ protected boolean isStringFlavor(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxICellOverlay.html b/java/docs/com/mxgraph/swing/util/mxICellOverlay.html index 60d47ee48..e725313a2 100644 --- a/java/docs/com/mxgraph/swing/util/mxICellOverlay.html +++ b/java/docs/com/mxgraph/swing/util/mxICellOverlay.html @@ -2,12 +2,12 @@ - + -mxICellOverlay (mxGraph 2.1.1.0 API Specification) +mxICellOverlay (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxICellOverlay (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICellOverlay (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxICellOverlay (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -168,7 +168,7 @@ getBounds -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxMorphing.html b/java/docs/com/mxgraph/swing/util/mxMorphing.html index ebb2685f4..19dbb0586 100644 --- a/java/docs/com/mxgraph/swing/util/mxMorphing.html +++ b/java/docs/com/mxgraph/swing/util/mxMorphing.html @@ -2,12 +2,12 @@ - + -mxMorphing (mxGraph 2.1.1.0 API Specification) +mxMorphing (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxMorphing (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMorphing (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxMorphing (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html b/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html index f5de185bc..d517cb2ed 100644 --- a/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html +++ b/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html @@ -2,12 +2,12 @@ - + -mxMouseAdapter (mxGraph 2.1.1.0 API Specification) +mxMouseAdapter (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxMouseAdapter (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMouseAdapter (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxMouseAdapter (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/mxSwingConstants.html b/java/docs/com/mxgraph/swing/util/mxSwingConstants.html index 8ef91da12..ac15e7bee 100644 --- a/java/docs/com/mxgraph/swing/util/mxSwingConstants.html +++ b/java/docs/com/mxgraph/swing/util/mxSwingConstants.html @@ -2,12 +2,12 @@ - + -mxSwingConstants (mxGraph 2.1.1.0 API Specification) +mxSwingConstants (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxSwingConstants (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSwingConstants (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxSwingConstants (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -547,7 +547,7 @@ public mxSwingConstants() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/package-frame.html b/java/docs/com/mxgraph/swing/util/package-frame.html index c6b3c9671..b54e33c5a 100644 --- a/java/docs/com/mxgraph/swing/util/package-frame.html +++ b/java/docs/com/mxgraph/swing/util/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.util (mxGraph 2.1.1.0 API Specification) +com.mxgraph.swing.util (mxGraph 2.1.1.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 56c7e14f5..818d2d6fa 100644 --- a/java/docs/com/mxgraph/swing/util/package-summary.html +++ b/java/docs/com/mxgraph/swing/util/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.util (mxGraph 2.1.1.0 API Specification) +com.mxgraph.swing.util (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.util (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.util (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.swing.util (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -221,7 +221,7 @@ This package contains all utility classes that require JFC/Swing, namely for -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/util/package-tree.html b/java/docs/com/mxgraph/swing/util/package-tree.html index 129087ace..82c57bddf 100644 --- a/java/docs/com/mxgraph/swing/util/package-tree.html +++ b/java/docs/com/mxgraph/swing/util/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.util Class Hierarchy (mxGraph 2.1.1.0 API Specification) +com.mxgraph.swing.util Class Hierarchy (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.util Class Hierarchy (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.util Class Hierarchy (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.swing.util Class Hierarchy (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -141,7 +141,7 @@ Interface Hierarchy -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 ff6b99063..ba9c975ef 100644 --- a/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html +++ b/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 2.1.1.0 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 5bbc12a74..6fe03b5a4 100644 --- a/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html +++ b/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 2.1.1.0 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 85d5f9dc3..27666d885 100644 --- a/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html +++ b/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 2.1.1.0 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 bf2f5d417..3d6a03e9d 100644 --- a/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html +++ b/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 2.1.1.0 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/view/mxCellEditor.html b/java/docs/com/mxgraph/swing/view/mxCellEditor.html index ba8d9232c..b05800036 100644 --- a/java/docs/com/mxgraph/swing/view/mxCellEditor.html +++ b/java/docs/com/mxgraph/swing/view/mxCellEditor.html @@ -2,12 +2,12 @@ - + -mxCellEditor (mxGraph 2.1.1.0 API Specification) +mxCellEditor (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxCellEditor (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellEditor (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxCellEditor (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -1074,7 +1074,7 @@ public void setMinimumHeight(int minimumHeight) -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html b/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html index b8057174f..f7f73b727 100644 --- a/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html +++ b/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html @@ -2,12 +2,12 @@ - + -mxCellStatePreview (mxGraph 2.1.1.0 API Specification) +mxCellStatePreview (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxCellStatePreview (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellStatePreview (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxCellStatePreview (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -743,7 +743,7 @@ protected void paintPreviewState(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/view/mxICellEditor.html b/java/docs/com/mxgraph/swing/view/mxICellEditor.html index 9b1c79b4e..36c9cd84c 100644 --- a/java/docs/com/mxgraph/swing/view/mxICellEditor.html +++ b/java/docs/com/mxgraph/swing/view/mxICellEditor.html @@ -2,12 +2,12 @@ - + -mxICellEditor (mxGraph 2.1.1.0 API Specification) +mxICellEditor (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxICellEditor (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICellEditor (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxICellEditor (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -214,7 +214,7 @@ void stopEditing(boolean cancel) -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html b/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html index 809f82012..97dfe5d84 100644 --- a/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html +++ b/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html @@ -2,12 +2,12 @@ - + -mxInteractiveCanvas (mxGraph 2.1.1.0 API Specification) +mxInteractiveCanvas (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxInteractiveCanvas (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxInteractiveCanvas (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxInteractiveCanvas (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -450,7 +450,7 @@ public boolean hitSwimlaneContent(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/view/package-frame.html b/java/docs/com/mxgraph/swing/view/package-frame.html index fce7adb14..a1146957b 100644 --- a/java/docs/com/mxgraph/swing/view/package-frame.html +++ b/java/docs/com/mxgraph/swing/view/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.view (mxGraph 2.1.1.0 API Specification) +com.mxgraph.swing.view (mxGraph 2.1.1.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 683dd8f7e..89fa24a8c 100644 --- a/java/docs/com/mxgraph/swing/view/package-summary.html +++ b/java/docs/com/mxgraph/swing/view/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.view (mxGraph 2.1.1.0 API Specification) +com.mxgraph.swing.view (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.view (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.view (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.swing.view (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -163,7 +163,7 @@ This package contains all classes required for interaction, namely the -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/swing/view/package-tree.html b/java/docs/com/mxgraph/swing/view/package-tree.html index 00617518c..3e0483490 100644 --- a/java/docs/com/mxgraph/swing/view/package-tree.html +++ b/java/docs/com/mxgraph/swing/view/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.view Class Hierarchy (mxGraph 2.1.1.0 API Specification) +com.mxgraph.swing.view Class Hierarchy (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.view Class Hierarchy (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.view Class Hierarchy (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.swing.view Class Hierarchy (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxBase64.html b/java/docs/com/mxgraph/util/class-use/mxBase64.html index 8affc3efb..81e3efd2a 100644 --- a/java/docs/com/mxgraph/util/class-use/mxBase64.html +++ b/java/docs/com/mxgraph/util/class-use/mxBase64.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxBase64 (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxBase64 (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxBase64 (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxBase64 (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxBase64 (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 5573c6ad5..8021d89c2 100644 --- a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html +++ b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 2.1.1.0 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -152,7 +152,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxCurve.html b/java/docs/com/mxgraph/util/class-use/mxCurve.html index 1078d158e..7f1b214a6 100644 --- a/java/docs/com/mxgraph/util/class-use/mxCurve.html +++ b/java/docs/com/mxgraph/util/class-use/mxCurve.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxCurve (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxCurve (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCurve (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxCurve (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCurve (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxDomUtils.html b/java/docs/com/mxgraph/util/class-use/mxDomUtils.html index 252c84714..d6d08eb07 100644 --- a/java/docs/com/mxgraph/util/class-use/mxDomUtils.html +++ b/java/docs/com/mxgraph/util/class-use/mxDomUtils.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxEvent.html b/java/docs/com/mxgraph/util/class-use/mxEvent.html index 86f6b5deb..82293e1fc 100644 --- a/java/docs/com/mxgraph/util/class-use/mxEvent.html +++ b/java/docs/com/mxgraph/util/class-use/mxEvent.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxEvent (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxEvent (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEvent (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxEvent (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEvent (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxEventObject.html b/java/docs/com/mxgraph/util/class-use/mxEventObject.html index 431e33c8f..830a6c472 100644 --- a/java/docs/com/mxgraph/util/class-use/mxEventObject.html +++ b/java/docs/com/mxgraph/util/class-use/mxEventObject.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxEventObject (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxEventObject (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEventObject (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxEventObject (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEventObject (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -166,7 +166,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxEventSource.html b/java/docs/com/mxgraph/util/class-use/mxEventSource.html index fcd51606e..8714979ef 100644 --- a/java/docs/com/mxgraph/util/class-use/mxEventSource.html +++ b/java/docs/com/mxgraph/util/class-use/mxEventSource.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxEventSource (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxEventSource (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEventSource (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxEventSource (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEventSource (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 83695755a..40d487454 100644 --- a/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html +++ b/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 2.1.1 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -518,7 +518,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html b/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html index 88b76a9fe..0a606e286 100644 --- a/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html +++ b/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxImage.html b/java/docs/com/mxgraph/util/class-use/mxImage.html index 8504fe90b..92b518ee2 100644 --- a/java/docs/com/mxgraph/util/class-use/mxImage.html +++ b/java/docs/com/mxgraph/util/class-use/mxImage.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxImage (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxImage (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxImage (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxImage (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxImage (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxImageBundle.html b/java/docs/com/mxgraph/util/class-use/mxImageBundle.html index 304c3f59d..d967150d9 100644 --- a/java/docs/com/mxgraph/util/class-use/mxImageBundle.html +++ b/java/docs/com/mxgraph/util/class-use/mxImageBundle.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -202,7 +202,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html b/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html index 5f7799c09..9673ef4f1 100644 --- a/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html +++ b/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 2.1.1.0 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -163,7 +163,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxLine.html b/java/docs/com/mxgraph/util/class-use/mxLine.html index b1d3612ca..858a7a465 100644 --- a/java/docs/com/mxgraph/util/class-use/mxLine.html +++ b/java/docs/com/mxgraph/util/class-use/mxLine.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxLine (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxLine (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxLine (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxLine (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxLine (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -227,7 +227,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -1868,7 +1868,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxRectangle.html b/java/docs/com/mxgraph/util/class-use/mxRectangle.html index 61541a499..f3462cd95 100644 --- a/java/docs/com/mxgraph/util/class-use/mxRectangle.html +++ b/java/docs/com/mxgraph/util/class-use/mxRectangle.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxRectangle (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxRectangle (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxRectangle (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxRectangle (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxRectangle (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -1735,7 +1735,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxResources.html b/java/docs/com/mxgraph/util/class-use/mxResources.html index f848303db..21dd4701a 100644 --- a/java/docs/com/mxgraph/util/class-use/mxResources.html +++ b/java/docs/com/mxgraph/util/class-use/mxResources.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxResources (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxResources (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxResources (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxResources (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxResources (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxSpline.html b/java/docs/com/mxgraph/util/class-use/mxSpline.html index 7737cc014..0e558a19a 100644 --- a/java/docs/com/mxgraph/util/class-use/mxSpline.html +++ b/java/docs/com/mxgraph/util/class-use/mxSpline.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxSpline (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxSpline (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxSpline (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxSpline (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxSpline (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxSpline1D.html b/java/docs/com/mxgraph/util/class-use/mxSpline1D.html index 00d126023..1ffbd44c4 100644 --- a/java/docs/com/mxgraph/util/class-use/mxSpline1D.html +++ b/java/docs/com/mxgraph/util/class-use/mxSpline1D.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html b/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html index 112b9ad30..5864bfa9f 100644 --- a/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html +++ b/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoManager.html b/java/docs/com/mxgraph/util/class-use/mxUndoManager.html index 921050528..183586fa7 100644 --- a/java/docs/com/mxgraph/util/class-use/mxUndoManager.html +++ b/java/docs/com/mxgraph/util/class-use/mxUndoManager.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -269,7 +269,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 1a4ae8b37..4254b1fb2 100644 --- a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html +++ b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 2.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -389,7 +389,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxBase64.html b/java/docs/com/mxgraph/util/mxBase64.html index 00301a3da..fb3d61032 100644 --- a/java/docs/com/mxgraph/util/mxBase64.html +++ b/java/docs/com/mxgraph/util/mxBase64.html @@ -2,12 +2,12 @@ - + -mxBase64 (mxGraph 2.1.1.0 API Specification) +mxBase64 (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxBase64 (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxBase64 (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxBase64 (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -489,7 +489,7 @@ public static final byte[] decodeFast(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html b/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html index 8452bbd84..93f5faa4d 100644 --- a/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html +++ b/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html @@ -2,12 +2,12 @@ - + -mxCellRenderer.CanvasFactory (mxGraph 2.1.1.0 API Specification) +mxCellRenderer.CanvasFactory (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxCellRenderer.CanvasFactory (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellRenderer.CanvasFactory (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxCellRenderer.CanvasFactory (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -220,7 +220,7 @@ public abstract
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxCellRenderer.html b/java/docs/com/mxgraph/util/mxCellRenderer.html index 7eebc7a4d..430552032 100644 --- a/java/docs/com/mxgraph/util/mxCellRenderer.html +++ b/java/docs/com/mxgraph/util/mxCellRenderer.html @@ -2,12 +2,12 @@ - + -mxCellRenderer (mxGraph 2.1.1.0 API Specification) +mxCellRenderer (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxCellRenderer (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellRenderer (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxCellRenderer (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxConstants.html b/java/docs/com/mxgraph/util/mxConstants.html index f4c183da9..a1b18c728 100644 --- a/java/docs/com/mxgraph/util/mxConstants.html +++ b/java/docs/com/mxgraph/util/mxConstants.html @@ -2,12 +2,12 @@ - + -mxConstants (mxGraph 2.1.1.0 API Specification) +mxConstants (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxConstants (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConstants (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxConstants (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -4196,7 +4196,7 @@ public mxConstants() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxCurve.html b/java/docs/com/mxgraph/util/mxCurve.html index 7aaa71a94..753f499d1 100644 --- a/java/docs/com/mxgraph/util/mxCurve.html +++ b/java/docs/com/mxgraph/util/mxCurve.html @@ -2,12 +2,12 @@ - + -mxCurve (mxGraph 2.1.1.0 API Specification) +mxCurve (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxCurve (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurve (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxCurve (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -1104,7 +1104,7 @@ public
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxDomUtils.html b/java/docs/com/mxgraph/util/mxDomUtils.html index 6131a8a3d..fddd8aac0 100644 --- a/java/docs/com/mxgraph/util/mxDomUtils.html +++ b/java/docs/com/mxgraph/util/mxDomUtils.html @@ -2,12 +2,12 @@ - + -mxDomUtils (mxGraph 2.1.1.0 API Specification) +mxDomUtils (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxDomUtils (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDomUtils (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxDomUtils (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -281,7 +281,7 @@ public static
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxEvent.html b/java/docs/com/mxgraph/util/mxEvent.html index 46e05d731..69fc67365 100644 --- a/java/docs/com/mxgraph/util/mxEvent.html +++ b/java/docs/com/mxgraph/util/mxEvent.html @@ -2,12 +2,12 @@ - + -mxEvent (mxGraph 2.1.1.0 API Specification) +mxEvent (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxEvent (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEvent (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxEvent (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -1273,7 +1273,7 @@ public mxEvent() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxEventObject.html b/java/docs/com/mxgraph/util/mxEventObject.html index 91fddf9fe..cfb41ddba 100644 --- a/java/docs/com/mxgraph/util/mxEventObject.html +++ b/java/docs/com/mxgraph/util/mxEventObject.html @@ -2,12 +2,12 @@ - + -mxEventObject (mxGraph 2.1.1.0 API Specification) +mxEventObject (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxEventObject (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventObject (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxEventObject (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -397,7 +397,7 @@ public void consume() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxEventSource.html b/java/docs/com/mxgraph/util/mxEventSource.html index 82c9a96e9..23c3bd4b1 100644 --- a/java/docs/com/mxgraph/util/mxEventSource.html +++ b/java/docs/com/mxgraph/util/mxEventSource.html @@ -2,12 +2,12 @@ - + -mxEventSource (mxGraph 2.1.1.0 API Specification) +mxEventSource (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxEventSource (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventSource (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxEventSource (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -513,7 +513,7 @@ public void fireEvent(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html b/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html index 79f9ed7c6..df7761b9b 100644 --- a/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html +++ b/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html @@ -2,12 +2,12 @@ - + -mxEventSource.mxIEventListener (mxGraph 2.1.1.0 API Specification) +mxEventSource.mxIEventListener (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxEventSource.mxIEventListener (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventSource.mxIEventListener (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxEventSource.mxIEventListener (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -176,7 +176,7 @@ void invoke(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxHtmlColor.html b/java/docs/com/mxgraph/util/mxHtmlColor.html index 76940cc72..1c0b0d972 100644 --- a/java/docs/com/mxgraph/util/mxHtmlColor.html +++ b/java/docs/com/mxgraph/util/mxHtmlColor.html @@ -2,12 +2,12 @@ - + -mxHtmlColor (mxGraph 2.1.1.0 API Specification) +mxHtmlColor (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxHtmlColor (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHtmlColor (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxHtmlColor (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -306,7 +306,7 @@ public static
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxImage.html b/java/docs/com/mxgraph/util/mxImage.html index c02df30db..ddc0d9cdf 100644 --- a/java/docs/com/mxgraph/util/mxImage.html +++ b/java/docs/com/mxgraph/util/mxImage.html @@ -2,12 +2,12 @@ - + -mxImage (mxGraph 2.1.1.0 API Specification) +mxImage (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxImage (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImage (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxImage (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -420,7 +420,7 @@ public void setHeight(int height) -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxImageBundle.html b/java/docs/com/mxgraph/util/mxImageBundle.html index 990d6ae43..b491b0440 100644 --- a/java/docs/com/mxgraph/util/mxImageBundle.html +++ b/java/docs/com/mxgraph/util/mxImageBundle.html @@ -2,12 +2,12 @@ - + -mxImageBundle (mxGraph 2.1.1.0 API Specification) +mxImageBundle (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxImageBundle (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImageBundle (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxImageBundle (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -331,7 +331,7 @@ public
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxLightweightLabel.html b/java/docs/com/mxgraph/util/mxLightweightLabel.html index d96d061c3..518264eb9 100644 --- a/java/docs/com/mxgraph/util/mxLightweightLabel.html +++ b/java/docs/com/mxgraph/util/mxLightweightLabel.html @@ -2,12 +2,12 @@ - + -mxLightweightLabel (mxGraph 2.1.1.0 API Specification) +mxLightweightLabel (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxLightweightLabel (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLightweightLabel (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxLightweightLabel (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -742,7 +742,7 @@ public void firePropertyChange(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxLine.html b/java/docs/com/mxgraph/util/mxLine.html index eb991494c..ba42275da 100644 --- a/java/docs/com/mxgraph/util/mxLine.html +++ b/java/docs/com/mxgraph/util/mxLine.html @@ -2,12 +2,12 @@ - + -mxLine (mxGraph 2.1.1.0 API Specification) +mxLine (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxLine (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLine (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxLine (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -396,7 +396,7 @@ public double ptSegDistSq(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxPoint.html b/java/docs/com/mxgraph/util/mxPoint.html index c790a52f6..4772beb76 100644 --- a/java/docs/com/mxgraph/util/mxPoint.html +++ b/java/docs/com/mxgraph/util/mxPoint.html @@ -2,12 +2,12 @@ - + -mxPoint (mxGraph 2.1.1.0 API Specification) +mxPoint (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxPoint (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPoint (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxPoint (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -518,7 +518,7 @@ public
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxRectangle.html b/java/docs/com/mxgraph/util/mxRectangle.html index 7ada498fa..8ed60403a 100644 --- a/java/docs/com/mxgraph/util/mxRectangle.html +++ b/java/docs/com/mxgraph/util/mxRectangle.html @@ -2,12 +2,12 @@ - + -mxRectangle (mxGraph 2.1.1.0 API Specification) +mxRectangle (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxRectangle (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRectangle (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxRectangle (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -699,7 +699,7 @@ public
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxResources.html b/java/docs/com/mxgraph/util/mxResources.html index be96ab62c..d53b52d9a 100644 --- a/java/docs/com/mxgraph/util/mxResources.html +++ b/java/docs/com/mxgraph/util/mxResources.html @@ -2,12 +2,12 @@ - + -mxResources (mxGraph 2.1.1.0 API Specification) +mxResources (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxResources (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxResources (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxResources (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -432,7 +432,7 @@ protected static
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxSpline.html b/java/docs/com/mxgraph/util/mxSpline.html index 92d3fc0fb..ab9b4fafe 100644 --- a/java/docs/com/mxgraph/util/mxSpline.html +++ b/java/docs/com/mxgraph/util/mxSpline.html @@ -2,12 +2,12 @@ - + -mxSpline (mxGraph 2.1.1.0 API Specification) +mxSpline (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxSpline (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpline (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxSpline (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -371,7 +371,7 @@ public double getLength() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxSpline1D.html b/java/docs/com/mxgraph/util/mxSpline1D.html index 0bd9d9c68..3ebd4cce2 100644 --- a/java/docs/com/mxgraph/util/mxSpline1D.html +++ b/java/docs/com/mxgraph/util/mxSpline1D.html @@ -2,12 +2,12 @@ - + -mxSpline1D (mxGraph 2.1.1.0 API Specification) +mxSpline1D (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxSpline1D (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpline1D (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxSpline1D (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -446,7 +446,7 @@ public void solve(double[][] A, -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxStyleUtils.html b/java/docs/com/mxgraph/util/mxStyleUtils.html index 0d90cccc5..423618a42 100644 --- a/java/docs/com/mxgraph/util/mxStyleUtils.html +++ b/java/docs/com/mxgraph/util/mxStyleUtils.html @@ -2,12 +2,12 @@ - + -mxStyleUtils (mxGraph 2.1.1.0 API Specification) +mxStyleUtils (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxStyleUtils (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStyleUtils (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxStyleUtils (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -468,7 +468,7 @@ public static
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxUndoManager.html b/java/docs/com/mxgraph/util/mxUndoManager.html index a0774f07c..d5e9850a8 100644 --- a/java/docs/com/mxgraph/util/mxUndoManager.html +++ b/java/docs/com/mxgraph/util/mxUndoManager.html @@ -2,12 +2,12 @@ - + -mxUndoManager (mxGraph 2.1.1.0 API Specification) +mxUndoManager (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxUndoManager (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoManager (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxUndoManager (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -511,7 +511,7 @@ protected void trim() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxUndoableEdit.html b/java/docs/com/mxgraph/util/mxUndoableEdit.html index 876cdf81e..931ed8398 100644 --- a/java/docs/com/mxgraph/util/mxUndoableEdit.html +++ b/java/docs/com/mxgraph/util/mxUndoableEdit.html @@ -2,12 +2,12 @@ - + -mxUndoableEdit (mxGraph 2.1.1.0 API Specification) +mxUndoableEdit (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxUndoableEdit (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoableEdit (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxUndoableEdit (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -578,7 +578,7 @@ public void redo() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html b/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html index 6f978ba19..ddf4b333e 100644 --- a/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html +++ b/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html @@ -2,12 +2,12 @@ - + -mxUndoableEdit.mxUndoableChange (mxGraph 2.1.1.0 API Specification) +mxUndoableEdit.mxUndoableChange (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxUndoableEdit.mxUndoableChange (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoableEdit.mxUndoableChange (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxUndoableEdit.mxUndoableChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -177,7 +177,7 @@ void execute() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxUtils.html b/java/docs/com/mxgraph/util/mxUtils.html index ccba855bb..fd7924a7e 100644 --- a/java/docs/com/mxgraph/util/mxUtils.html +++ b/java/docs/com/mxgraph/util/mxUtils.html @@ -2,12 +2,12 @@ - + -mxUtils (mxGraph 2.1.1.0 API Specification) +mxUtils (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxUtils (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUtils (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxUtils (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -2513,7 +2513,7 @@ public static
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/mxXmlUtils.html b/java/docs/com/mxgraph/util/mxXmlUtils.html index afe12b293..62dcda5a6 100644 --- a/java/docs/com/mxgraph/util/mxXmlUtils.html +++ b/java/docs/com/mxgraph/util/mxXmlUtils.html @@ -2,12 +2,12 @@ - + -mxXmlUtils (mxGraph 2.1.1.0 API Specification) +mxXmlUtils (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxXmlUtils (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxXmlUtils (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxXmlUtils (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -240,7 +240,7 @@ public static
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/package-frame.html b/java/docs/com/mxgraph/util/package-frame.html index 38613b3c4..a0ff2715e 100644 --- a/java/docs/com/mxgraph/util/package-frame.html +++ b/java/docs/com/mxgraph/util/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util (mxGraph 2.1.1.0 API Specification) +com.mxgraph.util (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/util/package-summary.html b/java/docs/com/mxgraph/util/package-summary.html index 0745086f1..74b968e54 100644 --- a/java/docs/com/mxgraph/util/package-summary.html +++ b/java/docs/com/mxgraph/util/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util (mxGraph 2.1.1.0 API Specification) +com.mxgraph.util (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.util (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -258,7 +258,7 @@ This package provides utility classes such as mxConstants, mxUtils, mxPoint -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -140,7 +140,7 @@ Interface Hierarchy -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 bbb615552..54376bab8 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 2.1.1.0 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.Gray -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 8da54487d..1c31722de 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 2.1.1.0 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.Palette -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 ab5be6d9a..3dd46c89b 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 2.1.1.0 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.RGB -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 28fef9ba3..4410d3f65 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 2.1.1.0 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -219,7 +219,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 8989ef9da..560dd7e2b 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 2.1.1.0 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngImageEncoder -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 0f0ba558e..4bd4b78aa 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 2.1.1.0 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 7ea022359..9f6c4b7a1 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 2.1.1.0 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngTextDecoder -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html index 66db7c3cb..a476e662f 100644 --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html @@ -2,12 +2,12 @@ - + -mxPngEncodeParam.Gray (mxGraph 2.1.1.0 API Specification) +mxPngEncodeParam.Gray (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.Gray (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.Gray (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxPngEncodeParam.Gray (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -542,7 +542,7 @@ public boolean isBitDepthSet() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html index 57c68542e..5d4069af9 100644 --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html @@ -2,12 +2,12 @@ - + -mxPngEncodeParam.Palette (mxGraph 2.1.1.0 API Specification) +mxPngEncodeParam.Palette (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.Palette (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.Palette (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxPngEncodeParam.Palette (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -517,7 +517,7 @@ public byte[] getPaletteTransparency() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html index 1002a4458..f3a9b257f 100644 --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html @@ -2,12 +2,12 @@ - + -mxPngEncodeParam.RGB (mxGraph 2.1.1.0 API Specification) +mxPngEncodeParam.RGB (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.RGB (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.RGB (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxPngEncodeParam.RGB (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -420,7 +420,7 @@ public int[] getTransparentRGB() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html index c5e9d72a6..67797a4d6 100644 --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html @@ -2,12 +2,12 @@ - + -mxPngEncodeParam (mxGraph 2.1.1.0 API Specification) +mxPngEncodeParam (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxPngEncodeParam (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -2047,7 +2047,7 @@ public int filterRow(byte[] currRow, -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html b/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html index d860de599..03804a0a8 100644 --- a/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html +++ b/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html @@ -2,12 +2,12 @@ - + -mxPngImageEncoder (mxGraph 2.1.1.0 API Specification) +mxPngImageEncoder (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngImageEncoder (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngImageEncoder (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxPngImageEncoder (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -326,7 +326,7 @@ public void encode(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html b/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html index d293ec8bf..fa2c17398 100644 --- a/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html +++ b/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html @@ -2,12 +2,12 @@ - + -mxPngSuggestedPaletteEntry (mxGraph 2.1.1.0 API Specification) +mxPngSuggestedPaletteEntry (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngSuggestedPaletteEntry (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngSuggestedPaletteEntry (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxPngSuggestedPaletteEntry (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -353,7 +353,7 @@ public mxPngSuggestedPaletteEntry() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html b/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html index 1a5ae7570..498a2335b 100644 --- a/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html +++ b/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html @@ -2,12 +2,12 @@ - + -mxPngTextDecoder (mxGraph 2.1.1.0 API Specification) +mxPngTextDecoder (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxPngTextDecoder (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngTextDecoder (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxPngTextDecoder (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -271,7 +271,7 @@ public static
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/png/package-frame.html b/java/docs/com/mxgraph/util/png/package-frame.html index bfafa9d65..9798e6760 100644 --- a/java/docs/com/mxgraph/util/png/package-frame.html +++ b/java/docs/com/mxgraph/util/png/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.png (mxGraph 2.1.1.0 API Specification) +com.mxgraph.util.png (mxGraph 2.1.1.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 b6378d6eb..7c9ee9b98 100644 --- a/java/docs/com/mxgraph/util/png/package-summary.html +++ b/java/docs/com/mxgraph/util/png/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.png (mxGraph 2.1.1.0 API Specification) +com.mxgraph.util.png (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.png (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.png (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.util.png (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -147,7 +147,7 @@ Package com.mxgraph.util.png -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/png/package-use.html b/java/docs/com/mxgraph/util/png/package-use.html index 85f2ab38c..6adff4f3e 100644 --- a/java/docs/com/mxgraph/util/png/package-use.html +++ b/java/docs/com/mxgraph/util/png/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.util.png (mxGraph 2.1.1.0 API Specification) +Uses of Package com.mxgraph.util.png (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.util.png (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.util.png (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.util.png (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -142,7 +142,7 @@ Classes in
com.m -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/AWTPathProducer.html b/java/docs/com/mxgraph/util/svg/AWTPathProducer.html index aece9280d..47cbfd43f 100644 --- a/java/docs/com/mxgraph/util/svg/AWTPathProducer.html +++ b/java/docs/com/mxgraph/util/svg/AWTPathProducer.html @@ -2,12 +2,12 @@ - + -AWTPathProducer (mxGraph 2.1.1.0 API Specification) +AWTPathProducer (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ AWTPathProducer (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPathProducer (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="AWTPathProducer (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -1098,7 +1098,7 @@ public void arcAbs(float rx, -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html b/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html index 38008bd1a..0ce3b5159 100644 --- a/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html +++ b/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html @@ -2,12 +2,12 @@ - + -AWTPolygonProducer (mxGraph 2.1.1.0 API Specification) +AWTPolygonProducer (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ AWTPolygonProducer (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPolygonProducer (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="AWTPolygonProducer (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -281,7 +281,7 @@ public void endPoints() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html b/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html index 39ad2349e..fc4ebcca7 100644 --- a/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html +++ b/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html @@ -2,12 +2,12 @@ - + -AWTPolylineProducer (mxGraph 2.1.1.0 API Specification) +AWTPolylineProducer (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ AWTPolylineProducer (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPolylineProducer (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="AWTPolylineProducer (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -469,7 +469,7 @@ public void endPoints() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/AbstractParser.html b/java/docs/com/mxgraph/util/svg/AbstractParser.html index 2bc25081c..e982d0eef 100644 --- a/java/docs/com/mxgraph/util/svg/AbstractParser.html +++ b/java/docs/com/mxgraph/util/svg/AbstractParser.html @@ -2,12 +2,12 @@ - + -AbstractParser (mxGraph 2.1.1.0 API Specification) +AbstractParser (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ AbstractParser (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AbstractParser (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="AbstractParser (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -601,7 +601,7 @@ protected void skipCommaSpaces() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/CSSConstants.html b/java/docs/com/mxgraph/util/svg/CSSConstants.html index 854af8092..7092f1fc7 100644 --- a/java/docs/com/mxgraph/util/svg/CSSConstants.html +++ b/java/docs/com/mxgraph/util/svg/CSSConstants.html @@ -2,12 +2,12 @@ - + -CSSConstants (mxGraph 2.1.1.0 API Specification) +CSSConstants (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ CSSConstants (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="CSSConstants (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="CSSConstants (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -204,7 +204,7 @@ static final
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html b/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html index e9d7efc67..0dcee7653 100644 --- a/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html +++ b/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html @@ -2,12 +2,12 @@ - + -DefaultErrorHandler (mxGraph 2.1.1.0 API Specification) +DefaultErrorHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ DefaultErrorHandler (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="DefaultErrorHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="DefaultErrorHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -227,7 +227,7 @@ public void error(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/ErrorHandler.html b/java/docs/com/mxgraph/util/svg/ErrorHandler.html index 986e872a6..6b9372a3c 100644 --- a/java/docs/com/mxgraph/util/svg/ErrorHandler.html +++ b/java/docs/com/mxgraph/util/svg/ErrorHandler.html @@ -2,12 +2,12 @@ - + -ErrorHandler (mxGraph 2.1.1.0 API Specification) +ErrorHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ ErrorHandler (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ErrorHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="ErrorHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -178,7 +178,7 @@ void error(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html b/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html index ba69906d1..66a5da550 100644 --- a/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html +++ b/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html @@ -2,12 +2,12 @@ - + -ExtendedGeneralPath (mxGraph 2.1.1.0 API Specification) +ExtendedGeneralPath (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ ExtendedGeneralPath (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ExtendedGeneralPath (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="ExtendedGeneralPath (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -1091,7 +1091,7 @@ public
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html b/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html index 50553355a..32f7def2a 100644 --- a/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html +++ b/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html @@ -2,12 +2,12 @@ - + -ExtendedPathIterator (mxGraph 2.1.1.0 API Specification) +ExtendedPathIterator (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ ExtendedPathIterator (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ExtendedPathIterator (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="ExtendedPathIterator (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -494,7 +494,7 @@ void next() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/NormalizingReader.html b/java/docs/com/mxgraph/util/svg/NormalizingReader.html index 29bd9d340..75cac5dd9 100644 --- a/java/docs/com/mxgraph/util/svg/NormalizingReader.html +++ b/java/docs/com/mxgraph/util/svg/NormalizingReader.html @@ -2,12 +2,12 @@ - + -NormalizingReader (mxGraph 2.1.1.0 API Specification) +NormalizingReader (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ NormalizingReader (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="NormalizingReader (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="NormalizingReader (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -307,7 +307,7 @@ public abstract int getColumn() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/NumberParser.html b/java/docs/com/mxgraph/util/svg/NumberParser.html index db950969c..ecc793817 100644 --- a/java/docs/com/mxgraph/util/svg/NumberParser.html +++ b/java/docs/com/mxgraph/util/svg/NumberParser.html @@ -2,12 +2,12 @@ - + -NumberParser (mxGraph 2.1.1.0 API Specification) +NumberParser (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ NumberParser (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="NumberParser (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="NumberParser (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -279,7 +279,7 @@ public static float buildFloat(int mant, -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/ParseException.html b/java/docs/com/mxgraph/util/svg/ParseException.html index f19c6917a..dbf3b124f 100644 --- a/java/docs/com/mxgraph/util/svg/ParseException.html +++ b/java/docs/com/mxgraph/util/svg/ParseException.html @@ -2,12 +2,12 @@ - + -ParseException (mxGraph 2.1.1.0 API Specification) +ParseException (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ ParseException (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ParseException (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="ParseException (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -437,7 +437,7 @@ public int getColumnNumber() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/Parser.html b/java/docs/com/mxgraph/util/svg/Parser.html index 738702b8d..0e6a6f741 100644 --- a/java/docs/com/mxgraph/util/svg/Parser.html +++ b/java/docs/com/mxgraph/util/svg/Parser.html @@ -2,12 +2,12 @@ - + -Parser (mxGraph 2.1.1.0 API Specification) +Parser (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Parser (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Parser (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Parser (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -206,7 +206,7 @@ void setErrorHandler(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/PathHandler.html b/java/docs/com/mxgraph/util/svg/PathHandler.html index 449a98018..4b63dc12f 100644 --- a/java/docs/com/mxgraph/util/svg/PathHandler.html +++ b/java/docs/com/mxgraph/util/svg/PathHandler.html @@ -2,12 +2,12 @@ - + -PathHandler (mxGraph 2.1.1.0 API Specification) +PathHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ PathHandler (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PathHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="PathHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -776,7 +776,7 @@ void arcAbs(float rx, -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/PathParser.html b/java/docs/com/mxgraph/util/svg/PathParser.html index 5cc8a168b..45f88c741 100644 --- a/java/docs/com/mxgraph/util/svg/PathParser.html +++ b/java/docs/com/mxgraph/util/svg/PathParser.html @@ -2,12 +2,12 @@ - + -PathParser (mxGraph 2.1.1.0 API Specification) +PathParser (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ PathParser (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PathParser (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="PathParser (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -941,7 +941,7 @@ protected boolean skipCommaSpaces2() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/PointsHandler.html b/java/docs/com/mxgraph/util/svg/PointsHandler.html index 1cedf9f55..b00549ed2 100644 --- a/java/docs/com/mxgraph/util/svg/PointsHandler.html +++ b/java/docs/com/mxgraph/util/svg/PointsHandler.html @@ -2,12 +2,12 @@ - + -PointsHandler (mxGraph 2.1.1.0 API Specification) +PointsHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ PointsHandler (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PointsHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="PointsHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -232,7 +232,7 @@ void endPoints() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/PointsParser.html b/java/docs/com/mxgraph/util/svg/PointsParser.html index 4e6b0a1e3..f40aafac2 100644 --- a/java/docs/com/mxgraph/util/svg/PointsParser.html +++ b/java/docs/com/mxgraph/util/svg/PointsParser.html @@ -2,12 +2,12 @@ - + -PointsParser (mxGraph 2.1.1.0 API Specification) +PointsParser (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ PointsParser (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PointsParser (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="PointsParser (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -367,7 +367,7 @@ protected void doParse() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/ShapeProducer.html b/java/docs/com/mxgraph/util/svg/ShapeProducer.html index a442c895d..2a24cb46e 100644 --- a/java/docs/com/mxgraph/util/svg/ShapeProducer.html +++ b/java/docs/com/mxgraph/util/svg/ShapeProducer.html @@ -2,12 +2,12 @@ - + -ShapeProducer (mxGraph 2.1.1.0 API Specification) +ShapeProducer (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ ShapeProducer (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ShapeProducer (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="ShapeProducer (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -218,7 +218,7 @@ int getWindingRule() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html b/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html index 9e6fbe3b7..0e598fd51 100644 --- a/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html +++ b/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html @@ -2,12 +2,12 @@ - + -StringNormalizingReader (mxGraph 2.1.1.0 API Specification) +StringNormalizingReader (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ StringNormalizingReader (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="StringNormalizingReader (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="StringNormalizingReader (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -454,7 +454,7 @@ public void close() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 b700ef5f1..921b878df 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html +++ b/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 2.1.1.0 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.AWTPathProducer -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 2d658358a..d49bfca8d 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html +++ b/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 2.1.1.0 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.AWTPolygonProducer -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 bc9a227eb..d63c8a248 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html +++ b/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 2.1.1.0 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 b45e3a3fd..ac78b7851 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 2.1.1.0 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -163,7 +163,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 9c37507da..42c45a33d 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html +++ b/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 2.1.1.0 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.CSSConstants -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 902f44fd1..33c0371d4 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html +++ b/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 2.1.1.0 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.DefaultErrorHandler -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 4179d74fd..a7d7725f9 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 2.1.1.0 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -185,7 +185,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 b644ed045..f08132ed3 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 2.1.1.0 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 85955aed1..1309278a9 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 2.1.1.0 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 8d05d1be6..496c109b4 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html +++ b/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 2.1.1.0 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 6f15aacfc..99af89732 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 2.1.1.0 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 67ca7c8c9..a3bb7da5e 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ParseException.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ParseException.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 2.1.1.0 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -920,7 +920,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 61a588310..b383f7bc7 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/Parser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/Parser.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 2.1.1.0 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 6895e8947..9b1e1b629 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html +++ b/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 2.1.1.0 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 110004713..a803560b2 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/PathParser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/PathParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 2.1.1.0 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.PathParser -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 6bf579d1e..30a804401 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html +++ b/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 2.1.1.0 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -215,7 +215,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 26b8ae1f0..ffb786fd3 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 2.1.1.0 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.PointsParser -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 8bde2ad6c..a425aaff7 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 2.1.1.0 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 2c916e0fe..bb3a95210 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html +++ b/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 2.1.1.0 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.StringNormalizingReader -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/package-frame.html b/java/docs/com/mxgraph/util/svg/package-frame.html index 3d2d30ff1..dc34a4a0b 100644 --- a/java/docs/com/mxgraph/util/svg/package-frame.html +++ b/java/docs/com/mxgraph/util/svg/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.svg (mxGraph 2.1.1.0 API Specification) +com.mxgraph.util.svg (mxGraph 2.1.1.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 25b89fffa..dcdccadaa 100644 --- a/java/docs/com/mxgraph/util/svg/package-summary.html +++ b/java/docs/com/mxgraph/util/svg/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.svg (mxGraph 2.1.1.0 API Specification) +com.mxgraph.util.svg (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.svg (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.svg (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.util.svg (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -227,7 +227,7 @@ Package com.mxgraph.util.svg -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/util/svg/package-tree.html b/java/docs/com/mxgraph/util/svg/package-tree.html index 560ac0ad4..51ea637d4 100644 --- a/java/docs/com/mxgraph/util/svg/package-tree.html +++ b/java/docs/com/mxgraph/util/svg/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.svg Class Hierarchy (mxGraph 2.1.1.0 API Specification) +com.mxgraph.util.svg Class Hierarchy (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.svg Class Hierarchy (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.svg Class Hierarchy (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.util.svg Class Hierarchy (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -146,7 +146,7 @@ Interface Hierarchy -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -211,7 +211,7 @@ Classes in
com.m -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxCellState.html b/java/docs/com/mxgraph/view/class-use/mxCellState.html index b8ba6527f..50d42359d 100644 --- a/java/docs/com/mxgraph/view/class-use/mxCellState.html +++ b/java/docs/com/mxgraph/view/class-use/mxCellState.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxCellState (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.view.mxCellState (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxCellState (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxCellState (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxCellState (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -2448,7 +2448,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html b/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html index 0af8339fd..fa13282da 100644 --- a/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html +++ b/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 2.1.1.0 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -222,7 +222,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html index 7b0908b92..632ef3a14 100644 --- a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html +++ b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxEdgeStyle -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 6e3ecaf60..ddd2df620 100644 --- a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html +++ b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -249,7 +249,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -1189,7 +1189,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 378551040..e654cc4f0 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 2.1.1.0 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 31112ac4f..184d64a72 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 2.1.1.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 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -279,7 +279,7 @@ Uses of
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 cf353490e..248f2cf89 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 2.1.1.0 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxGraphView.mxCurrentRootChange -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxLayoutManager -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxPerimeter -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.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 57465307c..4127aa5e9 100644 --- a/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html +++ b/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 2.1.1.0 API Specification) +Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 2.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html b/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html index 33b02aa71..85cf89937 100644 --- a/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html +++ b/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 2.1.1.0 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxSpaceManager -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html b/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html index b5429c587..206330bb8 100644 --- a/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html +++ b/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 2.1.1.0 API Specification) +Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 2.1.1.0 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxStyleRegistry -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxSwimlaneManager -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxTemporaryCellStates -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxCellState.html b/java/docs/com/mxgraph/view/mxCellState.html index 248b71002..a4a401e2f 100644 --- a/java/docs/com/mxgraph/view/mxCellState.html +++ b/java/docs/com/mxgraph/view/mxCellState.html @@ -2,12 +2,12 @@ - + -mxCellState (mxGraph 2.1.1.0 API Specification) +mxCellState (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxCellState (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellState (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxCellState (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -1381,7 +1381,7 @@ public
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxConnectionConstraint.html b/java/docs/com/mxgraph/view/mxConnectionConstraint.html index 695bd46a7..fedb53665 100644 --- a/java/docs/com/mxgraph/view/mxConnectionConstraint.html +++ b/java/docs/com/mxgraph/view/mxConnectionConstraint.html @@ -2,12 +2,12 @@ - + -mxConnectionConstraint (mxGraph 2.1.1.0 API Specification) +mxConnectionConstraint (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxConnectionConstraint (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectionConstraint (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxConnectionConstraint (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -383,7 +383,7 @@ public void setPerimeter(boolean value) -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxEdgeStyle.html b/java/docs/com/mxgraph/view/mxEdgeStyle.html index b55a6a9cd..6a9c486ff 100644 --- a/java/docs/com/mxgraph/view/mxEdgeStyle.html +++ b/java/docs/com/mxgraph/view/mxEdgeStyle.html @@ -2,12 +2,12 @@ - + -mxEdgeStyle (mxGraph 2.1.1.0 API Specification) +mxEdgeStyle (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeStyle (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeStyle (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxEdgeStyle (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -775,7 +775,7 @@ public mxEdgeStyle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html b/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html index 963005b01..d68900210 100644 --- a/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html +++ b/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html @@ -2,12 +2,12 @@ - + -mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.1.1.0 API Specification) +mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxEdgeStyle.mxEdgeStyleFunction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -190,7 +190,7 @@ void apply(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -4080,7 +4080,7 @@ VERSION public static final
String VERSION
Holds the version number of this release. Current version - is 2.1.1.0. + is 2.1.1.1.

See Also:
Constant Field Values
@@ -10263,7 +10263,7 @@ public static void main( -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html b/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html index 7895a4b70..8c14c56ca 100644 --- a/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html +++ b/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html @@ -2,12 +2,12 @@ - + -mxGraph.mxICellVisitor (mxGraph 2.1.1.0 API Specification) +mxGraph.mxICellVisitor (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraph.mxICellVisitor (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraph.mxICellVisitor (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraph.mxICellVisitor (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -170,7 +170,7 @@ boolean visit(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxGraphSelectionModel.html b/java/docs/com/mxgraph/view/mxGraphSelectionModel.html index f57144e46..cea1a2e0e 100644 --- a/java/docs/com/mxgraph/view/mxGraphSelectionModel.html +++ b/java/docs/com/mxgraph/view/mxGraphSelectionModel.html @@ -2,12 +2,12 @@ - + -mxGraphSelectionModel (mxGraph 2.1.1.0 API Specification) +mxGraphSelectionModel (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphSelectionModel (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphSelectionModel (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphSelectionModel (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -721,7 +721,7 @@ protected void cellRemoved(
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html b/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html index ba68e0733..c81d5ffc8 100644 --- a/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html +++ b/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html @@ -2,12 +2,12 @@ - + -mxGraphSelectionModel.mxSelectionChange (mxGraph 2.1.1.0 API Specification) +mxGraphSelectionModel.mxSelectionChange (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphSelectionModel.mxSelectionChange (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphSelectionModel.mxSelectionChange (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphSelectionModel.mxSelectionChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxGraphView.html b/java/docs/com/mxgraph/view/mxGraphView.html index 9657e01ac..d0484c8fa 100644 --- a/java/docs/com/mxgraph/view/mxGraphView.html +++ b/java/docs/com/mxgraph/view/mxGraphView.html @@ -2,12 +2,12 @@ - + -mxGraphView (mxGraph 2.1.1.0 API Specification) +mxGraphView (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphView (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphView (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphView (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -1716,7 +1716,7 @@ public
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html b/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html index 070940522..7a29ce666 100644 --- a/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html +++ b/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html @@ -2,12 +2,12 @@ - + -mxGraphView.mxCurrentRootChange (mxGraph 2.1.1.0 API Specification) +mxGraphView.mxCurrentRootChange (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxGraphView.mxCurrentRootChange (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphView.mxCurrentRootChange (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxGraphView.mxCurrentRootChange (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxLayoutManager.html b/java/docs/com/mxgraph/view/mxLayoutManager.html index c9fc4da09..7cdda1844 100644 --- a/java/docs/com/mxgraph/view/mxLayoutManager.html +++ b/java/docs/com/mxgraph/view/mxLayoutManager.html @@ -2,12 +2,12 @@ - + -mxLayoutManager (mxGraph 2.1.1.0 API Specification) +mxLayoutManager (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxLayoutManager (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLayoutManager (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxLayoutManager (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxMultiplicity.html b/java/docs/com/mxgraph/view/mxMultiplicity.html index 82e74679b..8a195baed 100644 --- a/java/docs/com/mxgraph/view/mxMultiplicity.html +++ b/java/docs/com/mxgraph/view/mxMultiplicity.html @@ -2,12 +2,12 @@ - + -mxMultiplicity (mxGraph 2.1.1.0 API Specification) +mxMultiplicity (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxMultiplicity (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMultiplicity (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxMultiplicity (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -643,7 +643,7 @@ public int getMaxValue() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxPerimeter.html b/java/docs/com/mxgraph/view/mxPerimeter.html index d71d472e6..ef663eb1d 100644 --- a/java/docs/com/mxgraph/view/mxPerimeter.html +++ b/java/docs/com/mxgraph/view/mxPerimeter.html @@ -2,12 +2,12 @@ - + -mxPerimeter (mxGraph 2.1.1.0 API Specification) +mxPerimeter (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxPerimeter (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPerimeter (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxPerimeter (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -327,7 +327,7 @@ public mxPerimeter() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html b/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html index 8ef46be01..227c66afd 100644 --- a/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html +++ b/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html @@ -2,12 +2,12 @@ - + -mxPerimeter.mxPerimeterFunction (mxGraph 2.1.1.0 API Specification) +mxPerimeter.mxPerimeterFunction (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxPerimeter.mxPerimeterFunction (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPerimeter.mxPerimeterFunction (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxPerimeter.mxPerimeterFunction (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -186,7 +186,7 @@ apply -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxSpaceManager.html b/java/docs/com/mxgraph/view/mxSpaceManager.html index 5cb956405..62e1e5692 100644 --- a/java/docs/com/mxgraph/view/mxSpaceManager.html +++ b/java/docs/com/mxgraph/view/mxSpaceManager.html @@ -2,12 +2,12 @@ - + -mxSpaceManager (mxGraph 2.1.1.0 API Specification) +mxSpaceManager (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxSpaceManager (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpaceManager (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxSpaceManager (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxStyleRegistry.html b/java/docs/com/mxgraph/view/mxStyleRegistry.html index 05b1d0232..7c48f9a49 100644 --- a/java/docs/com/mxgraph/view/mxStyleRegistry.html +++ b/java/docs/com/mxgraph/view/mxStyleRegistry.html @@ -2,12 +2,12 @@ - + -mxStyleRegistry (mxGraph 2.1.1.0 API Specification) +mxStyleRegistry (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxStyleRegistry (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStyleRegistry (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxStyleRegistry (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -300,7 +300,7 @@ public static
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxStylesheet.html b/java/docs/com/mxgraph/view/mxStylesheet.html index e3a7438a1..c530c2f92 100644 --- a/java/docs/com/mxgraph/view/mxStylesheet.html +++ b/java/docs/com/mxgraph/view/mxStylesheet.html @@ -2,12 +2,12 @@ - + -mxStylesheet (mxGraph 2.1.1.0 API Specification) +mxStylesheet (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxStylesheet (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStylesheet (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxStylesheet (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -487,7 +487,7 @@ public
-

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxSwimlaneManager.html b/java/docs/com/mxgraph/view/mxSwimlaneManager.html index cfbaa7a6c..d443a0bdd 100644 --- a/java/docs/com/mxgraph/view/mxSwimlaneManager.html +++ b/java/docs/com/mxgraph/view/mxSwimlaneManager.html @@ -2,12 +2,12 @@ - + -mxSwimlaneManager (mxGraph 2.1.1.0 API Specification) +mxSwimlaneManager (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxSwimlaneManager (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSwimlaneManager (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxSwimlaneManager (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -316,9 +316,10 @@ Manager for swimlanes and nested swimlanes that sets the size of newly added protected  void -
resizeSwimlane(Object swimlane, +resizeSwimlane(Object swimlane, double w, - double h) + double h, + boolean parentHorizontal)
          Sets the width or height of the given swimlane to the given value depending @@ -700,12 +701,13 @@ protected void cellsResized(

+

resizeSwimlane

 protected void resizeSwimlane(Object swimlane,
                               double w,
-                              double h)
+ double h, + boolean parentHorizontal)
Sets the width or height of the given swimlane to the given value depending on . If is true, then the width is set, otherwise, @@ -751,7 +753,7 @@ public void destroy() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/mxTemporaryCellStates.html b/java/docs/com/mxgraph/view/mxTemporaryCellStates.html index d67c5d270..fd04c2393 100644 --- a/java/docs/com/mxgraph/view/mxTemporaryCellStates.html +++ b/java/docs/com/mxgraph/view/mxTemporaryCellStates.html @@ -2,12 +2,12 @@ - + -mxTemporaryCellStates (mxGraph 2.1.1.0 API Specification) +mxTemporaryCellStates (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ mxTemporaryCellStates (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxTemporaryCellStates (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="mxTemporaryCellStates (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/com/mxgraph/view/package-frame.html b/java/docs/com/mxgraph/view/package-frame.html index f930ba482..f9854cf21 100644 --- a/java/docs/com/mxgraph/view/package-frame.html +++ b/java/docs/com/mxgraph/view/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.view (mxGraph 2.1.1.0 API Specification) +com.mxgraph.view (mxGraph 2.1.1.1 API Specification) - + diff --git a/java/docs/com/mxgraph/view/package-summary.html b/java/docs/com/mxgraph/view/package-summary.html index 9a9253d7a..88c695710 100644 --- a/java/docs/com/mxgraph/view/package-summary.html +++ b/java/docs/com/mxgraph/view/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.view (mxGraph 2.1.1.0 API Specification) +com.mxgraph.view (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.view (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.view (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="com.mxgraph.view (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -232,7 +232,7 @@ This package implements the graph component, represented by the mxGraph -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -132,7 +132,7 @@ Interface Hierarchy -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

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

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/constant-values.html b/java/docs/constant-values.html index 4f33b688a..201b84a4c 100644 --- a/java/docs/constant-values.html +++ b/java/docs/constant-values.html @@ -2,12 +2,12 @@ - + -Constant Field Values (mxGraph 2.1.1.0 API Specification) +Constant Field Values (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Constant Field Values (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Constant Field Values (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Constant Field Values (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -1048,7 +1048,7 @@ com.mxgraph.*
public static final String VERSION -"2.1.1.0" +"2.1.1.1" @@ -1081,7 +1081,7 @@ com.mxgraph.* -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/deprecated-list.html b/java/docs/deprecated-list.html index 510568035..8e0ff9da0 100644 --- a/java/docs/deprecated-list.html +++ b/java/docs/deprecated-list.html @@ -2,12 +2,12 @@ - + -Deprecated List (mxGraph 2.1.1.0 API Specification) +Deprecated List (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Deprecated List (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Deprecated List (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Deprecated List (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -191,7 +191,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/help-doc.html b/java/docs/help-doc.html index 15af266d4..cf5edb2d7 100644 --- a/java/docs/help-doc.html +++ b/java/docs/help-doc.html @@ -2,12 +2,12 @@ - + -API Help (mxGraph 2.1.1.0 API Specification) +API Help (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ API Help (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="API Help (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="API Help (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -188,7 +188,7 @@ This help file applies to API documentation generated using the standard doclet. -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/index-all.html b/java/docs/index-all.html index 59591e6b9..5dbb96ef6 100644 --- a/java/docs/index-all.html +++ b/java/docs/index-all.html @@ -2,12 +2,12 @@ - + -Index (mxGraph 2.1.1.0 API Specification) +Index (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Index (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Index (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Index (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -11147,7 +11147,7 @@ Variable in class com.mxgraph.layout.mxStackLayout
If the parent should be resized to match the width/height of the stack. -
resizeSwimlane(Object, double, double) - +
resizeSwimlane(Object, double, double, boolean) - Method in class com.mxgraph.view.mxSwimlaneManager
Sets the width or height of the given swimlane to the given value depending on . @@ -15033,7 +15033,7 @@ Method in class com.mxgraph.util.svg. -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/index.html b/java/docs/index.html index 6bda8343c..46a0c09ec 100644 --- a/java/docs/index.html +++ b/java/docs/index.html @@ -2,9 +2,9 @@ - + -mxGraph 2.1.1.0 API Specification +mxGraph 2.1.1.1 API Specification @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -81,7 +81,7 @@ function windowTitle()

-mxGraph 2.1.1.0 API Specification +mxGraph 2.1.1.1 API Specification

@@ -225,7 +225,7 @@ mxGraph 2.1.1.0 API Specification -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/overview-tree.html b/java/docs/overview-tree.html index 919011ace..470668c68 100644 --- a/java/docs/overview-tree.html +++ b/java/docs/overview-tree.html @@ -2,12 +2,12 @@ - + -Class Hierarchy (mxGraph 2.1.1.0 API Specification) +Class Hierarchy (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Class Hierarchy (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Class Hierarchy (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Class Hierarchy (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -286,7 +286,7 @@ Enum Hierarchy -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/docs/serialized-form.html b/java/docs/serialized-form.html index 9656f37da..5e01ba351 100644 --- a/java/docs/serialized-form.html +++ b/java/docs/serialized-form.html @@ -2,12 +2,12 @@ - + -Serialized Form (mxGraph 2.1.1.0 API Specification) +Serialized Form (mxGraph 2.1.1.1 API Specification) - + @@ -15,7 +15,7 @@ Serialized Form (mxGraph 2.1.1.0 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Serialized Form (mxGraph 2.1.1.0 API Specification)"; + parent.document.title="Serialized Form (mxGraph 2.1.1.1 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

@@ -2548,7 +2548,7 @@ visibleTargetState -

mxGraph 2.1.1.0

+

mxGraph 2.1.1.1

diff --git a/java/lib/mxgraph-all.jar b/java/lib/mxgraph-all.jar index 5ed1238da..11227ca1c 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 2e3405a0f..d30458a16 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 a4ee9a06b..9b084ad72 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/mxGraphics2DCanvas.java b/java/src/com/mxgraph/canvas/mxGraphics2DCanvas.java index c6a3c3633..ca24055cd 100644 --- a/java/src/com/mxgraph/canvas/mxGraphics2DCanvas.java +++ b/java/src/com/mxgraph/canvas/mxGraphics2DCanvas.java @@ -1,5 +1,5 @@ /** - * $Id: mxGraphics2DCanvas.java,v 1.1 2012/11/15 13:26:47 gaudenz Exp $ + * $Id: mxGraphics2DCanvas.java,v 1.2 2013/08/28 06:32:23 gaudenz Exp $ * Copyright (c) 2007-2012, JGraph Ltd */ package com.mxgraph.canvas; @@ -415,6 +415,14 @@ public class mxGraphics2DCanvas extends mxBasicCanvas // point with a spacing of size off the current point // into direction of the next point mxPoint next = points[i + 1]; + + // Uses next non-overlapping point + while (i < points.length - 2 && Math.round(next.getX() - tmp.getX()) == 0 && Math.round(next.getY() - tmp.getY()) == 0) + { + next = points[i + 2]; + i++; + } + dx = next.getX() - tmp.getX(); dy = next.getY() - tmp.getY(); diff --git a/java/src/com/mxgraph/shape/mxConnectorShape.java b/java/src/com/mxgraph/shape/mxConnectorShape.java index fe6a35aee..00386b590 100644 --- a/java/src/com/mxgraph/shape/mxConnectorShape.java +++ b/java/src/com/mxgraph/shape/mxConnectorShape.java @@ -1,5 +1,5 @@ /** - * $Id: mxConnectorShape.java,v 1.1 2012/11/15 13:26:44 gaudenz Exp $ + * $Id: mxConnectorShape.java,v 1.2 2013/08/28 06:32:23 gaudenz Exp $ * Copyright (c) 2010, Gaudenz Alder, David Benson */ package com.mxgraph.shape; @@ -179,17 +179,19 @@ public class mxConnectorShape extends mxBasicShape protected mxLine getMarkerVector(List points, boolean source, double markerSize) { - if (source) + int n = points.size(); + mxPoint p0 = (source) ? points.get(1) : points.get(n - 2); + mxPoint pe = (source) ? points.get(0) : points.get(n - 1); + int count = 1; + + // Uses next non-overlapping point + while (count < n - 1 && Math.round(p0.getX() - pe.getX()) == 0 && Math.round(p0.getY() - pe.getY()) == 0) { - return new mxLine(points.get(1), points.get(0)); - } - else - { - int pointCount = points.size(); - - return new mxLine(points.get(pointCount - 2), - points.get(pointCount - 1)); + p0 = (source) ? points.get(1 + count) : points.get(n - 2 - count); + count++; } + + return new mxLine(p0, pe); } } diff --git a/java/src/com/mxgraph/util/mxHtmlColor.java b/java/src/com/mxgraph/util/mxHtmlColor.java index 941d06180..b730047fe 100644 --- a/java/src/com/mxgraph/util/mxHtmlColor.java +++ b/java/src/com/mxgraph/util/mxHtmlColor.java @@ -1,5 +1,5 @@ /** - * $Id: mxHtmlColor.java,v 1.3 2012/11/25 11:28:51 gaudenz Exp $ + * $Id: mxHtmlColor.java,v 1.4 2013/08/28 06:32:23 gaudenz Exp $ * Copyright (c) 2007-2012, JGraph Ltd */ package com.mxgraph.util; @@ -66,6 +66,7 @@ public class mxHtmlColor { Color result = htmlColors.get(str); + // LATER: Return the result even if it's null to avoid invalid color codes if (result != null) { return result; diff --git a/java/src/com/mxgraph/view/mxCellState.java b/java/src/com/mxgraph/view/mxCellState.java index 112315f5c..5b11744d1 100644 --- a/java/src/com/mxgraph/view/mxCellState.java +++ b/java/src/com/mxgraph/view/mxCellState.java @@ -1,5 +1,5 @@ /** - * $Id: mxCellState.java,v 1.1 2012/11/15 13:26:46 gaudenz Exp $ + * $Id: mxCellState.java,v 1.2 2013/08/28 06:01:37 gaudenz Exp $ * Copyright (c) 2007, Gaudenz Alder */ package com.mxgraph.view; @@ -520,6 +520,11 @@ public class mxCellState extends mxRectangle public Object clone() { mxCellState clone = new mxCellState(view, cell, style); + + if (label != null) + { + clone.label = label; + } if (absolutePoints != null) { diff --git a/java/src/com/mxgraph/view/mxGraph.java b/java/src/com/mxgraph/view/mxGraph.java index 7a313e71a..7190f47a0 100644 --- a/java/src/com/mxgraph/view/mxGraph.java +++ b/java/src/com/mxgraph/view/mxGraph.java @@ -195,9 +195,9 @@ public class mxGraph extends mxEventSource /** * Holds the version number of this release. Current version - * is 2.1.1.0. + * is 2.1.1.1. */ - public static final String VERSION = "2.1.1.0"; + public static final String VERSION = "2.1.1.1"; /** * diff --git a/java/src/com/mxgraph/view/mxSwimlaneManager.java b/java/src/com/mxgraph/view/mxSwimlaneManager.java index a46eb9a7d..275da6370 100644 --- a/java/src/com/mxgraph/view/mxSwimlaneManager.java +++ b/java/src/com/mxgraph/view/mxSwimlaneManager.java @@ -1,5 +1,5 @@ /** - * $Id: mxSwimlaneManager.java,v 1.1 2012/11/15 13:26:46 gaudenz Exp $ + * $Id: mxSwimlaneManager.java,v 1.2 2013/08/29 09:19:41 gaudenz Exp $ * Copyright (c) 2007, Gaudenz Alder */ package com.mxgraph.view; @@ -267,7 +267,8 @@ public class mxSwimlaneManager extends mxEventSource // Applies the size of the refernece to the newly added swimlane if (geo != null) { - resizeSwimlane(swimlane, geo.getWidth(), geo.getHeight()); + boolean parentHorizontal = (parent != null) ? isCellHorizontal(parent) : horizontal; + resizeSwimlane(swimlane, geo.getWidth(), geo.getHeight(), parentHorizontal); } } @@ -308,7 +309,8 @@ public class mxSwimlaneManager extends mxEventSource size.setHeight(size.getHeight() + tmp.getHeight()); } - this.resizeSwimlane(top, size.getWidth(), size.getHeight()); + boolean parentHorizontal = (current != null) ? isCellHorizontal(current) : horizontal; + resizeSwimlane(top, size.getWidth(), size.getHeight(), parentHorizontal); } } } @@ -325,27 +327,28 @@ public class mxSwimlaneManager extends mxEventSource * on . If is true, then the width is set, otherwise, * the height is set. */ - protected void resizeSwimlane(Object swimlane, double w, double h) + protected void resizeSwimlane(Object swimlane, double w, double h, boolean parentHorizontal) { mxIGraphModel model = getGraph().getModel(); model.beginUpdate(); try { + boolean horizontal = this.isCellHorizontal(swimlane); + if (!this.isSwimlaneIgnored(swimlane)) { mxGeometry geo = model.getGeometry(swimlane); if (geo != null) { - boolean horizontal = isCellHorizontal(swimlane); - if ((horizontal && geo.getHeight() != h) - || (!horizontal && geo.getWidth() != w)) + if ((parentHorizontal && geo.getHeight() != h) + || (!parentHorizontal && geo.getWidth() != w)) { geo = (mxGeometry) geo.clone(); - if (horizontal) + if (parentHorizontal) { geo.setHeight(h); } @@ -369,7 +372,7 @@ public class mxSwimlaneManager extends mxEventSource for (int i = 0; i < childCount; i++) { Object child = model.getChildAt(swimlane, i); - resizeSwimlane(child, w, h); + resizeSwimlane(child, w, h, horizontal); } } finally diff --git a/javascript/examples/anchors.html b/javascript/examples/anchors.html new file mode 100644 index 000000000..41cbeedaa --- /dev/null +++ b/javascript/examples/anchors.html @@ -0,0 +1,125 @@ + + + + Anchors example for mxGraph + + + + + + + + + + + + + + + +
+
+ + diff --git a/javascript/examples/editors/diagrameditor.html b/javascript/examples/editors/diagrameditor.html index 718a7152c..ded832fa3 100644 --- a/javascript/examples/editors/diagrameditor.html +++ b/javascript/examples/editors/diagrameditor.html @@ -150,38 +150,36 @@ // Client-side code for new image export var newExportImage = function(editor) { - var scale = 1; - var bounds = editor.graph.getGraphBounds(); - - // Creates XML node to hold output - var xmlDoc = mxUtils.createXmlDocument(); - var root = xmlDoc.createElement('output'); - xmlDoc.appendChild(root); - - // Creates interface for rendering output - var xmlCanvas = new mxXmlCanvas2D(root); - xmlCanvas.scale(scale); - xmlCanvas.translate(Math.round(-bounds.x * scale), Math.round(-bounds.y * scale)); - - // Renders output to interface - var imgExport = new mxImageExport(); - imgExport.drawState(editor.graph.getView().getState(editor.graph.model.root), xmlCanvas); - - // Puts request data together - var filename = 'export.png'; - var format = 'png'; - var bg = '#FFFFFF'; - var w = Math.round((bounds.width + 4) * scale); - var h = Math.round((bounds.height + 4) * scale); - var xml = mxUtils.getXml(root); - - // Compression is currently not used in this example - // Requires base64.js and redeflate.js - // xml = encodeURIComponent(Base64.encode(RawDeflate.deflate(xml), true)); - - new mxXmlRequest('/New' + editor.urlImage.substring(1), 'filename=' + filename + - '&format=' + format + '&bg=' + bg + '&w=' + w + '&h=' + h + '&xml=' + - encodeURIComponent(xml)).simulate(document, '_blank'); + if (editor.urlImage != null) + { + var graph = editor.graph; + var scale = graph.view.scale; + var bounds = graph.getGraphBounds(); + + // New image export + var xmlDoc = mxUtils.createXmlDocument(); + var root = xmlDoc.createElement('output'); + xmlDoc.appendChild(root); + + // Renders graph. Offset will be multiplied with state's scale when painting state. + var xmlCanvas = new mxXmlCanvas2D(root); + xmlCanvas.translate(Math.floor((1 / scale - bounds.x) / scale), Math.floor((1 / scale - bounds.y) / scale)); + + var imgExport = new mxImageExport(); + imgExport.drawState(graph.getView().getState(graph.model.root), xmlCanvas); + + // Puts request data together + var filename = 'export.png'; + var format = 'png'; + var bg = '#FFFFFF'; + var w = Math.ceil(bounds.width + 2); + var h = Math.ceil(bounds.height + 2); + var xml = mxUtils.getXml(root); + + new mxXmlRequest('/New' + editor.urlImage.substring(1), 'filename=' + filename + + '&format=' + format + '&bg=' + bg + '&w=' + w + '&h=' + h + '&xml=' + + encodeURIComponent(xml)).simulate(document, '_blank'); + } }; editor.addAction('newExportImage', newExportImage); diff --git a/javascript/examples/grapheditor/www/js/Shapes.js b/javascript/examples/grapheditor/www/js/Shapes.js index 80514e6de..5d49ebff4 100644 --- a/javascript/examples/grapheditor/www/js/Shapes.js +++ b/javascript/examples/grapheditor/www/js/Shapes.js @@ -1,5 +1,5 @@ /** - * $Id: Shapes.js,v 1.20 2013/07/09 14:16:51 gaudenz Exp $ + * $Id: Shapes.js,v 1.21 2013/08/21 12:24:16 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ @@ -778,21 +778,22 @@ { var size = 10; var bounds = new mxRectangle(0, 0, size, size); - this.specialHandle = new mxRhombus(bounds, mxConstants.HANDLE_FILLCOLOR, mxConstants.HANDLE_STROKECOLOR); - } - - if (this.specialHandle.isHtmlAllowed() && this.state.text != null && this.state.text.node.parentNode == graph.container) - { - this.specialHandle.bounds.height -= 1; - this.specialHandle.bounds.width -= 1; - this.specialHandle.dialect = mxConstants.DIALECT_STRICTHTML; - this.specialHandle.init(graph.container); - } - else - { - this.specialHandle.dialect = (graph.dialect != mxConstants.DIALECT_SVG) ? - mxConstants.DIALECT_MIXEDHTML : mxConstants.DIALECT_SVG; - this.specialHandle.init(graph.getView().getOverlayPane()); + + if (this.state.text != null && this.state.text.node.parentNode == graph.container) + { + this.specialHandle = new mxRectangleShape(bounds, mxConstants.HANDLE_FILLCOLOR, mxConstants.HANDLE_STROKECOLOR); + this.specialHandle.bounds.height -= 4; + this.specialHandle.bounds.width -= 4; + this.specialHandle.dialect = mxConstants.DIALECT_STRICTHTML; + this.specialHandle.init(graph.container); + } + else + { + this.specialHandle = new mxRhombus(bounds, mxConstants.HANDLE_FILLCOLOR, mxConstants.HANDLE_STROKECOLOR); + this.specialHandle.dialect = (graph.dialect != mxConstants.DIALECT_SVG) ? + mxConstants.DIALECT_MIXEDHTML : mxConstants.DIALECT_SVG; + this.specialHandle.init(graph.getView().getOverlayPane()); + } } mxEvent.redirectMouseEvents(this.specialHandle.node, graph, this.state); diff --git a/javascript/examples/grapheditor/www/js/Sidebar.js b/javascript/examples/grapheditor/www/js/Sidebar.js index 6d77332bc..b7bc99b9c 100644 --- a/javascript/examples/grapheditor/www/js/Sidebar.js +++ b/javascript/examples/grapheditor/www/js/Sidebar.js @@ -1,5 +1,5 @@ /** - * $Id: Sidebar.js,v 1.52 2013/07/22 05:52:50 gaudenz Exp $ + * $Id: Sidebar.js,v 1.53 2013/08/21 11:56:46 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ /** @@ -471,7 +471,7 @@ Sidebar.prototype.addUmlPalette = function(expand) classCell.vertex = true; content.appendChild(this.createVertexTemplateFromCells([classCell], 160, 90, 'Object', true)); - var tableCell = new mxCell('' + + var tableCell = new mxCell('
' + '' + '' + '' + diff --git a/javascript/index.html b/javascript/index.html index 84d3250c4..2bcefff36 100644 --- a/javascript/index.html +++ b/javascript/index.html @@ -20,160 +20,94 @@ javascript/examples contains the following examples:

    -
  • Codec - Dynamically - creating a graph from XML and encoding the model into XML, as well +
  • Codec - Dynamically creating a graph from XML and encoding the model into XML, as well as changing the default style for edges in-place.
  • -
  • dbEditor - Uses Google - for database content editing. The database contains Persons, +
  • dbEditor - Uses Google for database content editing. The database contains Persons, Locations and connections between persons and locations.
  • -
  • Dynamicloading - - Loading graph model data dynamically to limit the number of cells in the model.
  • -
  • Dynamic Style - - Changing the style of a cell by overriding mxGraphModel.
  • -
  • Dynamic Toolbar - - Changing the state of the toolbar at runtime.
  • -
  • Editing - - Using the in-place editor trigger to specify the editing value and write the +
  • Dynamicloading - Loading graph model data dynamically to limit the number of cells in the model.
  • +
  • Dynamic Style - Changing the style of a cell by overriding mxGraphModel.
  • +
  • Dynamic Toolbar - Changing the state of the toolbar at runtime.
  • +
  • Editing - Using the in-place editor trigger to specify the editing value and write the new value into a specific field of the user object. Wrapping and DOM nodes as labels are also demonstrated here.
  • -
  • Events - Creating - a graph container and using the mxDivResizer to update the size, +
  • Events - Creating a graph container and using the mxDivResizer to update the size, interaction on the graph, including marquee selection, custom tooltips, context menu handling and changing the default menu opacity. It also demonstrates how to use an edgestyle in the default stylesheet, and handle the doubleclick on the adjustment point. See also: overlays.html for click event handling.
  • -
  • ExtJs - - Using mxGraph together with the Ext JavaScript framework.
  • -
  • File I/O - - Reading an XML file, writing a custom parser, applying an automatic layout +
  • ExtJs - Using mxGraph together with the Ext JavaScript framework.
  • +
  • File I/O - Reading an XML file, writing a custom parser, applying an automatic layout and defining a 2-way edge.
  • -
  • Graphlayout - - Using automatic graph layouts and listening to changes of the graph size +
  • Graphlayout - Using automatic graph layouts and listening to changes of the graph size to keep the container size in sync.
  • -
  • Hello, World! - Using - a DOM node to create a graph and adding vertices and edges.
  • -
  • Hierarchical Layout - - Using the hierarchical and organic layout algorithms.
  • -
  • Images - - Using background images and images for for the label- and image-shape.
  • -
  • Indicators - - Using small subshapes (indicators) inside a parent shape, typically an mxLabel.
  • -
  • Label Position - - Using the label position styles to set the position of vertex labels.
  • -
  • Labels - - Wrapping and clipping for HTML labels of vertices, truncating labels to fit the +
  • Hello, World! - Using a DOM node to create a graph and adding vertices and edges.
  • +
  • Hierarchical Layout - Using the hierarchical and organic layout algorithms.
  • +
  • Images - Using background images and images for for the label- and image-shape.
  • +
  • Indicators - Using small subshapes (indicators) inside a parent shape, typically an mxLabel.
  • +
  • Label Position - Using the label position styles to set the position of vertex labels.
  • +
  • Labels - Wrapping and clipping for HTML labels of vertices, truncating labels to fit the size of a vertex, and manually placing vertex labels and relative children that act as "sublabels".
  • -
  • Layers - Using - multiple layers to contain cells.
  • -
  • Merge - - Using the mergeChildren function to merge two graphs.
  • -
  • Monitor - - Using mxGraph to display the current state of a workflow.
  • -
  • Offpage Connectors - - Creating offpage connectors in a graph and loading a new diagram on a +
  • Layers - Using multiple layers to contain cells.
  • +
  • Merge - Using the mergeChildren function to merge two graphs.
  • +
  • Monitor - Using mxGraph to display the current state of a workflow.
  • +
  • Offpage Connectors - Creating offpage connectors in a graph and loading a new diagram on a single click.
  • -
  • Orgchart - - Using automatic layouts, fit to page zoom and poster print (across +
  • Orgchart - Using automatic layouts, fit to page zoom and poster print (across multiple pages).
  • -
  • Overlays - Cell - highlighting, overlays and handling click and double click +
  • Overlays - Cell highlighting, overlays and handling click and double click events. See also: events.html for more event handling.
  • -
  • Permissions - - Creating permissions to define the available operations on a graph.
  • -
  • Ports - - Implementing ports as child vertices with relative positions, +
  • Permissions - Creating permissions to define the available operations on a graph.
  • +
  • Ports - Implementing ports as child vertices with relative positions, drag and drop and using images and HTML in cells.
  • -
  • Schema - - Implementing a database schema editor.
  • -
  • Scrollbars - - Using a scrollable table with different sections in a cell label.
  • -
  • Secondlabel - - Adding another string label to vertices.
  • -
  • Shape - How to - implement and use a custom shape.
  • -
  • Stylesheet - Using - a custom stylesheet and control points in edges, as well as +
  • Schema - Implementing a database schema editor.
  • +
  • Scrollbars - Using a scrollable table with different sections in a cell label.
  • +
  • Secondlabel - Adding another string label to vertices.
  • +
  • Shape - How to implement and use a custom shape.
  • +
  • Stylesheet - Using a custom stylesheet and control points in edges, as well as overriding the getLabel and getTooltip function to return dynamic information, and making a supercall in JavaScript.
  • -
  • Swimlanes - - Using swimlanes for pools and lanes and using the stack layout as an +
  • Swimlanes - Using swimlanes for pools and lanes and using the stack layout as an automatic layout.
  • -
  • Thread - Setting - overlays in mxGraph from within a timed function.
  • -
  • Toolbar - - Using existing cells as templates for creating new cells.
  • -
  • Tree - - Folding for subtrees in acyclic graphs (trees).
  • -
  • UIConfig - - Using a config file to configure the toolbar and popup menu in mxEditor.
  • -
  • Userobject - - Using XML objects as values for cells.
  • -
  • Validation - - Using multiplicities for automatically validating a graph.
  • -
  • Windows - - Using the mxWindow class for displaying windows.
  • -
  • Wrapping - - Using HTML markup and word-wrapping in vertex and edge labels.
  • -
  • HelloPort - - Using the isPort hook for visually connecting to another cell.
  • -
  • Pagebreaks - - Using the pageBreaksVisible and preferPageSize switches.
  • -
  • FixedPoints - - Using fixed connection points for connecting edges to vertices.
  • -
  • ServerView - - Using a server-side image of the graph as the diagram in the client.
  • -
  • ContextIcons - - Adding icons to selected vertices to carry out special operations.
  • -
  • Guides - Using the guidesEnabled - and snapToTerminals switches, creating a grid using a canvas and - handling cursor keys.
  • -
  • FixedIcon - Customizing the icon - position in the mxLabel shape.
  • +
  • Thread - Setting overlays in mxGraph from within a timed function.
  • +
  • Toolbar - Using existing cells as templates for creating new cells.
  • +
  • Tree - Folding for subtrees in acyclic graphs (trees).
  • +
  • UIConfig - Using a config file to configure the toolbar and popup menu in mxEditor.
  • +
  • Userobject - Using XML objects as values for cells.
  • +
  • Validation - Using multiplicities for automatically validating a graph.
  • +
  • Windows - Using the mxWindow class for displaying windows.
  • +
  • Wrapping - Using HTML markup and word-wrapping in vertex and edge labels.
  • +
  • HelloPort - Using the isPort hook for visually connecting to another cell.
  • +
  • Pagebreaks - Using the pageBreaksVisible and preferPageSize switches.
  • +
  • FixedPoints - Using fixed connection points for connecting edges to vertices.
  • +
  • ServerView - Using a server-side image of the graph as the diagram in the client.
  • +
  • ContextIcons - Adding icons to selected vertices to carry out special operations.
  • +
  • Guides - Using the guidesEnabled and snapToTerminals switches, creating a grid using a canvas and handling cursor keys.
  • +
  • FixedIcon - Customizing the icon position in the mxLabel shape.
  • Markers - Creating custom marker.
  • -
  • Dragsource - Using - one drag source for multiple graphs and changing the drag icon.
  • -
  • Orthogonal - Demonstrates the - use of port constraints and orthogonal edge styles and handlers.
  • -
  • Standardsmode - How to use - mxGraphs VML rendering with a Doctype in IE.
  • -
  • EdgeTolerance - Increasing - the tolerance for hit detection on edges.
  • -
  • Stencils - Using an XML file to - define new stencils to be used as shapes.
  • -
  • IE9SVG - Using SVG for rendering - a diagram in IE9 (and the HTML5 doctype).
  • -
  • HoverIcons - Showing - icons on vertices as mouse hovers over them.
  • -
  • Portrefs - Referencing - connection points by ID.
  • -
  • Control - Adding controls - to specific cells in a graph.
  • -
  • Wires - Drawing electrical and - digital circuits with devices and wires.
  • -
  • Menustyle - Styling the built-in - popupmenu using CSS.
  • -
  • Perimeter - How to avoid edge and - label intersections.
  • -
  • Grid - Drawing a grid dynamically - using HTML 5 canvas.
  • -
  • Groups - Using cells as parts of - other cells.
  • -
  • Visibility - Various solutions for - hiding and showing cells.
  • -
  • Autolayout - Running - and animating a layout algorithm after every change to a graph.
  • -
  • Touch - Handling touch, - mouse and msPointerEvents.
  • -
  • Collapse - Changing - the style of a cell based on its collapsed state.
  • -
  • Folding - Using a - layout to implement a nested group structure.
  • -
  • LOD - Implementing a - level of detail per cell.
  • -
  • Hoverstyle - Change - the style of a vertex on mouseover. +
  • Dragsource - Using one drag source for multiple graphs and changing the drag icon.
  • +
  • Orthogonal - Demonstrates the use of port constraints and orthogonal edge styles and handlers.
  • +
  • Standardsmode - How to use mxGraphs VML rendering with a Doctype in IE.
  • +
  • EdgeTolerance - Increasing the tolerance for hit detection on edges.
  • +
  • Stencils - Using an XML file to define new stencils to be used as shapes.
  • +
  • IE9SVG - Using SVG for rendering a diagram in IE9 (and the HTML5 doctype).
  • +
  • HoverIcons - Showing icons on vertices as mouse hovers over them.
  • +
  • Portrefs - Referencing connection points by ID.
  • +
  • Control - Adding controls to specific cells in a graph.
  • +
  • Wires - Drawing electrical and digital circuits with devices and wires.
  • +
  • Menustyle - Styling the built-in popupmenu using CSS.
  • +
  • Perimeter - How to avoid edge and label intersections.
  • +
  • Grid - Drawing a grid dynamically using HTML 5 canvas.
  • +
  • Groups - Using cells as parts of other cells.
  • +
  • Visibility - Various solutions for hiding and showing cells.
  • +
  • Autolayout - Running and animating a layout algorithm after every change to a graph.
  • +
  • Touch - Handling touch, mouse and msPointerEvents.
  • +
  • Collapse - Changing the style of a cell based on its collapsed state.
  • +
  • Folding - Using a layout to implement a nested group structure.
  • +
  • LOD - Implementing a level of detail per cell.
  • +
  • Hoverstyle - Change the style of a vertex on mouseover.
  • +
  • Hoverstyle - Define fixed connection points for all shapes.

javascript/examples/editors contains the following examples: diff --git a/javascript/mxClient.js b/javascript/mxClient.js index 7e1d5c96e..903b03597 100644 --- a/javascript/mxClient.js +++ b/javascript/mxClient.js @@ -21,9 +21,9 @@ var mxClient = * * versionMajor.versionMinor.buildNumber.revisionNumber * - * Current version is 2.1.1.0. + * Current version is 2.1.1.1. */ - VERSION: '2.1.1.0', + VERSION: '2.1.1.1', /** * Variable: IS_IE @@ -48137,7 +48137,7 @@ mxCurrentRootChange.prototype.execute = function() this.isUp = !this.isUp; }; /** - * $Id: mxGraph.js,v 1.39 2013/08/21 09:16:37 gaudenz Exp $ + * $Id: mxGraph.js,v 1.40 2013/09/03 19:36:25 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -59504,8 +59504,9 @@ mxGraph.prototype.fireMouseEvent = function(evtName, me, sender) mxClient.IS_TOUCH && mxEvent.isTouchEvent(me.getEvent()))) { var currentTime = new Date().getTime(); - - if (evtName == mxEvent.MOUSE_DOWN) + + // NOTE: Second mouseDown for double click missing in quirks mode if event source no longer in DOM + if ((!mxClient.IS_QUIRKS && evtName == mxEvent.MOUSE_DOWN) || (mxClient.IS_QUIRKS && evtName == mxEvent.MOUSE_UP && !this.fireDoubleClick)) { if (this.lastTouchEvent != null && this.lastTouchEvent != me.getEvent() && currentTime - this.lastTouchTime < this.doubleTapTimeout && @@ -59518,16 +59519,25 @@ mxGraph.prototype.fireMouseEvent = function(evtName, me, sender) } else if (this.lastTouchEvent == null || this.lastTouchEvent != me.getEvent()) { + this.lastTouchCell = me.getCell(); this.lastTouchX = me.getX(); this.lastTouchY = me.getY(); this.lastTouchTime = currentTime; this.lastTouchEvent = me.getEvent(); } } - else if (evtName == mxEvent.MOUSE_UP && this.fireDoubleClick) + else if ((this.isMouseDown || evtName == mxEvent.MOUSE_UP) && this.fireDoubleClick) { + var cell = this.lastTouchCell; this.fireDoubleClick = false; - this.dblClick(me.getEvent(), me.getCell()); + this.lastTouchCell = null; + + if (Math.abs(this.lastTouchX - me.getX()) < this.doubleTapTolerance && + Math.abs(this.lastTouchY - me.getY()) < this.doubleTapTolerance) + { + this.dblClick(me.getEvent(), cell); + } + return; } } @@ -59616,6 +59626,12 @@ mxGraph.prototype.fireMouseEvent = function(evtName, me, sender) Math.abs(this.initialTouchY - me.getGraphY()) < this.tolerance; } } + + // Workaround for multiple processing of same mouse up event + if (this.lastTouchEvent != null) + { + mxEvent.consume(this.lastTouchEvent); + } }; /** @@ -61775,7 +61791,7 @@ mxSpaceManager.prototype.destroy = function() this.setGraph(null); }; /** - * $Id: mxSwimlaneManager.js,v 1.2 2013/07/22 12:01:42 gaudenz Exp $ + * $Id: mxSwimlaneManager.js,v 1.3 2013/08/29 09:19:41 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -62090,7 +62106,8 @@ mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane) // Applies the size of the refernece to the newly added swimlane if (geo != null) { - this.resizeSwimlane(swimlane, geo.width, geo.height); + var parentHorizontal = (parent != null) ? this.isCellHorizontal(parent) : this.horizontal; + this.resizeSwimlane(swimlane, geo.width, geo.height, parentHorizontal); } }; @@ -62136,8 +62153,9 @@ mxSwimlaneManager.prototype.cellsResized = function(cells) size.width += tmp.width; size.height += tmp.height; } - - this.resizeSwimlane(top, size.width, size.height); + + var parentHorizontal = (current != null) ? this.isCellHorizontal(current) : this.horizontal; + this.resizeSwimlane(top, size.width, size.height, parentHorizontal); } } } @@ -62160,26 +62178,26 @@ mxSwimlaneManager.prototype.cellsResized = function(cells) * * swimlane - whose size has changed. */ -mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane, w, h) +mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane, w, h, parentHorizontal) { var model = this.getGraph().getModel(); model.beginUpdate(); try { + var horizontal = this.isCellHorizontal(swimlane); + if (!this.isSwimlaneIgnored(swimlane)) { var geo = model.getGeometry(swimlane); if (geo != null) { - var horizontal = this.isCellHorizontal(swimlane); - - if ((horizontal && geo.height != h) || (!horizontal && geo.width != w)) + if ((parentHorizontal && geo.height != h) || (!parentHorizontal && geo.width != w)) { geo = geo.clone(); - if (horizontal) + if (parentHorizontal) { geo.height = h; } @@ -62204,7 +62222,7 @@ mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane, w, h) for (var i = 0; i < childCount; i++) { var child = model.getChildAt(swimlane, i); - this.resizeSwimlane(child, w, h); + this.resizeSwimlane(child, w, h, horizontal); } } finally @@ -64798,7 +64816,7 @@ mxSelectionCellsHandler.prototype.destroy = function() } }; /** - * $Id: mxConnectionHandler.js,v 1.17 2013/08/07 21:40:01 gaudenz Exp $ + * $Id: mxConnectionHandler.js,v 1.18 2013/08/26 07:46:10 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -65295,7 +65313,7 @@ mxConnectionHandler.prototype.createMarker = function() cell = this.graph.getCellAt(point.x, point.y); } - if ((this.graph.isSwimlane(cell) && this.graph.hitsSwimlaneContent(cell, point.t, point.y)) || + if ((this.graph.isSwimlane(cell) && this.graph.hitsSwimlaneContent(cell, point.x, point.y)) || !this.isConnectableCell(cell)) { cell = null; @@ -67351,7 +67369,7 @@ mxRubberband.prototype.destroy = function() } }; /** - * $Id: mxVertexHandler.js,v 1.31 2013/08/06 09:15:54 gaudenz Exp $ + * $Id: mxVertexHandler.js,v 1.32 2013/09/02 21:34:57 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -67531,7 +67549,8 @@ mxVertexHandler.prototype.init = function() // Adds the rotation handler if (this.rotationEnabled && this.graph.isCellRotatable(this.state.cell) && - (mxGraphHandler.prototype.maxCells <= 0 || this.graph.getSelectionCount() < mxGraphHandler.prototype.maxCells)) + (mxGraphHandler.prototype.maxCells <= 0 || this.graph.getSelectionCount() < mxGraphHandler.prototype.maxCells) && + this.state.width > 2 && this.state.height > 2) { this.rotationShape = this.createSizer('pointer', mxEvent.ROTATION_HANDLE, mxConstants.HANDLE_SIZE + 3, mxConstants.HANDLE_FILLCOLOR); diff --git a/javascript/mxClient.min.js b/javascript/mxClient.min.js index 6c9e7d124..0a12ac6af 100644 --- a/javascript/mxClient.min.js +++ b/javascript/mxClient.min.js @@ -1,4 +1,4 @@ -var mxClient={VERSION:"2.1.1.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),VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE"),IS_OP:0<=navigator.userAgent.indexOf("Opera/"),IS_OT:0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&& +var mxClient={VERSION:"2.1.1.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),VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE"),IS_OP:0<=navigator.userAgent.indexOf("Opera/"),IS_OT:0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&& 0>navigator.userAgent.indexOf("Presto/2.1.")&&0>navigator.userAgent.indexOf("Presto/2.0.")&&0>navigator.userAgent.indexOf("Presto/1."),IS_SF:0<=navigator.userAgent.indexOf("AppleWebKit/")&&0>navigator.userAgent.indexOf("Chrome/"),IS_IOS:navigator.userAgent.match(/(iPad|iPhone|iPod)/g)?!0:!1,IS_GC:0<=navigator.userAgent.indexOf("Chrome/"),IS_FF:0<=navigator.userAgent.indexOf("Firefox/"),IS_MT:0<=navigator.userAgent.indexOf("Firefox/")&&0>navigator.userAgent.indexOf("Firefox/1.")&&0>navigator.userAgent.indexOf("Firefox/2.")|| 0<=navigator.userAgent.indexOf("Iceweasel/")&&0>navigator.userAgent.indexOf("Iceweasel/1.")&&0>navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/")&&0>navigator.userAgent.indexOf("SeaMonkey/1.")||0<=navigator.userAgent.indexOf("Iceape/")&&0>navigator.userAgent.indexOf("Iceape/1."),IS_SVG:0<=navigator.userAgent.indexOf("Firefox/")||0<=navigator.userAgent.indexOf("Iceweasel/")||0<=navigator.userAgent.indexOf("Seamonkey/")||0<=navigator.userAgent.indexOf("Iceape/")|| 0<=navigator.userAgent.indexOf("Galeon/")||0<=navigator.userAgent.indexOf("Epiphany/")||0<=navigator.userAgent.indexOf("AppleWebKit/")||0<=navigator.userAgent.indexOf("Gecko/")||0<=navigator.userAgent.indexOf("Opera/")||null!=document.documentMode&&9<=document.documentMode,NO_FO:!document.createElementNS||"[object SVGForeignObjectElement]"!=document.createElementNS("http://www.w3.org/2000/svg","foreignObject")||0<=navigator.userAgent.indexOf("Opera/"),IS_VML:"MICROSOFT INTERNET EXPLORER"==navigator.appName.toUpperCase(), @@ -1114,11 +1114,12 @@ mxGraph.prototype.isEventIgnored=function(a,b,c){var d=mxEvent.isMouseEvent(b.ge b.getSource(),this.mouseMoveRedirect=mxUtils.bind(this,function(a){this.fireMouseEvent(mxEvent.MOUSE_MOVE,new mxMouseEvent(a,this.getStateForTouchEvent(a)))}),this.mouseUpRedirect=mxUtils.bind(this,function(a){this.fireMouseEvent(mxEvent.MOUSE_UP,new mxMouseEvent(a,this.getStateForTouchEvent(a)))}),mxEvent.addGestureListeners(this.eventSource,null,this.mouseMoveRedirect,this.mouseUpRedirect));this.isSyntheticEventIgnored(a,b,c)&&(e=!0);if(a==mxEvent.MOUSE_UP&&this.isMouseDown)this.isMouseDown=!1; else if(a==mxEvent.MOUSE_DOWN&&!this.isMouseDown)this.isMouseDown=!0,this.isMouseTrigger=d;else if(!e&&((!mxClient.IS_FF||a!=mxEvent.MOUSE_MOVE)&&this.isMouseDown&&this.isMouseTrigger!=d||a==mxEvent.MOUSE_DOWN&&this.isMouseDown||a==mxEvent.MOUSE_UP&&!this.isMouseDown))e=!0;2<=this.lastEvent.detail&&(e=!0);return e}; mxGraph.prototype.isSyntheticEventIgnored=function(a,b,c){c=!1;b=mxEvent.isMouseEvent(b.getEvent());this.ignoreMouseEvents&&b&&a!=mxEvent.MOUSE_MOVE?(this.ignoreMouseEvents=a!=mxEvent.MOUSE_UP,c=!0):mxClient.IS_FF&&(!b&&a==mxEvent.MOUSE_UP)&&(this.ignoreMouseEvents=!0);return c}; -mxGraph.prototype.fireMouseEvent=function(a,b,c){null==c&&(c=this);b=this.updateMouseEvent(b);a==mxEvent.MOUSE_DOWN&&(this.isEditing()&&!this.cellEditor.isEventSource(b.getEvent()))&&this.stopEditing(!this.isInvokesStopCellEditing());if(!this.nativeDblClickEnabled||this.doubleTapEnabled&&mxClient.IS_TOUCH&&mxEvent.isTouchEvent(b.getEvent())){var d=(new Date).getTime();if(a==mxEvent.MOUSE_DOWN){if(null!=this.lastTouchEvent&&this.lastTouchEvent!=b.getEvent()&&d-this.lastTouchTime=mxGraphHandler.prototype.maxCells||this.graph.getSelectionCount()this.state.width&&2>this.state.height)&&(this.labelShape=this.createSizer(mxConstants.CURSOR_MOVABLE_VERTEX,null,null,mxConstants.LABEL_HANDLE_FILLCOLOR),this.sizers.push(this.labelShape))}if(this.rotationEnabled&&this.graph.isCellRotatable(this.state.cell)&& -(0>=mxGraphHandler.prototype.maxCells||this.graph.getSelectionCount()=mxGraphHandler.prototype.maxCells||this.graph.getSelectionCount() 2 && this.state.height > 2) { this.rotationShape = this.createSizer('pointer', mxEvent.ROTATION_HANDLE, mxConstants.HANDLE_SIZE + 3, mxConstants.HANDLE_FILLCOLOR); diff --git a/javascript/src/js/mxClient.js b/javascript/src/js/mxClient.js index 4bea5145a..fc1f527e1 100644 --- a/javascript/src/js/mxClient.js +++ b/javascript/src/js/mxClient.js @@ -21,9 +21,9 @@ var mxClient = * * versionMajor.versionMinor.buildNumber.revisionNumber * - * Current version is 2.1.1.0. + * Current version is 2.1.1.1. */ - VERSION: '2.1.1.0', + VERSION: '2.1.1.1', /** * Variable: IS_IE diff --git a/javascript/src/js/view/mxGraph.js b/javascript/src/js/view/mxGraph.js index 98aa39d70..d7fd697ab 100644 --- a/javascript/src/js/view/mxGraph.js +++ b/javascript/src/js/view/mxGraph.js @@ -1,5 +1,5 @@ /** - * $Id: mxGraph.js,v 1.39 2013/08/21 09:16:37 gaudenz Exp $ + * $Id: mxGraph.js,v 1.40 2013/09/03 19:36:25 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -11366,8 +11366,9 @@ mxGraph.prototype.fireMouseEvent = function(evtName, me, sender) mxClient.IS_TOUCH && mxEvent.isTouchEvent(me.getEvent()))) { var currentTime = new Date().getTime(); - - if (evtName == mxEvent.MOUSE_DOWN) + + // NOTE: Second mouseDown for double click missing in quirks mode if event source no longer in DOM + if ((!mxClient.IS_QUIRKS && evtName == mxEvent.MOUSE_DOWN) || (mxClient.IS_QUIRKS && evtName == mxEvent.MOUSE_UP && !this.fireDoubleClick)) { if (this.lastTouchEvent != null && this.lastTouchEvent != me.getEvent() && currentTime - this.lastTouchTime < this.doubleTapTimeout && @@ -11380,16 +11381,25 @@ mxGraph.prototype.fireMouseEvent = function(evtName, me, sender) } else if (this.lastTouchEvent == null || this.lastTouchEvent != me.getEvent()) { + this.lastTouchCell = me.getCell(); this.lastTouchX = me.getX(); this.lastTouchY = me.getY(); this.lastTouchTime = currentTime; this.lastTouchEvent = me.getEvent(); } } - else if (evtName == mxEvent.MOUSE_UP && this.fireDoubleClick) + else if ((this.isMouseDown || evtName == mxEvent.MOUSE_UP) && this.fireDoubleClick) { + var cell = this.lastTouchCell; this.fireDoubleClick = false; - this.dblClick(me.getEvent(), me.getCell()); + this.lastTouchCell = null; + + if (Math.abs(this.lastTouchX - me.getX()) < this.doubleTapTolerance && + Math.abs(this.lastTouchY - me.getY()) < this.doubleTapTolerance) + { + this.dblClick(me.getEvent(), cell); + } + return; } } @@ -11478,6 +11488,12 @@ mxGraph.prototype.fireMouseEvent = function(evtName, me, sender) Math.abs(this.initialTouchY - me.getGraphY()) < this.tolerance; } } + + // Workaround for multiple processing of same mouse up event + if (this.lastTouchEvent != null) + { + mxEvent.consume(this.lastTouchEvent); + } }; /** diff --git a/javascript/src/js/view/mxSwimlaneManager.js b/javascript/src/js/view/mxSwimlaneManager.js index bc769cdf0..5fecc37be 100644 --- a/javascript/src/js/view/mxSwimlaneManager.js +++ b/javascript/src/js/view/mxSwimlaneManager.js @@ -1,5 +1,5 @@ /** - * $Id: mxSwimlaneManager.js,v 1.2 2013/07/22 12:01:42 gaudenz Exp $ + * $Id: mxSwimlaneManager.js,v 1.3 2013/08/29 09:19:41 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -314,7 +314,8 @@ mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane) // Applies the size of the refernece to the newly added swimlane if (geo != null) { - this.resizeSwimlane(swimlane, geo.width, geo.height); + var parentHorizontal = (parent != null) ? this.isCellHorizontal(parent) : this.horizontal; + this.resizeSwimlane(swimlane, geo.width, geo.height, parentHorizontal); } }; @@ -360,8 +361,9 @@ mxSwimlaneManager.prototype.cellsResized = function(cells) size.width += tmp.width; size.height += tmp.height; } - - this.resizeSwimlane(top, size.width, size.height); + + var parentHorizontal = (current != null) ? this.isCellHorizontal(current) : this.horizontal; + this.resizeSwimlane(top, size.width, size.height, parentHorizontal); } } } @@ -384,26 +386,26 @@ mxSwimlaneManager.prototype.cellsResized = function(cells) * * swimlane - whose size has changed. */ -mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane, w, h) +mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane, w, h, parentHorizontal) { var model = this.getGraph().getModel(); model.beginUpdate(); try { + var horizontal = this.isCellHorizontal(swimlane); + if (!this.isSwimlaneIgnored(swimlane)) { var geo = model.getGeometry(swimlane); if (geo != null) { - var horizontal = this.isCellHorizontal(swimlane); - - if ((horizontal && geo.height != h) || (!horizontal && geo.width != w)) + if ((parentHorizontal && geo.height != h) || (!parentHorizontal && geo.width != w)) { geo = geo.clone(); - if (horizontal) + if (parentHorizontal) { geo.height = h; } @@ -428,7 +430,7 @@ mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane, w, h) for (var i = 0; i < childCount; i++) { var child = model.getChildAt(swimlane, i); - this.resizeSwimlane(child, w, h); + this.resizeSwimlane(child, w, h, horizontal); } } finally diff --git a/php/src/mxServer.php b/php/src/mxServer.php index 49aa857cc..096e30534 100644 --- a/php/src/mxServer.php +++ b/php/src/mxServer.php @@ -5,15 +5,15 @@ * * Class: mxServer * - * Bootstrapping for the PHP backend. This is version 2.1.1.0 + * Bootstrapping for the PHP backend. This is version 2.1.1.1 * of mxGraph. * * Variable: MXGRAPH-VERSION * * Constant that holds the current mxGraph version. The current version - * is 2.1.1.0. + * is 2.1.1.1. */ -define("MXGRAPH-VERSION", "2.1.1.0"); +define("MXGRAPH-VERSION", "2.1.1.1"); include_once("util/mxLog.php"); include_once("util/mxConstants.php");

Tablename
PKuniqueId
FK1foreignKey