Package org.tmatesoft.hg.internal

Examples of org.tmatesoft.hg.internal.LifecycleProxy


   
    public void delegateTo(HgChangelog.Inspector inspector) {
      delegate = inspector;
      // let delegate control life cycle, too
      if (lifecycleProxy == null) {
        super.attachAdapter(Lifecycle.class, lifecycleProxy = new LifecycleProxy(inspector));
      } else {
        lifecycleProxy.init(inspector);
      }
    }
View Full Code Here

TOP

Related Classes of org.tmatesoft.hg.internal.LifecycleProxy

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.