Examples of QuickDiffExtensionsRegistry


Examples of org.eclipse.ui.internal.texteditor.quickdiff.QuickDiffExtensionsRegistry

   * </p>
   *
   * @return the descriptor of "last saved version" reference provider or <code>null</code> if none
   */
  public ReferenceProviderDescriptor getDefaultProvider() {
    QuickDiffExtensionsRegistry registry= TextEditorPlugin.getDefault().getQuickDiffExtensionRegistry();
    if (registry != null)
      return registry.getDefaultProvider();

    return null;
  }
View Full Code Here

Examples of org.eclipse.ui.internal.texteditor.quickdiff.QuickDiffExtensionsRegistry

   * </p>
   *
   * @return the non-modifiable list of extensions to the <code>quickDiffReferenceProvider</code> extension point.
   */
  public List getReferenceProviderDescriptors() {
    QuickDiffExtensionsRegistry registry= TextEditorPlugin.getDefault().getQuickDiffExtensionRegistry();
    if (registry != null)
      return registry.getReferenceProviderDescriptors();

    return Collections.EMPTY_LIST;
  }
View Full Code Here

Examples of org.eclipse.ui.internal.texteditor.quickdiff.QuickDiffExtensionsRegistry

   * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
   * @since 3.0
   */
  public void start(BundleContext context) throws Exception {
    super.start(context);
    fQuickDiffExtensionRegistry= new QuickDiffExtensionsRegistry();
    fSpellingEngineRegistry= new SpellingEngineRegistry();
    Platform.getExtensionRegistry().addRegistryChangeListener(this, PLUGIN_ID);
  }
View Full Code Here

Examples of org.eclipse.ui.internal.texteditor.quickdiff.QuickDiffExtensionsRegistry

   * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
   * @since 3.0
   */
  public void start(BundleContext context) throws Exception {
    super.start(context);
    fQuickDiffExtensionRegistry= new QuickDiffExtensionsRegistry();
    fSpellingEngineRegistry= new SpellingEngineRegistry();
    Platform.getExtensionRegistry().addRegistryChangeListener(this, PLUGIN_ID);
  }
View Full Code Here

Examples of org.eclipse.ui.internal.texteditor.quickdiff.QuickDiffExtensionsRegistry

   * </p>
   *
   * @return the descriptor of "last saved version" reference provider or <code>null</code> if none
   */
  public ReferenceProviderDescriptor getDefaultProvider() {
    QuickDiffExtensionsRegistry registry= TextEditorPlugin.getDefault().getQuickDiffExtensionRegistry();
    if (registry != null)
      return registry.getDefaultProvider();

    return null;
  }
View Full Code Here

Examples of org.eclipse.ui.internal.texteditor.quickdiff.QuickDiffExtensionsRegistry

   * </p>
   *
   * @return the non-modifiable list of extensions to the <code>quickDiffReferenceProvider</code> extension point.
   */
  public List getReferenceProviderDescriptors() {
    QuickDiffExtensionsRegistry registry= TextEditorPlugin.getDefault().getQuickDiffExtensionRegistry();
    if (registry != null)
      return registry.getReferenceProviderDescriptors();

    return Collections.EMPTY_LIST;
  }
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.