blob: 0a9c7c4057b7dbdf4ca85607dc04e68045a78b75 [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Development Tooling"-Software
*
* Copyright 2009 Stephan Herrmann
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Please visit http://www.objectteams.org for updates and contact.
*
* Contributors:
* Stephan Herrmann - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.otdt.internal.refactoring;
import org.eclipse.ui.plugin.AbstractUIPlugin;
public class OTRefactoringPlugin extends AbstractUIPlugin {
public static final String PLUGIN_ID = "org.eclipse.objectteams.otdt.refactoring"; //$NON-NLS-1$
private static AbstractUIPlugin instance;
public OTRefactoringPlugin() {
instance = this;
}
public static AbstractUIPlugin getInstance() {
return instance;
}
}