Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/EditorsPlugin.java')
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/EditorsPlugin.java171
1 files changed, 0 insertions, 171 deletions
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/EditorsPlugin.java b/org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/EditorsPlugin.java
deleted file mode 100644
index ef3bd096dcd..00000000000
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/EditorsPlugin.java
+++ /dev/null
@@ -1,171 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2004 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.ui.internal.editors.text;
-
-import org.osgi.framework.BundleContext;
-
-import org.eclipse.core.resources.IFile;
-import org.eclipse.core.runtime.IAdapterManager;
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.MultiStatus;
-import org.eclipse.core.runtime.Platform;
-import org.eclipse.core.runtime.Status;
-
-import org.eclipse.jface.preference.IPreferenceStore;
-
-import org.eclipse.jface.text.Assert;
-import org.eclipse.jface.text.source.ISharedTextColors;
-
-import org.eclipse.ui.editors.text.EditorsUI;
-import org.eclipse.ui.editors.text.TextEditorPreferenceConstants;
-
-import org.eclipse.ui.internal.texteditor.AnnotationTypeHierarchy;
-import org.eclipse.ui.plugin.AbstractUIPlugin;
-import org.eclipse.ui.texteditor.AnnotationPreferenceLookup;
-import org.eclipse.ui.texteditor.AnnotationTypeLookup;
-
-/**
- * Represents the editors plug-in. It provides a series of convenience methods such as
- * access to the shared text colors and the log.
- *
- * @since 2.1
- */
-public class EditorsPlugin extends AbstractUIPlugin {
- private static EditorsPlugin fgInstance;
-
- public static EditorsPlugin getDefault() {
- return fgInstance;
- }
-
- public static void log(IStatus status) {
- getDefault().getLog().log(status);
- }
-
- public static void logErrorMessage(String message) {
- if (message == null)
- message= ""; //$NON-NLS-1$
- log(new Status(IStatus.ERROR, EditorsUI.PLUGIN_ID, IEditorsStatusConstants.INTERNAL_ERROR, message, null));
- }
-
- public static void logErrorStatus(String message, IStatus status) {
- if (status == null) {
- logErrorMessage(message);
- return;
- }
- MultiStatus multi= new MultiStatus(EditorsUI.PLUGIN_ID, IEditorsStatusConstants.INTERNAL_ERROR, message, null);
- multi.add(status);
- log(multi);
- }
-
- public static void log(Throwable e) {
- log(new Status(IStatus.ERROR, EditorsUI.PLUGIN_ID, IEditorsStatusConstants.INTERNAL_ERROR, TextEditorMessages.getString("EditorsPlugin.internal_error"), e)); //$NON-NLS-1$
- }
-
-
-
- private FileEditorInputAdapterFactory fFileEditorInputAdapterFactory;
- private ISharedTextColors fSharedTextColors;
- private AnnotationTypeLookup fAnnotationTypeLookup;
- private AnnotationPreferenceLookup fAnnotationPreferenceLookup;
- private AnnotationTypeHierarchy fAnnotationTypeHierarchy;
-
- public EditorsPlugin() {
- Assert.isTrue(fgInstance == null);
- fgInstance= this;
- }
-
- /*
- * @see org.eclipse.ui.plugin.AbstractUIPlugin#initializeDefaultPreferences(org.eclipse.jface.preference.IPreferenceStore)
- */
- protected void initializeDefaultPreferences(IPreferenceStore store) {
- TextEditorPreferenceConstants.initializeDefaultValues(store);
- }
-
-
- /**
- * Returns the shared text colors of this plug-in.
- *
- * @return the shared text colors
- * @since 3.0
- */
- public ISharedTextColors getSharedTextColors() {
- if (fSharedTextColors == null)
- fSharedTextColors= new SharedTextColors();
- return fSharedTextColors;
- }
-
- /**
- * Returns the annotation type lookup of this plug-in.
- *
- * @return the annotation type lookup
- * @since 3.0
- */
- public AnnotationTypeLookup getAnnotationTypeLookup() {
- if (fAnnotationTypeLookup == null)
- fAnnotationTypeLookup= new AnnotationTypeLookup();
- return fAnnotationTypeLookup;
- }
-
- /**
- * Returns the annotation preference lookup of this plug-in.
- *
- * @return the annotation preference lookup
- * @since 3.0
- */
- public AnnotationPreferenceLookup getAnnotationPreferenceLookup() {
- if (fAnnotationPreferenceLookup == null)
- fAnnotationPreferenceLookup= new AnnotationPreferenceLookup();
- return fAnnotationPreferenceLookup;
- }
-
- /**
- * Returns the annotation type hierarchy for this plug-in.
- *
- * @return the annotation type hierarchy
- * @since 3.0
- */
- public AnnotationTypeHierarchy getAnnotationTypeHierarchy() {
- if (fAnnotationTypeHierarchy == null)
- fAnnotationTypeHierarchy= new AnnotationTypeHierarchy();
- return fAnnotationTypeHierarchy;
- }
-
- /*
- * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
- * @since 3.0
- */
- public void start(BundleContext context) throws Exception {
- super.start(context);
- fFileEditorInputAdapterFactory= new FileEditorInputAdapterFactory();
- IAdapterManager manager= Platform.getAdapterManager();
- manager.registerAdapters(fFileEditorInputAdapterFactory, IFile.class);
- }
-
- /*
- * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
- * @since 3.0
- */
- public void stop(BundleContext context) throws Exception {
- IAdapterManager manager= Platform.getAdapterManager();
- manager.unregisterAdapters(fFileEditorInputAdapterFactory);
-
- if (fSharedTextColors != null) {
- fSharedTextColors.dispose();
- fSharedTextColors= null;
- }
-
- fAnnotationTypeLookup= null;
- fAnnotationPreferenceLookup= null;
- fAnnotationTypeHierarchy= null;
-
- super.stop(context);
- }
-}

Back to the top