ComplexChangeset
pentaho.type.changes. ComplexChangeset
The class ComplexChangeset
describes a set of changes to the values of properties in a complex value.
AMD Module
require(["pentaho/type/changes/ComplexChangeset"], function(ComplexChangeset) { /* code goes here */ });
Extends
Constructor
Name | Description |
---|---|
new ComplexChangeset(transaction, owner) | Creates a new instance. |
Members
Name | Description |
---|---|
base : Protected | If a method has been overridden, then the base method provides access to the overridden method. |
hasChanges : | Gets a value that indicates if this changeset contains any changes, whether they are primitive or in contained changesets. |
isReadOnly : | Gets a value that indicates if the changeset is in a read-only state and can no longer be modified. |
owner : | Gets the complex value where the changes take place. |
ownerVersion : | Gets the version of the owner at the time when the changeset was created. |
propertyNames : | Gets an array with the names of all of the changed properties contained in this changeset. |
transaction : | Gets the owning transaction. |
transactionVersion : | Gets the transaction version of this changeset. |
transactionVersionLocal : | Gets the local transaction version of this changeset. |
type : | Gets the type of change. |
Methods
Name | Description |
---|---|
__onChildTxnVersionDirty() | Called by a child changeset when its version changes or becomes dirty. |
_apply(target) Protected | Applies any local primitive changes. |
_assertWritable() Protected | Throws an error if the changeset is read-only. |
_clearChanges() Protected | Actually removes all changes from this changeset. |
_clearChangesRecursive(parentChangeset) Protected | Called by a parent changeset on its child changeset, this, for it to clear its changes. |
_resetNetOrder() Protected | Resets the topological order of this changeset, and of any child changesets, by calculating it based on its current parents. |
_setTransactionVersion(txnVersion, noNotifyParentChangeset) Protected | Updates the transaction version to a given value, if it is greater than the current one. Notifies all parents, except the optionally specified one, that their version is dirty. |
_setTransactionVersionLocal(txnVersionLocal, noNotifyParentChangeset) Protected | Updates the local transaction version to a given value due to a local, primitive change, if it is greater than the current one. Then, it calls |
clearChanges() | Removes all changes from this changeset. |
eachChildChangeset(fun, ctx) | Calls a function once per child changeset. |
extend(source, keyArgs) : Object | Extend an object with the properties of another. |
getChange(propertyOrName) : pentaho.type.changes.Change | Gets the |
getOld(name) : pentaho.type.Value | Gets the original value of a property. |
hasChange(propertyOrName) : boolean | Determines if the given property has changed. |
Constructor Details
new ComplexChangeset(transaction, owner) | |||||||||
---|---|---|---|---|---|---|---|---|---|
Creates a new instance. Source: javascript/web/pentaho/type/changes/ComplexChangeset.js, line 31
|
Members Details
base: Protected |
---|
If a method has been overridden, then the base method provides access to the overridden method. Can also be called from within a constructor function. Source: javascript/web/pentaho/lang/Base.js, line 299 Inherited From: pentaho.lang.Base#base |
hasChanges: |
---|
Gets a value that indicates if this changeset contains any changes, whether they are primitive or in contained changesets. Source: javascript/web/pentaho/type/changes/Changeset.js, line 387 Overrides: pentaho.type.changes.Changeset#hasChanges |
isReadOnly: |
---|
Gets a value that indicates if the changeset is in a read-only state and can no longer be modified. Source: javascript/web/pentaho/type/changes/Changeset.js, line 217 Inherited From: pentaho.type.changes.Changeset#isReadOnly |
owner: |
---|
Gets the complex value where the changes take place. Source: javascript/web/pentaho/type/changes/ComplexChangeset.js, line 65 Overrides: pentaho.type.changes.Changeset#owner |
ownerVersion: |
---|
Gets the version of the owner at the time when the changeset was created. Source: javascript/web/pentaho/type/changes/Changeset.js, line 240 Inherited From: pentaho.type.changes.Changeset#ownerVersion |
propertyNames: |
---|
Gets an array with the names of all of the changed properties contained in this changeset. Source: javascript/web/pentaho/type/changes/ComplexChangeset.js, line 155 |
transaction: |
---|
Gets the owning transaction. Source: javascript/web/pentaho/type/changes/Changeset.js, line 52 Inherited From: pentaho.type.changes.Changeset#transaction |
transactionVersion: |
---|
Gets the transaction version of this changeset. This number is at least as high as the transaction version of any child changesets and primitive changes. Source: javascript/web/pentaho/type/changes/Changeset.js, line 264 Inherited From: pentaho.type.changes.Changeset#transactionVersion |
transactionVersionLocal: |
---|
Gets the local transaction version of this changeset. This number is the maximum transaction version of the contained primitive changes. Source: javascript/web/pentaho/type/changes/Changeset.js, line 252 Inherited From: pentaho.type.changes.Changeset#transactionVersionLocal |
type: |
---|
Gets the type of change. Source: javascript/web/pentaho/type/changes/ComplexChangeset.js, line 81 Default Value: "complex" Overrides: pentaho.type.changes.Changeset#type |
Methods Details
__onChildTxnVersionDirty() |
---|
Called by a child changeset when its version changes or becomes dirty. Source: javascript/web/pentaho/type/changes/Changeset.js, line 379 Inherited From: pentaho.type.changes.Changeset#__onChildTxnVersionDirty |
_apply(target) Protected | ||||||
---|---|---|---|---|---|---|
Applies any local primitive changes. Source: javascript/web/pentaho/type/changes/Change.js, line 62 Overrides: pentaho.type.changes.Changeset#_apply
|
_assertWritable() Protected | ||||
---|---|---|---|---|
Throws an error if the changeset is read-only. Source: javascript/web/pentaho/type/changes/Changeset.js, line 206 Inherited From: pentaho.type.changes.Changeset#_assertWritable
|
_clearChanges() Protected |
---|
Actually removes all changes from this changeset. Source: javascript/web/pentaho/type/changes/Changeset.js, line 447 Overrides: pentaho.type.changes.Changeset#_clearChanges |
_clearChangesRecursive(parentChangeset) Protected | ||||||
---|---|---|---|---|---|---|
Called by a parent changeset on its child changeset, this, for it to clear its changes. This method updates the transaction version of this changeset to match the parent's version and then delegates to the Source: javascript/web/pentaho/type/changes/Changeset.js, line 435 Inherited From: pentaho.type.changes.Changeset#_clearChangesRecursive
See also: pentaho.type.changes.Changeset#transactionVersion , pentaho.type.changes.Changeset#clearChanges |
_resetNetOrder() Protected |
---|
Resets the topological order of this changeset, and of any child changesets, by calculating it based on its current parents. Source: javascript/web/pentaho/type/changes/Changeset.js, line 111 Inherited From: pentaho.type.changes.Changeset#_resetNetOrder See also: pentaho.type.changes.Changeset#__calculateNetOrder |
_setTransactionVersion(txnVersion, noNotifyParentChangeset) Protected | |||||||||
---|---|---|---|---|---|---|---|---|---|
Updates the transaction version to a given value, if it is greater than the current one. Notifies all parents, except the optionally specified one, that their version is dirty. Source: javascript/web/pentaho/type/changes/Changeset.js, line 308 Inherited From: pentaho.type.changes.Changeset#_setTransactionVersion
|
_setTransactionVersionLocal(txnVersionLocal, noNotifyParentChangeset) Protected | |||||||||
---|---|---|---|---|---|---|---|---|---|
Updates the local transaction version to a given value due to a local, primitive change, if it is greater than the current one. Then, it calls Source: javascript/web/pentaho/type/changes/Changeset.js, line 335 Inherited From: pentaho.type.changes.Changeset#_setTransactionVersionLocal
|
clearChanges() | ||||
---|---|---|---|---|
Removes all changes from this changeset. Primitive changes are removed, while contained changesets are cleared. This method validates that the changeset is in a valid state and then delegates actual work to the Source: javascript/web/pentaho/type/changes/Changeset.js, line 416 Inherited From: pentaho.type.changes.Changeset#clearChanges
See also: pentaho.type.changes.Changeset#_clearChanges , pentaho.type.changes.Changeset#_clearChangesRecursive |
eachChildChangeset(fun, ctx) | |||||||||
---|---|---|---|---|---|---|---|---|---|
Calls a function once per child changeset. Source: javascript/web/pentaho/type/changes/Changeset.js, line 186 Overrides: pentaho.type.changes.Changeset#eachChildChangeset
|
extend(source, keyArgs) : Object | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Extend an object with the properties of another. Methods that are overridden are accessible through This object is extended, but its class doesn't change. Source: javascript/web/pentaho/lang/Base.js, line 1037 Inherited From: pentaho.lang.Base#extend
|
getChange(propertyOrName) : pentaho.type.changes.Change | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Gets the Source: javascript/web/pentaho/type/changes/ComplexChangeset.js, line 105
|
getOld(name) : pentaho.type.Value | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Gets the original value of a property. Source: javascript/web/pentaho/type/changes/ComplexChangeset.js, line 202
|
hasChange(propertyOrName) : boolean | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Determines if the given property has changed. Source: javascript/web/pentaho/type/changes/ComplexChangeset.js, line 132
|