Lines Matching refs:oldCell

1023 EditorUi.prototype.diffCell = function(oldCell, newCell)  argument
1027 if (oldCell.vertex != newCell.vertex)
1032 if (oldCell.edge != newCell.edge)
1037 if (oldCell.connectable != newCell.connectable)
1042 if (((oldCell.parent != null) ? newCell.parent == null : newCell.parent != null) ||
1043 (oldCell.parent != null && newCell.parent != null &&
1044 oldCell.parent.getId() != newCell.parent.getId()))
1049 if (((oldCell.source != null) ? newCell.source == null : newCell.source != null) ||
1050 (oldCell.source != null && newCell.source != null &&
1051 oldCell.source.getId() != newCell.source.getId()))
1056 if (((oldCell.target != null) ? newCell.target == null : newCell.target != null) ||
1057 (oldCell.target != null && newCell.target != null &&
1058 oldCell.target.getId() != newCell.target.getId()))
1069 if (isNode(oldCell.value) && isNode(newCell.value))
1071 if (!oldCell.value.isEqualNode(newCell.value))
1076 else if (oldCell.value != newCell.value)
1088 if (oldCell.style != newCell.style)
1094 if (oldCell.visible != newCell.visible)
1099 if (oldCell.collapsed != newCell.collapsed)
1105 if (!this.isObjectEqual(oldCell.geometry, newCell.geometry, new mxGeometry()))
1117 for (var key in oldCell)
1119 if (!this.cellProperties[key] && typeof oldCell[key] !== 'function' &&
1120 typeof newCell[key] !== 'function' && oldCell[key] != newCell[key])
1129 if (!(key in oldCell) &&
1130 !this.cellProperties[key] && typeof oldCell[key] !== 'function' &&
1131 typeof newCell[key] !== 'function' && oldCell[key] != newCell[key])