blob: ba420bc63baf2c0534fe05bf8a3c0d5aee15cb7d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Agence spatiale canadienne / Canadian Space Agency.
* 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:
* Pierre Allard - initial API and implementation
* Regent L'Archeveque
* SPDX-License-Identifier: EPL-1.0
*******************************************************************************/
package org.eclipse.apogy.addons.actuators;
import org.eclipse.core.runtime.Plugin;
public class Activator extends Plugin
{
// The plug-in ID
public static final String ID = "org.eclipse.apogy.addons.actuators";
// The shared instance
private static Activator plugin;
public Activator()
{
plugin = this;
}
/**
* Returns the shared instance
*
* @return the shared instance
*/
public static Activator getDefault() {
return plugin;
}
}