/* * This software is Copyright 2005,2006,2007,2008 Langdale Consultants. * Langdale Consultants can be contacted at: http://www.langdale.com.au */ package com.cimphony.cimtoole; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; /** * The activator class for the Cimphony CIMTool plugin. * It manages the lifetime of the model cache. */ public class CimphonyCIMToolPlugin extends AbstractUIPlugin { // The plug-in ID public static final String PLUGIN_ID = "com.cimphony.cimtoole"; // The shared instance private static CimphonyCIMToolPlugin plugin; public CimphonyCIMToolPlugin() { } /* * (non-Javadoc) * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) */ @Override 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) */ @Override public void stop(BundleContext context) throws Exception { plugin = null; super.stop(context); } /** * Returns the shared instance * * @return the shared instance */ public static CimphonyCIMToolPlugin getDefault() { return plugin; } }