Examples of deactivate()


Examples of org.olat.core.gui.control.generic.closablewrapper.CloseableModalController.deactivate()

        deleteDialogController = activateYesNoDialog(ureq, dialogTitle, dialogText, deleteDialogController);
        return;
      }
    } else if (source == wc) {
      if (event == Event.CANCELLED_EVENT) {
        cmc.deactivate();
        wc.dispose();
      } else if (event == Event.DONE_EVENT) {
        cmc.deactivate();
        wc.dispose();
        detailsToolC = null; // force recreation of tool controller
View Full Code Here

Examples of org.olat.core.gui.control.generic.closablewrapper.CloseableModalController.deactivate()

    } else if (source == wc) {
      if (event == Event.CANCELLED_EVENT) {
        cmc.deactivate();
        wc.dispose();
      } else if (event == Event.DONE_EVENT) {
        cmc.deactivate();
        wc.dispose();
        detailsToolC = null; // force recreation of tool controller
        updateView(ureq);
        fireEvent(ureq, Event.CHANGED_EVENT);
      }
View Full Code Here

Examples of org.omg.PortableServer.POAManager.deactivate()

            case State._DISCARDING :
              manager.discard_requests(false);
              break;

            case State._INACTIVE :
              manager.deactivate(false, false);
              break;

            case 100 :
              try
                {
View Full Code Here

Examples of org.openqa.selenium.WebDriver.ImeHandler.deactivate()

            navigation.forward();
            navigation.to("");
            navigation.to(new URL("http://localhost/"));

            ime.activateEngine("");
            ime.deactivate();
            ime.getActiveEngine();
            ime.isActivated();

            logs.get("");
View Full Code Here

Examples of org.pokenet.server.battle.mechanics.statuses.abilities.IntrinsicAbility.deactivate()

          user.getField().showMessage("But it failed!");
          return 0;
        }
        IntrinsicAbility ability = user.getAbility();
        if (user.hasAbility("Magic Guard")) {
          ability.deactivate();
        } else {
          ability = null;
        }
        user.changeHealth(-damage, true);
        if (ability != null) {
View Full Code Here

Examples of org.pokenet.server.battle.mechanics.statuses.items.HoldItem.deactivate()

        target.addStatus(user, new StatusEffect() {
          public boolean apply(Pokemon p) {
            HoldItem item = p.getItem();
            if ((item != null) && item.isActive()) {
              item.unapply(p);
              item.deactivate();
            }
            return true;
          }
          public String getDescription() {
            return "'s item was nullified.";
View Full Code Here

Examples of org.zkoss.zk.ui.sys.UiEngine.deactivate()

  /** Safe to be called even if the Web application has been destroyed
   */
  private void safeDeactivate(Execution exec) {
    final UiEngine uieng = ((WebAppCtrl)_wapp).getUiEngine();
    if (uieng != null) {
      uieng.deactivate(exec);
    } else {
      _exec = null;
      ExecutionsCtrl.setCurrent(null);
    }
  }
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.