blob: 8837eb9d6b28c42d78b6f6240ce3b26609db685c [file] [log] [blame]
/**
* Copyright (c) 2010 Kenn Hussey 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:
* Kenn Hussey - Initial API and implementation
*/
package org.eclipse.emf.oda.ecore.ui;
import org.eclipse.emf.common.EMFPlugin;
import org.eclipse.emf.common.ui.EclipseUIPlugin;
import org.eclipse.emf.common.util.ResourceLocator;
/**
* This is the central singleton for the ODA Ecore UI plugin.
*/
public class ODAEcoreUIPlugin extends EMFPlugin
{
/**
* Keep track of the singleton.
*/
public static final ODAEcoreUIPlugin INSTANCE = new ODAEcoreUIPlugin();
/**
* Keep track of the singleton.
*/
private static Implementation plugin;
/**
* Create the instance.
*/
public ODAEcoreUIPlugin()
{
super
(new ResourceLocator []
{
});
}
/**
* Returns the singleton instance of the Eclipse plugin.
* @return the singleton instance.
*/
@Override
public ResourceLocator getPluginResourceLocator()
{
return plugin;
}
/**
* Returns the singleton instance of the Eclipse plugin.
* @return the singleton instance.
*/
public static Implementation getPlugin()
{
return plugin;
}
/**
* The actual implementation of the Eclipse <b>Plugin</b>.
*/
public static class Implementation extends EclipseUIPlugin
{
/**
* Creates an instance.
*/
public Implementation()
{
super();
// Remember the static instance.
//
plugin = this;
}
}
}