diff --git a/cave/com.raytheon.uf.viz.radarapps.requests/src/com/raytheon/uf/viz/radarapps/requests/Activator.java b/cave/com.raytheon.uf.viz.radarapps.requests/src/com/raytheon/uf/viz/radarapps/requests/Activator.java index ef487fb674..a23344961f 100644 --- a/cave/com.raytheon.uf.viz.radarapps.requests/src/com/raytheon/uf/viz/radarapps/requests/Activator.java +++ b/cave/com.raytheon.uf.viz.radarapps.requests/src/com/raytheon/uf/viz/radarapps/requests/Activator.java @@ -22,6 +22,9 @@ package com.raytheon.uf.viz.radarapps.requests; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; +import com.raytheon.rcm.config.RcmResourceProvider; +import com.raytheon.uf.viz.radarapps.core.LocalizationRcmResourceProvider; + /** * The activator class controls the plug-in life cycle */ @@ -39,14 +42,12 @@ public class Activator extends AbstractUIPlugin { public Activator() { } - /* - * (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; - } + @Override + public void start(BundleContext context) throws Exception { + super.start(context); + plugin = this; + RcmResourceProvider.setInstance(new LocalizationRcmResourceProvider()); + } /* * (non-Javadoc) diff --git a/cave/com.raytheon.uf.viz.radarapps.rps/src/com/raytheon/uf/viz/radarapps/rps/Activator.java b/cave/com.raytheon.uf.viz.radarapps.rps/src/com/raytheon/uf/viz/radarapps/rps/Activator.java index a4d43d9eeb..23297390dc 100644 --- a/cave/com.raytheon.uf.viz.radarapps.rps/src/com/raytheon/uf/viz/radarapps/rps/Activator.java +++ b/cave/com.raytheon.uf.viz.radarapps.rps/src/com/raytheon/uf/viz/radarapps/rps/Activator.java @@ -22,6 +22,9 @@ package com.raytheon.uf.viz.radarapps.rps; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; +import com.raytheon.rcm.config.RcmResourceProvider; +import com.raytheon.uf.viz.radarapps.core.LocalizationRcmResourceProvider; + /** * The activator class controls the plug-in life cycle */ @@ -39,14 +42,12 @@ public class Activator extends AbstractUIPlugin { public Activator() { } - /* - * (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; - } + @Override + public void start(BundleContext context) throws Exception { + super.start(context); + plugin = this; + RcmResourceProvider.setInstance(new LocalizationRcmResourceProvider()); + } /* * (non-Javadoc)