blob: c980731866110b406de3e2736ed7448d62266c93 [file] [log] [blame]
/*
* Copyright (c) 2005, 2018 IBM Corporation 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:
* IBM - initial API and implementation
* Kenn Hussey - 522703
*
*/
package org.eclipse.uml2.codegen.ecore;
import org.eclipse.emf.common.EMFPlugin;
import org.eclipse.emf.common.util.ResourceLocator;
/**
* The <b>Plugin </b> for the UML2.CodeGen.Ecore library.
*/
public final class CodeGenEcorePlugin
extends EMFPlugin {
/**
* The singleton instance of the plugin.
*/
public static final CodeGenEcorePlugin INSTANCE = new CodeGenEcorePlugin();
/**
* The one instance of this class.
*/
private static Implementation plugin;
/**
* Creates the singleton instance.
*/
private CodeGenEcorePlugin() {
super(new ResourceLocator[]{
org.eclipse.emf.codegen.ecore.CodeGenEcorePlugin.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 EMFPlugin.EclipsePlugin {
/**
* Creates an instance.
*/
public Implementation() {
super();
// Remember the static instance.
//
plugin = this;
}
}
}