Package org.jboss.dependency.plugins

Examples of org.jboss.dependency.plugins.AbstractController


      if (related)
      {
         Set<AbstractController> children = current.getControllers();
         for (AbstractController child : children)
         {
            AbstractController found = findMatchingScopedController(child);
            if (found != null)
               return found;
         }
      }
View Full Code Here


*/
public class ParentLookupStrategy extends AbstractLookupStrategy
{
   protected ControllerContext getContextInternal(AbstractController controller, Object name, ControllerState state)
   {
      AbstractController parent = controller.getParentController();
      if (parent != null)
         return parent.getContext(name, state);
      else
         return null;
   }
View Full Code Here

TOP

Related Classes of org.jboss.dependency.plugins.AbstractController

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.