Tabnine Logo
IExtensionRegistry.stop
Code IndexAdd Tabnine to your IDE (free)

How to use
stop
method
in
org.eclipse.core.runtime.IExtensionRegistry

Best Java code snippets using org.eclipse.core.runtime.IExtensionRegistry.stop (Showing top 7 results out of 315)

origin: at.bestsolution.efxclipse.eclipse/org.eclipse.equinox.registry

private void stopRegistry() {
  if (defaultRegistry != null) {
    RegistryProviderFactory.releaseDefault();
    registryRegistration.unregister();
    defaultRegistry.stop(masterRegistryKey);
  }
  if (commandRegistration != null)
    commandRegistration.unregister();
}
origin: org.eclipse.equinox/registry

private void stopRegistry() {
  if (defaultRegistry != null) {
    RegistryProviderFactory.releaseDefault();
    registryRegistration.unregister();
    defaultRegistry.stop(masterRegistryKey);
  }
  if (commandRegistration != null)
    commandRegistration.unregister();
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.pde.core

public void stop() {
  if (fRegistry != null)
    fRegistry.stop(fMasterKey);
  dispose();
}
origin: org.eclipse.platform/org.eclipse.equinox.registry

private void stopRegistry() {
  if (defaultRegistry != null) {
    RegistryProviderFactory.releaseDefault();
    registryRegistration.unregister();
    defaultRegistry.stop(masterRegistryKey);
  }
  if (commandRegistration != null)
    commandRegistration.unregister();
}
origin: org.eclipse/equinox-registry

private void stopRegistry() {
  if (defaultRegistry != null) {
    RegistryProviderFactory.releaseDefault();
    defaultProvider.release();
    registryRegistration.unregister();
    defaultRegistry.stop(masterRegistryKey);
  }
  if (commandRegistration != null)
    commandRegistration.unregister();
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.pde.core

public void targetReloaded() {
  // stop old registry (which will write contents to FS) and delete the cache it creates
  // might see if we can dispose of a registry without writing to file system.  NOTE: Don't call stop() because we want to still reuse fStrategy
  if (fRegistry != null)
    fRegistry.stop(fMasterKey);
  CoreUtility.deleteContent(new File(PDECore.getDefault().getStateLocation().toFile(), EXTENSION_DIR));
  fRegistry = null;
}
origin: org.eclipse.platform/org.eclipse.equinox.p2.discovery.compatibility

extensionRegistry.stop(this);
org.eclipse.core.runtimeIExtensionRegistrystop

Javadoc

Call this method to properly stop the registry. The method stops registry event processing and writes out cache information to be used in the next run. This is an access controlled method; master token is required.

This method is an access controlled method. Master token should be passed as an argument.

Popular methods of IExtensionRegistry

  • getExtensionPoint
    Returns the extension point in this extension registry with the given namespace and extension point
  • getConfigurationElementsFor
    Returns all configuration elements from the identified extension. Returns an empty array if the exte
  • addRegistryChangeListener
    Note: for new implementations consider using #addListener(IRegistryEventListener,String). Adds the g
  • removeRegistryChangeListener
    Removes the given registry change listener from this registry. Has no effect if an identical listene
  • addListener
    Adds the given listener for registry change events related to specified extension point. Once regist
  • removeListener
    Removes the given registry change listener from this registry. This method has no effect if the list
  • getExtension
    Returns the specified extension in this extension registry, or null if there is no such extension. T
  • getExtensionPoints
    Returns all extension points supplied by the contributor, or null if there are no such extension poi
  • addContribution
    Adds to this extension registry an extension point(s), extension(s), or a combination of those descr
  • getExtensions
    Returns all extensions supplied by the contributor, or null if there are no such extensions.
  • getNamespaces
    Returns all namespaces currently used by extensions and extension points in this registry. Returns a
  • getNamespaces

Popular in Java

  • Reactive rest calls using spring rest template
  • setScale (BigDecimal)
  • notifyDataSetChanged (ArrayAdapter)
  • onCreateOptionsMenu (Activity)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now