blob: ccd0674264b0cfde6c409b9659dd28442c9ae4f9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Willink Transformations 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:
* 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;
}
}