blob: 36e4517f77f21c3b329c58bf96a0f66485141cc6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2016 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.python.internal.ui;
import org.eclipse.dltk.python.internal.ui.text.PythonTextTools;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle
*/
public class PythonUI extends AbstractUIPlugin {
// The plug-in ID
public static final String PLUGIN_ID = "org.eclipse.dltk.python.ui";
// The shared instance
private static PythonUI plugin;
private PythonTextTools fPythonTextTools;
/**
* The constructor
*/
public PythonUI() {
plugin = this;
}
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
}
@Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
/**
* Returns the shared instance
*
* @return the shared instance
*/
public static PythonUI getDefault() {
return plugin;
}
public synchronized PythonTextTools getTextTools() {
if (fPythonTextTools == null)
fPythonTextTools= new PythonTextTools(true);
return fPythonTextTools;
}
}