blob: d745f6680cdf30d29465b3ff5274d8ab6e270086 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.diagram.sequence;
import org.eclipse.emf.common.EMFPlugin;
import org.eclipse.emf.common.util.ResourceLocator;
/**
* Plug-in class for <em>org.eclipse.sirius.diagram.sequence</em>.
*
* @author pcdavid
*/
public class SequenceDiagramPlugin extends EMFPlugin {
/**
* Keep track of the singleton.
*/
public static final SequenceDiagramPlugin INSTANCE = new SequenceDiagramPlugin();
/**
* Keep track of the singleton.
*/
private static Implementation plugin;
/**
* Create the instance.
*/
public SequenceDiagramPlugin() {
super(new ResourceLocator[0]);
}
@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 EclipsePlugin {
/**
* Creates an instance.
*/
public Implementation() {
plugin = this;
}
}
}