ASM #17944 - RADAR: Radarserver should handle NDM file tdwrElevations.txt properly

Change-Id: Ieff06001a5f13b2b286fb9c1c231f4fc190c4493

Former-commit-id: 17a8ac1fd0695d095d32b2fa6e1978db3ea8cb7d
This commit is contained in:
David Friedman 2015-09-25 18:32:43 +00:00
parent 1c90952299
commit e7afb77380
2 changed files with 18 additions and 16 deletions

View file

@ -22,6 +22,9 @@ package com.raytheon.uf.viz.radarapps.requests;
import org.eclipse.ui.plugin.AbstractUIPlugin; import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext; 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 * The activator class controls the plug-in life cycle
*/ */
@ -39,14 +42,12 @@ public class Activator extends AbstractUIPlugin {
public Activator() { public Activator() {
} }
/* @Override
* (non-Javadoc) public void start(BundleContext context) throws Exception {
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) super.start(context);
*/ plugin = this;
public void start(BundleContext context) throws Exception { RcmResourceProvider.setInstance(new LocalizationRcmResourceProvider());
super.start(context); }
plugin = this;
}
/* /*
* (non-Javadoc) * (non-Javadoc)

View file

@ -22,6 +22,9 @@ package com.raytheon.uf.viz.radarapps.rps;
import org.eclipse.ui.plugin.AbstractUIPlugin; import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext; 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 * The activator class controls the plug-in life cycle
*/ */
@ -39,14 +42,12 @@ public class Activator extends AbstractUIPlugin {
public Activator() { public Activator() {
} }
/* @Override
* (non-Javadoc) public void start(BundleContext context) throws Exception {
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) super.start(context);
*/ plugin = this;
public void start(BundleContext context) throws Exception { RcmResourceProvider.setInstance(new LocalizationRcmResourceProvider());
super.start(context); }
plugin = this;
}
/* /*
* (non-Javadoc) * (non-Javadoc)