Package org.jboss.dependency.plugins.action

Examples of org.jboss.dependency.plugins.action.ControllerContextAction.uninstall()


/*    */
/*    */   public void uninstall(ControllerContext context, ControllerState fromState, ControllerState toState)
/*    */   {
/* 56 */     ControllerContextAction action = getAction(context, fromState);
/* 57 */     if (action != null)
/* 58 */       action.uninstall(context);
/*    */   }
/*    */
/*    */   protected ControllerContextAction getAction(ControllerContext context, ControllerState state)
/*    */   {
/* 70 */     return (ControllerContextAction)this.actions.get(state);
View Full Code Here


   public void uninstall(ControllerContext context, ControllerState fromState, ControllerState toState)
   {
      ControllerContextAction action = getAction(context, fromState);
      if (action != null)
         action.uninstall(context);
   }
  
   /**
    * Get the controller context action
    *
 
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.