Sha256: 0639e47844264a5ef6dce6d3f3b02a9546b0c0b867cfad4f76480154c82bf935

Contents?: true

Size: 1.63 KB

Versions: 9

Compression:

Stored size: 1.63 KB

Contents

// ==========================================================================
// Project:   SproutCore Costello - Property Observing Library
// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.
//            Portions ©2008-2009 Apple, Inc. All rights reserved.
// License:   Licened under MIT license (see license.js)
// ==========================================================================

/**
  The SC.ObservableProtocol defines optional methods you can implement on your
  objects.  They will be used if defined but are not required for observing to
  work.
*/
SC.ObservableProtocol = {
  
  /**  
    Generic property observer called whenever a property on the receiver 
    changes.
    
    If you need to observe a large number of properties on your object, it
    is sometimes more efficient to implement this observer only and then to
    handle requests yourself.  Although this observer will be triggered 
    more often than an observer registered on a specific property, it also
    does not need to be registered which can make it faster to setup your 
    object instance.
    
    You will often implement this observer using a switch statement on the
    key parameter, taking appropriate action. 
    
    @param observer {null} no longer used; usually null
    @param target {Object} the target of the change.  usually this
    @param key {String} the name of the property that changed
    @param value {Object} the new value of the property.
    @param revision {Number} a revision you can use to quickly detect changes.
    @returns {void}
  */
  propertyObserver: function(observer,target,key,value, revision) {
    
  }
  
};

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
sproutit-sproutcore-1.0.0.20090720093355 frameworks/sproutcore/frameworks/runtime/protocols/observable_protocol.js
sproutit-sproutcore-1.0.0.20090720202429 frameworks/sproutcore/frameworks/runtime/protocols/observable_protocol.js
sproutit-sproutcore-1.0.0.20090721125122 frameworks/sproutcore/frameworks/runtime/protocols/observable_protocol.js
sproutit-sproutcore-1.0.126 frameworks/sproutcore/frameworks/runtime/protocols/observable_protocol.js
sproutit-sproutcore-1.0.20090721145251 frameworks/sproutcore/frameworks/runtime/protocols/observable_protocol.js
sproutit-sproutcore-1.0.20090721145280 frameworks/sproutcore/frameworks/runtime/protocols/observable_protocol.js
sproutit-sproutcore-1.0.20090721145281 frameworks/sproutcore/frameworks/runtime/protocols/observable_protocol.js
sproutit-sproutcore-1.0.20090721145282 frameworks/sproutcore/frameworks/runtime/protocols/observable_protocol.js
sproutit-sproutcore-1.0.203 frameworks/sproutcore/frameworks/runtime/protocols/observable_protocol.js