Package fr.imag.adele.apam.apform.impl.handlers

Examples of fr.imag.adele.apam.apform.impl.handlers.PropertyInjectionHandler$BoundSet


      Object pojo = getServiceObject();
      if (pojo == null)
        return;

      PropertyInjectionHandler handler = (PropertyInjectionHandler) ApamInstanceManager.this.getHandler(
                          ApamComponentFactory.APAM_NAMESPACE + ":"+ PropertyInjectionHandler.NAME);

      if (apamComponent != null) { // starting the instance

        if (handler != null)
          handler.setApamComponent(apamComponent);

        fireCallbacks(AtomicImplementationDeclaration.Event.INIT,this.apamComponent,false);
        return;
      }

      if (apamComponent == null) { // stopping the instance

        fireCallbacks(AtomicImplementationDeclaration.Event.REMOVE,previousComponent,true);

        /*
         * dispose this instance
         */
        if (handler != null)
          handler.setApamComponent(null);

        ApamInstanceManager.this.dispose();

        return;
      }
View Full Code Here

TOP

Related Classes of fr.imag.adele.apam.apform.impl.handlers.PropertyInjectionHandler$BoundSet

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.