blob: 66e1c00b621f822e73c0928baf7f768794e0440c [file] [log] [blame]
/*
* Copyright (c) 2005 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
*
* $Id: UML2ImporterPlugin.java,v 1.1 2005/05/17 22:10:19 khussey Exp $
*/
package org.eclipse.uml2.ecore.importer;
import org.eclipse.emf.common.EMFPlugin;
import org.eclipse.emf.common.util.ResourceLocator;
import org.eclipse.emf.importer.ImporterPlugin;
/**
* The <b>Plugin</b> for the UML2.Ecore.Importer library.
*/
public final class UML2ImporterPlugin
extends EMFPlugin {
/**
* The singleton instance of the plugin.
*/
public static final UML2ImporterPlugin INSTANCE = new UML2ImporterPlugin();
/**
* The one instance of this class.
*/
private static Implementation plugin;
/**
* Creates the singleton instance.
*/
private UML2ImporterPlugin() {
super(new ResourceLocator[]{ImporterPlugin.INSTANCE});
}
/*
* Javadoc copied from base class.
*/
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() {
super();
// Remember the static instance.
//
plugin = this;
}
}
}