blob: 04837e6ba7c130f27c560e6b5a81700755e14557 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014.
* 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:
* Hussein MHANNA - initial API and implementation
******************************************************************************/
package org.eclipse.rmf.cheatsheets;
import org.eclipse.emf.common.EMFPlugin;
import org.eclipse.emf.common.util.ResourceLocator;
/**
* The <b>Plugin</b> for the RMF Cheat Sheets.
* @since 0.13.0
*/
public final class CheatSheetsPlugin extends EMFPlugin
{
/**
* The singleton instance of the plugin.
*/
public static final CheatSheetsPlugin INSTANCE = new CheatSheetsPlugin();
/**
* The one instance of this class.
*/
private static Implementation plugin;
/**
* Creates the singleton instance.
*/
private CheatSheetsPlugin()
{
super(new ResourceLocator []{});
}
/*
* Javadoc copied from base class.
*/
@Override
public ResourceLocator getPluginResourceLocator()
{
return plugin;
}
/**
* Returns the singleton instance of the Eclipse plugin.
* @return the singleton instance.
*/
public static Implementation getPlugin()
{
return plugin;
}
/**
* Returns the singleton instance of the Eclipse plugin.
*/
public static void write(Exception exception)
{
INSTANCE.log(exception);
}
/**
* The actual implementation of the Eclipse <b>Plugin</b>.
*/
public static class Implementation extends EMFPlugin.EclipsePlugin
{
/**
* Creates an instance.
*/
public Implementation()
{
super();
// Remember the static instance.
//
plugin = this;
}
}
}