Issue #2491 fix d2d xy bundles.
Former-commit-id:86ba5b9f09
[formerly5b6e32f47e
[formerly 4f41b90c20e25689a24d73bdd92e24952516199a]] Former-commit-id:5b6e32f47e
Former-commit-id:9922b11f75
This commit is contained in:
parent
2c88b7d9b3
commit
bb59c04696
12 changed files with 52 additions and 374 deletions
|
@ -2,43 +2,28 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: CrossSection
|
||||
Bundle-SymbolicName: com.raytheon.uf.viz.xy.crosssection;singleton:=true
|
||||
Bundle-Version: 1.0.0.qualifier
|
||||
Bundle-Activator: com.raytheon.uf.viz.xy.crosssection.Activator
|
||||
Bundle-Version: 1.0.1.qualifier
|
||||
Bundle-Vendor: RAYTHEON
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
org.eclipse.ui,
|
||||
com.raytheon.uf.common.colormap,
|
||||
com.raytheon.uf.common.wxmath,
|
||||
com.raytheon.uf.viz.core,
|
||||
com.raytheon.uf.viz.xy,
|
||||
com.raytheon.uf.common.geospatial,
|
||||
com.raytheon.viz.core.contours,
|
||||
com.raytheon.viz.core.graphing,
|
||||
com.raytheon.viz.ui,
|
||||
org.geotools,
|
||||
javax.measure
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Eclipse-RegisterBuddy: com.raytheon.uf.viz.core, com.raytheon.viz.core
|
||||
Import-Package: com.raytheon.uf.common.dataplugin,
|
||||
com.raytheon.uf.common.dataquery.requests,
|
||||
com.raytheon.uf.common.localization,
|
||||
com.raytheon.uf.common.status,
|
||||
Require-Bundle: com.raytheon.uf.common.colormap,
|
||||
com.raytheon.uf.common.dataplugin,
|
||||
com.raytheon.uf.common.geospatial,
|
||||
com.raytheon.uf.common.style,
|
||||
com.raytheon.uf.common.style.arrow,
|
||||
com.raytheon.uf.common.style.contour,
|
||||
com.raytheon.uf.common.style.graph,
|
||||
com.raytheon.uf.common.style.image,
|
||||
com.raytheon.uf.common.style.level,
|
||||
com.raytheon.uf.common.time,
|
||||
com.raytheon.uf.common.topo,
|
||||
com.raytheon.uf.viz.d2d.core.map,
|
||||
com.raytheon.uf.common.wxmath,
|
||||
com.raytheon.uf.viz.core,
|
||||
com.raytheon.uf.viz.d2d.core,
|
||||
com.raytheon.uf.viz.d2d.ui,
|
||||
com.raytheon.viz.core.imagery,
|
||||
com.raytheon.uf.viz.xy,
|
||||
com.raytheon.viz.core.contours,
|
||||
com.raytheon.viz.core.graphing,
|
||||
javax.measure,
|
||||
org.eclipse.core.runtime,
|
||||
org.eclipse.ui
|
||||
Import-Package: com.raytheon.viz.core.imagery,
|
||||
com.raytheon.viz.core.map,
|
||||
com.raytheon.viz.core.rsc,
|
||||
com.raytheon.viz.core.rsc.jts,
|
||||
com.raytheon.viz.core.slice.request
|
||||
com.raytheon.viz.core.rsc.jts
|
||||
Export-Package: com.raytheon.uf.viz.xy.crosssection,
|
||||
com.raytheon.uf.viz.xy.crosssection.adapter,
|
||||
com.raytheon.uf.viz.xy.crosssection.display,
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
com.raytheon.uf.viz.xy.crosssection.rsc.CrossSectionResourceData
|
||||
com.raytheon.uf.viz.xy.crosssection.display.CrossSectionRenderableDisplay
|
||||
com.raytheon.uf.viz.xy.crosssection.display.CrossSectionDescriptor
|
|
@ -1,56 +0,0 @@
|
|||
package com.raytheon.uf.viz.xy.crosssection;
|
||||
|
||||
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
||||
import org.osgi.framework.BundleContext;
|
||||
|
||||
/**
|
||||
* The activator class controls the plug-in life cycle
|
||||
*/
|
||||
public class Activator extends AbstractUIPlugin {
|
||||
|
||||
// The plug-in ID
|
||||
public static final String PLUGIN_ID = "com.raytheon.uf.viz.xy.crosssection";
|
||||
|
||||
// The shared instance
|
||||
private static Activator plugin;
|
||||
|
||||
/**
|
||||
* The constructor
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
/*
|
||||
* (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;
|
||||
}
|
||||
|
||||
}
|
|
@ -2,38 +2,28 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Timeheight
|
||||
Bundle-SymbolicName: com.raytheon.uf.viz.xy.timeheight;singleton:=true
|
||||
Bundle-Version: 1.0.0.qualifier
|
||||
Bundle-Activator: com.raytheon.uf.viz.xy.timeheight.Activator
|
||||
Bundle-Version: 1.0.1.qualifier
|
||||
Bundle-Vendor: RAYTHEON
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
org.eclipse.ui,
|
||||
com.raytheon.uf.common.colormap,
|
||||
com.raytheon.uf.common.dataquery,
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Require-Bundle: com.raytheon.uf.common.colormap,
|
||||
com.raytheon.uf.common.dataplugin,
|
||||
com.raytheon.uf.common.geospatial,
|
||||
com.raytheon.uf.common.style,
|
||||
com.raytheon.uf.viz.core,
|
||||
com.raytheon.uf.viz.d2d.core,
|
||||
com.raytheon.uf.viz.d2d.ui,
|
||||
com.raytheon.uf.viz.xy,
|
||||
com.raytheon.uf.viz.xy.varheight,
|
||||
javax.measure
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Eclipse-RegisterBuddy: com.raytheon.uf.viz.core, com.raytheon.viz.core
|
||||
Import-Package: com.raytheon.uf.common.dataplugin,
|
||||
com.raytheon.uf.common.status,
|
||||
com.raytheon.uf.common.style.image,
|
||||
com.raytheon.uf.common.time,
|
||||
com.raytheon.uf.viz.d2d.ui,
|
||||
com.raytheon.viz.core.contours,
|
||||
com.raytheon.viz.core.contours.util,
|
||||
com.raytheon.viz.core.graphing.util,
|
||||
com.raytheon.viz.core.graphing.xy,
|
||||
com.raytheon.viz.core.imagery,
|
||||
com.raytheon.viz.core.graphing,
|
||||
com.raytheon.viz.grid,
|
||||
javax.measure,
|
||||
org.eclipse.core.runtime,
|
||||
org.eclipse.ui
|
||||
Import-Package: com.raytheon.viz.core.imagery,
|
||||
com.raytheon.viz.core.map,
|
||||
com.raytheon.viz.core.rsc,
|
||||
com.raytheon.viz.core.slice.request,
|
||||
com.raytheon.viz.grid.rsc
|
||||
Export-Package: com.raytheon.uf.viz.xy.timeheight,
|
||||
com.raytheon.uf.viz.xy.timeheight.display,
|
||||
com.raytheon.viz.core.rsc
|
||||
Export-Package: com.raytheon.uf.viz.xy.timeheight.display,
|
||||
com.raytheon.uf.viz.xy.timeheight.graph,
|
||||
com.raytheon.uf.viz.xy.timeheight.rsc
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
com.raytheon.uf.viz.xy.timeheight.rsc.TimeHeightResourceData
|
||||
com.raytheon.uf.viz.xy.timeheight.display.TimeHeightRenderableDisplay
|
||||
com.raytheon.uf.viz.xy.timeheight.display.TimeHeightDescriptor
|
|
@ -1,56 +0,0 @@
|
|||
package com.raytheon.uf.viz.xy.timeheight;
|
||||
|
||||
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
||||
import org.osgi.framework.BundleContext;
|
||||
|
||||
/**
|
||||
* The activator class controls the plug-in life cycle
|
||||
*/
|
||||
public class Activator extends AbstractUIPlugin {
|
||||
|
||||
// The plug-in ID
|
||||
public static final String PLUGIN_ID = "com.raytheon.uf.viz.xy.timeheight";
|
||||
|
||||
// The shared instance
|
||||
private static Activator plugin;
|
||||
|
||||
/**
|
||||
* The constructor
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
/*
|
||||
* (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;
|
||||
}
|
||||
|
||||
}
|
|
@ -2,51 +2,26 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Timeseries Plug-in
|
||||
Bundle-SymbolicName: com.raytheon.uf.viz.xy.timeseries;singleton:=true
|
||||
Bundle-Version: 1.12.1174.qualifier
|
||||
Bundle-Activator: com.raytheon.uf.viz.xy.timeseries.Activator
|
||||
Bundle-Version: 1.13.0.qualifier
|
||||
Bundle-Vendor: RAYTHEON
|
||||
Eclipse-RegisterBuddy: com.raytheon.viz.core, com.raytheon.uf.viz.core
|
||||
Eclipse-BuddyPolicy: ext, global
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Require-Bundle: com.raytheon.uf.common.dataplugin,
|
||||
com.raytheon.uf.common.geospatial,
|
||||
com.raytheon.uf.common.style,
|
||||
com.raytheon.uf.viz.core,
|
||||
com.raytheon.uf.viz.d2d.core,
|
||||
com.raytheon.uf.viz.d2d.ui,
|
||||
com.raytheon.uf.viz.xy,
|
||||
com.raytheon.viz.core.graphing,
|
||||
com.raytheon.viz.ui,
|
||||
javax.measure,
|
||||
org.eclipse.ui,
|
||||
org.eclipse.core.runtime
|
||||
Import-Package: com.raytheon.viz.core.rsc
|
||||
Export-Package: com.raytheon.uf.viz.xy.timeseries,
|
||||
com.raytheon.uf.viz.xy.timeseries.adapter,
|
||||
com.raytheon.uf.viz.xy.timeseries.display,
|
||||
com.raytheon.uf.viz.xy.timeseries.graph,
|
||||
com.raytheon.uf.viz.xy.timeseries.rsc,
|
||||
com.raytheon.uf.viz.xy.timeseries.util
|
||||
Import-Package: com.raytheon.uf.common.dataplugin,
|
||||
com.raytheon.uf.common.dataquery.requests,
|
||||
com.raytheon.uf.common.geospatial,
|
||||
com.raytheon.uf.common.serialization,
|
||||
com.raytheon.uf.common.status,
|
||||
com.raytheon.uf.common.style,
|
||||
com.raytheon.uf.common.style.graph,
|
||||
com.raytheon.uf.common.style.level,
|
||||
com.raytheon.uf.common.time,
|
||||
com.raytheon.uf.viz.core,
|
||||
com.raytheon.uf.viz.core.drawables,
|
||||
com.raytheon.uf.viz.core.exception,
|
||||
com.raytheon.uf.viz.core.map,
|
||||
com.raytheon.uf.viz.core.rsc,
|
||||
com.raytheon.uf.viz.core.rsc.capabilities,
|
||||
com.raytheon.uf.viz.core.status,
|
||||
com.raytheon.uf.viz.d2d.core,
|
||||
com.raytheon.uf.viz.d2d.ui,
|
||||
com.raytheon.uf.viz.xy,
|
||||
com.raytheon.uf.viz.xy.graph,
|
||||
com.raytheon.uf.viz.xy.graph.axis,
|
||||
com.raytheon.uf.viz.xy.graph.labeling,
|
||||
com.raytheon.uf.viz.xy.map.rsc,
|
||||
com.raytheon.viz.core.graphing.util,
|
||||
com.raytheon.viz.core.graphing.xy,
|
||||
com.raytheon.viz.core.rsc,
|
||||
com.raytheon.viz.ui.cmenu,
|
||||
com.raytheon.viz.ui.editor,
|
||||
com.raytheon.viz.ui.input,
|
||||
com.raytheon.viz.ui.input.preferences,
|
||||
com.vividsolutions.jts.geom,
|
||||
javax.measure.converter,
|
||||
javax.measure.unit
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
com.raytheon.uf.viz.xy.timeseries.rsc.TimeSeriesResourceData
|
||||
com.raytheon.uf.viz.xy.timeseries.display.TimeSeriesRenderableDisplay
|
||||
com.raytheon.uf.viz.xy.timeseries.display.TimeSeriesDescriptor
|
|
@ -1,69 +0,0 @@
|
|||
/**
|
||||
* 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.uf.viz.xy.timeseries;
|
||||
|
||||
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
||||
import org.osgi.framework.BundleContext;
|
||||
|
||||
/**
|
||||
* The activator class controls the plug-in life cycle
|
||||
*/
|
||||
public class Activator extends AbstractUIPlugin {
|
||||
|
||||
// The plug-in ID
|
||||
public static final String PLUGIN_ID = "com.raytheon.uf.viz.xy.timeseries";
|
||||
|
||||
// The shared instance
|
||||
private static Activator plugin;
|
||||
|
||||
/**
|
||||
* The constructor
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
/*
|
||||
* (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;
|
||||
}
|
||||
|
||||
}
|
|
@ -2,53 +2,25 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Varheight Plug-in
|
||||
Bundle-SymbolicName: com.raytheon.uf.viz.xy.varheight;singleton:=true
|
||||
Bundle-Version: 1.12.1174.qualifier
|
||||
Bundle-Activator: com.raytheon.uf.viz.xy.varheight.Activator
|
||||
Bundle-Version: 1.13.0.qualifier
|
||||
Bundle-Vendor: RAYTHEON
|
||||
Eclipse-RegisterBuddy: com.raytheon.viz.core, com.raytheon.uf.viz.core
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
org.eclipse.ui;bundle-version="3.4.1"
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Import-Package: com.raytheon.uf.common.dataplugin,
|
||||
com.raytheon.uf.common.dataquery.requests,
|
||||
Require-Bundle: com.raytheon.uf.common.dataplugin,
|
||||
com.raytheon.uf.common.geospatial,
|
||||
com.raytheon.uf.common.serialization,
|
||||
com.raytheon.uf.common.status,
|
||||
com.raytheon.uf.common.style,
|
||||
com.raytheon.uf.common.style.graph,
|
||||
com.raytheon.uf.common.time,
|
||||
com.raytheon.uf.viz.core,
|
||||
com.raytheon.uf.viz.core.drawables,
|
||||
com.raytheon.uf.viz.core.exception,
|
||||
com.raytheon.uf.viz.core.globals,
|
||||
com.raytheon.uf.viz.core.map,
|
||||
com.raytheon.uf.viz.core.rsc,
|
||||
com.raytheon.uf.viz.core.rsc.capabilities,
|
||||
com.raytheon.uf.viz.core.status,
|
||||
com.raytheon.uf.viz.d2d.core,
|
||||
com.raytheon.uf.viz.d2d.ui,
|
||||
com.raytheon.uf.viz.xy,
|
||||
com.raytheon.uf.viz.xy.graph,
|
||||
com.raytheon.uf.viz.xy.graph.axis,
|
||||
com.raytheon.uf.viz.xy.graph.labeling,
|
||||
com.raytheon.uf.viz.xy.hodo,
|
||||
com.raytheon.uf.viz.xy.map.rsc,
|
||||
com.raytheon.viz.core.contours.util,
|
||||
com.raytheon.viz.core.graphing.util,
|
||||
com.raytheon.viz.core.graphing.xy,
|
||||
com.raytheon.viz.core.map,
|
||||
com.raytheon.viz.core.rsc,
|
||||
com.raytheon.viz.core.slice.request,
|
||||
com.raytheon.viz.core.contours,
|
||||
com.raytheon.viz.core.graphing,
|
||||
com.raytheon.viz.ui,
|
||||
com.raytheon.viz.ui.cmenu,
|
||||
com.raytheon.viz.ui.editor,
|
||||
com.raytheon.viz.ui.input,
|
||||
com.raytheon.viz.ui.input.preferences,
|
||||
com.raytheon.viz.ui.panes,
|
||||
com.vividsolutions.jts.geom,
|
||||
javax.measure.converter,
|
||||
javax.measure.unit
|
||||
javax.measure,
|
||||
org.eclipse.core.runtime,
|
||||
org.eclipse.ui
|
||||
Import-Package: com.raytheon.viz.core.map,
|
||||
com.raytheon.viz.core.rsc
|
||||
Export-Package: com.raytheon.uf.viz.xy.varheight,
|
||||
com.raytheon.uf.viz.xy.varheight.adapter,
|
||||
com.raytheon.uf.viz.xy.varheight.display,
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
com.raytheon.uf.viz.xy.varheight.rsc.VarHeightResourceData
|
||||
com.raytheon.uf.viz.xy.varheight.display.VarHeightRenderableDisplay
|
||||
com.raytheon.uf.viz.xy.varheight.display.VarHeightDescriptor
|
||||
com.raytheon.uf.viz.xy.varheight.hodo.VarHeightHodoDescriptor
|
|
@ -1,50 +0,0 @@
|
|||
package com.raytheon.uf.viz.xy.varheight;
|
||||
|
||||
import org.eclipse.core.runtime.Plugin;
|
||||
import org.osgi.framework.BundleContext;
|
||||
|
||||
/**
|
||||
* The activator class controls the plug-in life cycle
|
||||
*/
|
||||
public class Activator extends Plugin {
|
||||
|
||||
// The plug-in ID
|
||||
public static final String PLUGIN_ID = "com.raytheon.uf.viz.xy.varheight";
|
||||
|
||||
// The shared instance
|
||||
private static Activator plugin;
|
||||
|
||||
/**
|
||||
* The constructor
|
||||
*/
|
||||
public Activator() {
|
||||
}
|
||||
|
||||
/*
|
||||
* (non-Javadoc)
|
||||
* @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext)
|
||||
*/
|
||||
public void start(BundleContext context) throws Exception {
|
||||
super.start(context);
|
||||
plugin = this;
|
||||
}
|
||||
|
||||
/*
|
||||
* (non-Javadoc)
|
||||
* @see org.eclipse.core.runtime.Plugin#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;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue