/** * Aptana Studio * Copyright (c) 2005-2011 by Appcelerator, Inc. All Rights Reserved. * Licensed under the terms of the GNU Public License (GPL) v3 (with exceptions). * Please see the license.html included with this distribution for details. * Any modifications to this file must keep this entire header intact. */ package com.aptana.filesystem.http; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Plugin; import org.eclipse.core.runtime.Status; import org.osgi.framework.BundleContext; public class HttpFilesystemPlugin extends Plugin { // The plug-in ID public static final String PLUGIN_ID = "com.aptana.filesystem.http"; //$NON-NLS-1$ // The shared instance private static HttpFilesystemPlugin plugin; /** * The constructor */ public HttpFilesystemPlugin() { } /* * (non-Javadoc) * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) */ public void start(BundleContext context) throws Exception { super.start(context); plugin = this; } /* * (non-Javadoc) * @see org.eclipse.ui.plugin.AbstractUIPlugin#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 HttpFilesystemPlugin getDefault() { return plugin; } public static void log(Exception e) { getDefault().getLog().log(new Status(IStatus.ERROR, HttpFilesystemPlugin.PLUGIN_ID, e.getMessage(), e)); } }