blob: 38ab626b91f7f9b70e8888749e0f2b8ef845b26f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Jens Lukowski/Innoopract - initial renaming/restructuring
*
*******************************************************************************/
package org.eclipse.wst.sse.ui;
import org.eclipse.core.runtime.IPluginDescriptor;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.eclipse.wst.sse.ui.registry.AdapterFactoryRegistry;
import org.eclipse.wst.sse.ui.registry.AdapterFactoryRegistryImpl;
import org.eclipse.wst.sse.ui.registry.embedded.EmbeddedAdapterFactoryRegistryImpl;
import org.eclipse.wst.sse.ui.taginfo.TextHoverManager;
public class EditorPlugin extends AbstractUIPlugin {
public final static String ID = "org.eclipse.wst.sse.ui"; //$NON-NLS-1$
static EditorPlugin instance = null;
public static EditorPlugin getDefault() {
return instance;
}
public synchronized static EditorPlugin getInstance() {
return instance;
}
private TextHoverManager fTextHoverManager;
public EditorPlugin(IPluginDescriptor descriptor) {
super(descriptor);
instance = this;
}
public AdapterFactoryRegistry getAdapterFactoryRegistry() {
return AdapterFactoryRegistryImpl.getInstance();
}
public AdapterFactoryRegistry getEmbeddedAdapterFactoryRegistry() {
return EmbeddedAdapterFactoryRegistryImpl.getInstance();
}
/**
* Return text hover manager
*
* @return TextHoverManager
*/
public TextHoverManager getTextHoverManager() {
if (fTextHoverManager == null) {
fTextHoverManager = new TextHoverManager();
}
return fTextHoverManager;
}
/**
* This method is here so that other editor plugins can set Editor
* defaults in their initializeDefaultPreferences(...) methods.
*
* @param store
*/
public void initializeDefaultEditorPreferences(IPreferenceStore store) {
}
/**
* @see AbstractUIPlugin#initializeDefaultPreferences
*/
protected void initializeDefaultPreferences(IPreferenceStore store) {
super.initializeDefaultPreferences(store);
initializeDefaultEditorPreferences(store);
}
}