Package com.webobjects.eodistribution

Examples of com.webobjects.eodistribution.EODistributionContext


        NSNotificationCenter.defaultCenter().addObserver(this, _DistributionContextInstantiatedSelector, EODistributionContext.DistributionContextInstantiatedNotification, null);
  }
 
    public void _distributionContextInstantiated(NSNotification notification) {
        // If this notification is received and the sender is for this session, get the editing context from the EODistributionContext and unregister from the notification.
        EODistributionContext distributionContext = (EODistributionContext)(notification.object());
        if (distributionContext.session() == this) {
            NSNotificationCenter.defaultCenter().removeObserver(this, EODistributionContext.DistributionContextInstantiatedNotification, null);
        }
    }
View Full Code Here

TOP

Related Classes of com.webobjects.eodistribution.EODistributionContext

Copyright © 2018 www.massapicom. 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.