/******************************************************************************* * Copyright (c) 2006-2010 eBay Inc. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *******************************************************************************/ package org.ebayopensource.turmeric.eclipse.maven.core; import java.io.IOException; import java.util.PropertyResourceBundle; import org.ebayopensource.turmeric.eclipse.core.logging.SOALogger; import org.ebayopensource.turmeric.eclipse.utils.plugin.JDTUtil; import org.eclipse.core.runtime.Plugin; import org.osgi.framework.BundleContext; /** * The Class Activator. * * @since 1.0 */ public class Activator extends Plugin { /** * The plug-in ID. */ public static final String PLUGIN_ID = "org.ebayopensource.turmeric.eclipse.maven.core"; // The shared instance private static Activator plugin; private static SOALogger logger = SOALogger.getLogger(); /** The plugin properties. */ protected PropertyResourceBundle pluginProperties; /** * Gets the config properties. * * @return the configuratin properties */ public PropertyResourceBundle getConfigProperties(){ if (pluginProperties == null){ try { pluginProperties = JDTUtil.getPluginProperties(getBundle(), "config.properties"); } catch (IOException e) { logger.error(e); } } return pluginProperties; } /* (non-Javadoc) * @see org.eclipse.core.runtime.Plugin#start(org.osgi.framework.BundleContext) */ @Override public void start(BundleContext context) throws Exception { super.start(context); plugin = this; StringBuffer buf = new StringBuffer(); buf.append("SOAPlugin.start - "); buf.append(JDTUtil.getBundleInfo(context.getBundle(), SOALogger.DEBUG)); logger.info(buf); } /* (non-Javadoc) * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext) */ @Override public void stop(BundleContext context) throws Exception { plugin = null; super.stop(context); } /** * Returns the shared instance. * * @return the shared instance */ public static Activator getDefault() { return plugin; } }