/** * Warlock, the open-source cross-platform game client * * Copyright 2008, Warlock LLC, and individual contributors as indicated * by the @authors tag. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package cc.warlock.core.stormfront.script; import org.eclipse.core.runtime.Plugin; import org.osgi.framework.BundleContext; import cc.warlock.core.script.ScriptCommandsFactory; /** * The activator class controls the plug-in life cycle */ public class StormFrontScriptPlugin extends Plugin { // The plug-in ID public static final String PLUGIN_ID = "cc.warlock.core.stormfront.script"; // The shared instance private static StormFrontScriptPlugin plugin; /** * The constructor */ public StormFrontScriptPlugin() { } /* * (non-Javadoc) * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext) */ public void start(BundleContext context) throws Exception { super.start(context); plugin = this; ScriptCommandsFactory.setFactory(new StormFrontScriptCommandsFactory()); } /* * (non-Javadoc) * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext) */ public void stop(BundleContext context) throws Exception { plugin = null; super.stop(context); } /** * Returns the shared instance * * @return the shared instance */ public static StormFrontScriptPlugin getDefault() { return plugin; } }