blob: a2b3c6f50123f6df66d5bc1b9003d8a07754cbeb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.qvtd.examples;
import org.eclipse.ui.plugin.AbstractUIPlugin;
/**
* The activator class controls the plug-in life cycle
*/
public class QVTDeclarativeExamplesPlugin extends AbstractUIPlugin
{
// The shared instance
private static QVTDeclarativeExamplesPlugin plugin;
/**
* The constructor
*/
public QVTDeclarativeExamplesPlugin() {
plugin = this;
}
/**
* Returns the shared instance
*
* @return the shared instance
*/
public static QVTDeclarativeExamplesPlugin getDefault() {
return plugin;
}
}