103 lines
2.7 KiB
Java
103 lines
2.7 KiB
Java
/**
|
|
* This software was developed and / or modified by Raytheon Company,
|
|
* pursuant to Contract DG133W-05-CQ-1067 with the US Government.
|
|
*
|
|
* U.S. EXPORT CONTROLLED TECHNICAL DATA
|
|
* This software product contains export-restricted data whose
|
|
* export/transfer/disclosure is restricted by U.S. law. Dissemination
|
|
* to non-U.S. persons whether in the United States or abroad requires
|
|
* an export license or other authorization.
|
|
*
|
|
* Contractor Name: Raytheon Company
|
|
* Contractor Address: 6825 Pine Street, Suite 340
|
|
* Mail Stop B8
|
|
* Omaha, NE 68106
|
|
* 402.291.0100
|
|
*
|
|
* See the AWIPS II Master Rights File ("Master Rights File.pdf") for
|
|
* further licensing information.
|
|
**/
|
|
package com.raytheon.viz.warngen;
|
|
|
|
import org.eclipse.jface.preference.IPersistentPreferenceStore;
|
|
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
|
import org.osgi.framework.BundleContext;
|
|
|
|
import com.raytheon.uf.viz.core.localization.HierarchicalPreferenceStore;
|
|
|
|
/**
|
|
* WarnGen Activator
|
|
*
|
|
* <pre>
|
|
* SOFTWARE HISTORY
|
|
* Date Ticket# Engineer Description
|
|
* ------------ ---------- ----------- --------------------------
|
|
* Jan 26, 2007 chammack Initial Creation.
|
|
* Mar 3, 2014 2861 mschenke Create preference store immediately
|
|
*
|
|
* </pre>
|
|
*
|
|
* @author chammack
|
|
* @version 1
|
|
*/
|
|
public class Activator extends AbstractUIPlugin {
|
|
|
|
// The plug-in ID
|
|
public static final String PLUGIN_ID = "com.raytheon.viz.warngen";
|
|
|
|
// The shared instance
|
|
private static Activator plugin;
|
|
|
|
private IPersistentPreferenceStore prefs = new HierarchicalPreferenceStore(
|
|
this);
|
|
|
|
/**
|
|
* The constructor
|
|
*/
|
|
public Activator() {
|
|
plugin = this;
|
|
}
|
|
|
|
/*
|
|
* (non-Javadoc)
|
|
*
|
|
* @see
|
|
* org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext
|
|
* )
|
|
*/
|
|
public void start(BundleContext context) throws Exception {
|
|
super.start(context);
|
|
}
|
|
|
|
/*
|
|
* (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 Activator getDefault() {
|
|
return plugin;
|
|
}
|
|
|
|
/*
|
|
* (non-Javadoc)
|
|
*
|
|
* @see org.eclipse.ui.plugin.AbstractUIPlugin#getPreferenceStore()
|
|
*/
|
|
@Override
|
|
public IPersistentPreferenceStore getPreferenceStore() {
|
|
return prefs;
|
|
}
|
|
|
|
}
|