Examples of deactivate()


Examples of org.apache.tuscany.sca.core.runtime.CompositeActivator.deactivate()

         * @param composite
         * @throws ActivationException
         */
        public void removeComposite(Composite composite) throws ActivationException {
            CompositeActivator compositeActivator = runtime.getCompositeActivator();
            compositeActivator.deactivate(composite);
            domainComposite.getIncludes().remove(composite);
            for (Component component : composite.getComponents()) {
                components.remove(component.getName());
            }
        }
View Full Code Here

Examples of org.apache.yoko.orb.OBPortableServer.POAManager.deactivate()

                // was created the deactivate the POAManager
                //
                if (manager == null) {
                    org.apache.yoko.orb.OB.Assert._OB_assert(obmanager != null);
                    try {
                        obmanager.deactivate(true, true);
                    } catch (org.omg.PortableServer.POAManagerPackage.AdapterInactive e) {
                    }
                }
                throw ex;
            }
View Full Code Here

Examples of org.eclipse.e4.core.contexts.IEclipseContext.deactivate()

    IEclipseContext lclContext = ctxt.getContext();
    if (lclContext != null) {
      IEclipseContext parentContext = lclContext.getParent();
      IEclipseContext child = parentContext.getActiveChild();
      if (child == lclContext) {
        child.deactivate();
      }

      ctxt.setContext(null);
      lclContext.dispose();
    }
View Full Code Here

Examples of org.eclipse.jface.text.WhitespaceCharacterPainter.deactivate()

      MergeSourceViewer viewer = (MergeSourceViewer) entry.getKey();
      WhitespaceCharacterPainter painter = (WhitespaceCharacterPainter) entry
          .getValue();
      if (painter != null) {
        viewer.removePainter(painter);
        painter.deactivate(true);
      }
    }
    painters.clear();
    isWhitespaceShowing = false;
  }
View Full Code Here

Examples of org.eclipse.jface.window.ToolTip.deactivate()

    int messageLabelUnclippedHeight = messageLabel.computeSize(messageLabel.getSize().x - xTrim, SWT.DEFAULT, true).y;
    boolean messageLabelClipped = messageLabelUnclippedHeight > messageLabel.getSize().y - yTrim;
    if (messageLabel.getData() instanceof ToolTip) {
      ToolTip toolTip = (ToolTip) messageLabel.getData();
      toolTip.hide();
      toolTip.deactivate();
      messageLabel.setData(null);
    }
    if (messageLabelClipped) {
      ToolTip tooltip = new ToolTip(messageLabel, ToolTip.NO_RECREATE, false) {
       
View Full Code Here

Examples of org.eclipse.ui.SubActionBars.deactivate()

                    IActionSet set = rec.set;
                    SubActionBars bars = rec.bars;
                    if (bars != null) {
                        SetRec invisibleRec = new SetRec(desc, set, bars);
                        invisibleBars.put(desc, invisibleRec);
                        bars.deactivate();
                    }
                }
            }
        }
View Full Code Here

Examples of org.eclipse.xtext.ui.editor.outline.actions.OutlineWithEditorLinker.deactivate()

  @Override
  public void deregister(OutlinePage outlinePage) {
    removePropertyChangeListener();
    OutlineWithEditorLinker outlineWithEditorLinker = page2linker.remove(outlinePage);
    outlineWithEditorLinker.deactivate();
    getPreferenceStoreAccess().getPreferenceStore().removePropertyChangeListener(outlineWithEditorLinker);
  }
}
View Full Code Here

Examples of org.fenixedu.academic.domain.accounting.PostingRule.deactivate()

        }

        final PostingRule existingPostingRule = serviceAgreementTemplate.findPostingRuleByEventTypeAndDate(eventType, when);

        if (existingPostingRule != null) {
            existingPostingRule.deactivate(when);
        }
    }

    @Atomic
    static public void createDFAGratuityPostingRule(final CreateDFAGratuityPostingRuleBean bean) {
View Full Code Here

Examples of org.freeplane.core.undo.IUndoHandler.deactivate()

    undoHandler.addActor(actor);
  }

  public void deactivateUndo(final MMapModel map) {
    final IUndoHandler undoHandler = map.getExtension(IUndoHandler.class);
    undoHandler.deactivate();
  }

  @Override
  public void commit() {
    final MapModel map = getController().getMap();
View Full Code Here

Examples of org.gatein.wsrp.WSRPConsumer.deactivate()

            {
               PortletInvoker invoker = fedInvoker.getPortletInvoker();
               if (invoker instanceof WSRPConsumer)
               {
                  consumer = (WSRPConsumer)invoker;
                  consumer.deactivate();
                  federatingPortletInvoker.unregisterInvoker(id);
                  sessionEventBroadcaster.unregisterListener(getListenerIdFrom(id));
               }
               else
               {
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.