Package er.ajax.look.interfaces

Examples of er.ajax.look.interfaces.PropertyChangedDelegate.propertyChanged()


  public void propertyChanged(NSNotification n) {
    log.debug("Property changed for property key: " + PROPERTY_KEY.valueInObject(n.object()));
    PropertyChangedDelegate delegate = PROPERTY_CHANGED_DELEGATE.valueInObject(n.object());
    if(delegate != null) {
      log.debug("Updating container id list with propertyChangedDelegate");
      NSArray<String> updateProps = delegate.propertyChanged((D2WContext)n.object());
      NSArray updateIDs = EOKeyValueCodingAdditions.Utility.valuesForKeys(propertyObserverIDs, updateProps).allValues();
      updateIDs = ERXArrayUtilities.removeNullValues(updateIDs);
      updateContainerIDs.addObjectsFromArray(updateIDs);
      log.debug("Container ids to be updated: " + updateContainerIDs.componentsJoinedByString(", "));
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.