Issue #2491 Remove ISerializableObject references in core and d2d viz plugins.
Change-Id: I8c89a49d1291f640ac7032b837300fd7b013de07 Former-commit-id:642e80aadb
[formerly4e86bb8e5f
] [formerly65522e83c9
] [formerly642e80aadb
[formerly4e86bb8e5f
] [formerly65522e83c9
] [formerly5b439696df
[formerly65522e83c9
[formerly 57825609e668f6595fa8cc6da4ec81a310abf966]]]] Former-commit-id:5b439696df
Former-commit-id:285a0af019
[formerly54a39977f5
] [formerly ae5d9cd5f9d93524f8b356e1b865d0b7966eab25 [formerly6866344496
]] Former-commit-id: a70f5f2f9ec94543623b1366018f66b21d4873b5 [formerlye3e621660f
] Former-commit-id:c0ba7d0acc
This commit is contained in:
parent
e95a9d9144
commit
d74e82bcc5
22 changed files with 107 additions and 108 deletions
|
@ -1,7 +0,0 @@
|
||||||
com.raytheon.uf.viz.aviation.advisory.rsc.AdvisoryResourceData
|
|
||||||
com.raytheon.uf.viz.aviation.advisory.adapter.NonConvSigmetDataAdapter
|
|
||||||
com.raytheon.uf.viz.aviation.advisory.adapter.ConvSigmetOutlookDataAdapter
|
|
||||||
com.raytheon.uf.viz.aviation.advisory.adapter.ConvSigmetTextDataAdapter
|
|
||||||
com.raytheon.uf.viz.aviation.advisory.adapter.ConvSigmetCastDataAdapter
|
|
||||||
com.raytheon.uf.viz.aviation.advisory.adapter.AirmetDataAdapter
|
|
||||||
com.raytheon.uf.viz.aviation.advisory.adapter.IntlSigmetDataAdapter
|
|
|
@ -22,7 +22,6 @@ package com.raytheon.uf.viz.aviation.advisory.adapter;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
|
|
||||||
import com.raytheon.uf.common.dataplugin.PluginDataObject;
|
import com.raytheon.uf.common.dataplugin.PluginDataObject;
|
||||||
import com.raytheon.uf.common.serialization.ISerializableObject;
|
|
||||||
import com.raytheon.uf.viz.aviation.advisory.AdvisoryRecord;
|
import com.raytheon.uf.viz.aviation.advisory.AdvisoryRecord;
|
||||||
import com.raytheon.uf.viz.core.IGraphicsTarget.LineStyle;
|
import com.raytheon.uf.viz.core.IGraphicsTarget.LineStyle;
|
||||||
|
|
||||||
|
@ -34,17 +33,18 @@ import com.raytheon.uf.viz.core.IGraphicsTarget.LineStyle;
|
||||||
* <pre>
|
* <pre>
|
||||||
*
|
*
|
||||||
* SOFTWARE HISTORY
|
* SOFTWARE HISTORY
|
||||||
* Date Ticket# Engineer Description
|
* Date Ticket# Engineer Description
|
||||||
* ------------ ---------- ----------- --------------------------
|
* ------------- -------- ----------- --------------------------
|
||||||
* Oct 2, 2009 bsteffen Initial creation
|
* Oct 02, 2009 bsteffen Initial creation
|
||||||
|
* Oct 23, 2013 2491 bsteffen Remove ISerializableObject
|
||||||
|
*
|
||||||
*
|
*
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* @author bsteffen
|
* @author bsteffen
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractAdvisoryDataAdapter implements
|
public abstract class AbstractAdvisoryDataAdapter {
|
||||||
ISerializableObject {
|
|
||||||
|
|
||||||
public abstract Collection<AdvisoryRecord> convertRecords(
|
public abstract Collection<AdvisoryRecord> convertRecords(
|
||||||
Collection<PluginDataObject> records);
|
Collection<PluginDataObject> records);
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
com.raytheon.uf.viz.cloudheight.rsc.CloudHeightResourceData
|
|
|
@ -28,7 +28,6 @@ import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
|
||||||
import com.raytheon.uf.common.localization.PathManagerFactory;
|
import com.raytheon.uf.common.localization.PathManagerFactory;
|
||||||
import com.raytheon.uf.common.serialization.ISerializableObject;
|
|
||||||
import com.raytheon.uf.common.status.IUFStatusHandler;
|
import com.raytheon.uf.common.status.IUFStatusHandler;
|
||||||
import com.raytheon.uf.common.status.UFStatus;
|
import com.raytheon.uf.common.status.UFStatus;
|
||||||
import com.raytheon.uf.common.status.UFStatus.Priority;
|
import com.raytheon.uf.common.status.UFStatus.Priority;
|
||||||
|
@ -39,10 +38,12 @@ import com.raytheon.uf.common.status.UFStatus.Priority;
|
||||||
* <pre>
|
* <pre>
|
||||||
*
|
*
|
||||||
* SOFTWARE HISTORY
|
* SOFTWARE HISTORY
|
||||||
* Date Ticket# Engineer Description
|
* Date Ticket# Engineer Description
|
||||||
* ------------ ---------- ----------- --------------------------
|
* ------------- -------- ----------- --------------------------
|
||||||
* Dec 16, 2009 mschenke Initial creation
|
* Dec 16, 2009 mschenke Initial creation
|
||||||
* Jul 25, 2013 2190 mschenke Moved sounding configurations into popup skewt plugin
|
* Jul 25, 2013 2190 mschenke Moved sounding configurations into popup
|
||||||
|
* skewt plugin
|
||||||
|
* Oct 24, 2013 2491 bsteffen Remove ISerializableObject
|
||||||
*
|
*
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
@ -51,7 +52,7 @@ import com.raytheon.uf.common.status.UFStatus.Priority;
|
||||||
*/
|
*/
|
||||||
@XmlRootElement
|
@XmlRootElement
|
||||||
@XmlAccessorType(XmlAccessType.NONE)
|
@XmlAccessorType(XmlAccessType.NONE)
|
||||||
public class CloudHeightData implements ISerializableObject {
|
public class CloudHeightData {
|
||||||
|
|
||||||
private static final transient IUFStatusHandler statusHandler = UFStatus
|
private static final transient IUFStatusHandler statusHandler = UFStatus
|
||||||
.getHandler(CloudHeightData.class);
|
.getHandler(CloudHeightData.class);
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
com.raytheon.uf.viz.core.rsc.FirstAvailableResourceData
|
|
||||||
com.raytheon.uf.viz.core.rsc.tools.GenericToolsResourceData
|
|
|
@ -1,3 +0,0 @@
|
||||||
com.raytheon.uf.viz.d2d.core.map.D2DMapRenderableDisplay
|
|
||||||
com.raytheon.uf.viz.d2d.core.time.D2DTimeMatcher
|
|
||||||
com.raytheon.uf.viz.d2d.core.D2DLoadProperties
|
|
|
@ -27,7 +27,6 @@ import javax.xml.bind.annotation.XmlAttribute;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
import com.raytheon.uf.common.serialization.ISerializableObject;
|
|
||||||
import com.raytheon.uf.common.time.DataTime;
|
import com.raytheon.uf.common.time.DataTime;
|
||||||
import com.raytheon.uf.viz.core.comm.PerspectiveSpecificLoadProperties;
|
import com.raytheon.uf.viz.core.comm.PerspectiveSpecificLoadProperties;
|
||||||
import com.raytheon.uf.viz.d2d.core.time.LoadMode;
|
import com.raytheon.uf.viz.d2d.core.time.LoadMode;
|
||||||
|
@ -39,9 +38,11 @@ import com.raytheon.uf.viz.d2d.core.time.TimeMatchingConfiguration;
|
||||||
* <pre>
|
* <pre>
|
||||||
*
|
*
|
||||||
* SOFTWARE HISTORY
|
* SOFTWARE HISTORY
|
||||||
* Date Ticket# Engineer Description
|
* Date Ticket# Engineer Description
|
||||||
* ------------ ---------- ----------- --------------------------
|
* ------------- -------- ----------- --------------------------
|
||||||
* Jul 1, 2009 bgonzale Initial creation
|
* Jul 01, 2009 bgonzale Initial creation
|
||||||
|
* Oct 23, 2013 2491 bsteffen Remove ISerializableObject
|
||||||
|
*
|
||||||
*
|
*
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
@ -50,8 +51,7 @@ import com.raytheon.uf.viz.d2d.core.time.TimeMatchingConfiguration;
|
||||||
*/
|
*/
|
||||||
@XmlType(name = "d2dLoadProperties")
|
@XmlType(name = "d2dLoadProperties")
|
||||||
@XmlAccessorType(XmlAccessType.NONE)
|
@XmlAccessorType(XmlAccessType.NONE)
|
||||||
public class D2DLoadProperties extends PerspectiveSpecificLoadProperties
|
public class D2DLoadProperties extends PerspectiveSpecificLoadProperties {
|
||||||
implements ISerializableObject {
|
|
||||||
|
|
||||||
private transient TimeMatchingConfiguration timeConfig;
|
private transient TimeMatchingConfiguration timeConfig;
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
com.raytheon.uf.viz.preciprate.PrecipRateResourceData
|
|
|
@ -20,15 +20,16 @@
|
||||||
package com.raytheon.uf.viz.preciprate.xml;
|
package com.raytheon.uf.viz.preciprate.xml;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO Add Description
|
* Configuration file format for Precip Rate data.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
*
|
*
|
||||||
* SOFTWARE HISTORY
|
* SOFTWARE HISTORY
|
||||||
*
|
*
|
||||||
* Date Ticket# Engineer Description
|
* Date Ticket# Engineer Description
|
||||||
* ------------ ---------- ----------- --------------------------
|
* ------------- -------- ----------- --------------------------
|
||||||
* Jan 20, 2011 lvenable Initial creation
|
* Jan 20, 2011 lvenable Initial creation
|
||||||
|
* Oct 24, 2013 2491 bsteffen Remove ISerializableObject
|
||||||
*
|
*
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
@ -40,10 +41,8 @@ import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
|
||||||
import com.raytheon.uf.common.serialization.ISerializableObject;
|
|
||||||
|
|
||||||
@XmlAccessorType(XmlAccessType.NONE)
|
@XmlAccessorType(XmlAccessType.NONE)
|
||||||
public class PrecipRateXML implements ISerializableObject {
|
public class PrecipRateXML {
|
||||||
|
|
||||||
@XmlElement(name = "EnumID")
|
@XmlElement(name = "EnumID")
|
||||||
private String enumID;
|
private String enumID;
|
||||||
|
|
|
@ -27,8 +27,6 @@ import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlElements;
|
import javax.xml.bind.annotation.XmlElements;
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
|
||||||
import com.raytheon.uf.common.serialization.ISerializableObject;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Precip Rate Configuration analogous to legacy dhrParams.txt
|
* Precip Rate Configuration analogous to legacy dhrParams.txt
|
||||||
*
|
*
|
||||||
|
@ -36,9 +34,10 @@ import com.raytheon.uf.common.serialization.ISerializableObject;
|
||||||
*
|
*
|
||||||
* SOFTWARE HISTORY
|
* SOFTWARE HISTORY
|
||||||
*
|
*
|
||||||
* Date Ticket# Engineer Description
|
* Date Ticket# Engineer Description
|
||||||
* ------------ ---------- ----------- --------------------------
|
* ------------- -------- ----------- --------------------------
|
||||||
* Jan 18, 2011 6779 grichard Initial creation
|
* Jan 18, 2011 6779 grichard Initial creation
|
||||||
|
* Oct 24, 2013 2491 bsteffen Remove ISerializableObject
|
||||||
*
|
*
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
@ -48,7 +47,7 @@ import com.raytheon.uf.common.serialization.ISerializableObject;
|
||||||
|
|
||||||
@XmlRootElement(name = "ScanConfigPrecipRate")
|
@XmlRootElement(name = "ScanConfigPrecipRate")
|
||||||
@XmlAccessorType(XmlAccessType.NONE)
|
@XmlAccessorType(XmlAccessType.NONE)
|
||||||
public class SCANConfigPrecipRateXML implements ISerializableObject {
|
public class SCANConfigPrecipRateXML {
|
||||||
|
|
||||||
@XmlElements( { @XmlElement(name = "PrecipRate", type = PrecipRateXML.class) })
|
@XmlElements( { @XmlElement(name = "PrecipRate", type = PrecipRateXML.class) })
|
||||||
private ArrayList<PrecipRateXML> precipRates;
|
private ArrayList<PrecipRateXML> precipRates;
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
com.raytheon.uf.viz.xy.map.InsetMapRenderableDisplay
|
|
||||||
com.raytheon.uf.viz.xy.graph.XyGraphDescriptor
|
|
||||||
com.raytheon.uf.viz.xy.map.rsc.GraphResourceData
|
|
|
@ -26,7 +26,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
|
||||||
import org.geotools.referencing.crs.DefaultEngineeringCRS;
|
import org.geotools.referencing.crs.DefaultEngineeringCRS;
|
||||||
|
|
||||||
import com.raytheon.uf.common.serialization.ISerializableObject;
|
|
||||||
import com.raytheon.uf.viz.core.PixelExtent;
|
import com.raytheon.uf.viz.core.PixelExtent;
|
||||||
import com.raytheon.uf.viz.core.drawables.AbstractDescriptor;
|
import com.raytheon.uf.viz.core.drawables.AbstractDescriptor;
|
||||||
import com.raytheon.uf.viz.core.drawables.ResourcePair;
|
import com.raytheon.uf.viz.core.drawables.ResourcePair;
|
||||||
|
@ -43,9 +42,11 @@ import com.vividsolutions.jts.geom.Coordinate;
|
||||||
* <pre>
|
* <pre>
|
||||||
*
|
*
|
||||||
* SOFTWARE HISTORY
|
* SOFTWARE HISTORY
|
||||||
* Date Ticket# Engineer Description
|
* Date Ticket# Engineer Description
|
||||||
* ------------ ---------- ----------- --------------------------
|
* ------------- -------- ----------- --------------------------
|
||||||
* Sep 29, 2009 mschenke Initial creation
|
* Sep 29, 2009 mschenke Initial creation
|
||||||
|
* Oct 23, 2013 2491 bsteffen Remove ISerializableObject
|
||||||
|
*
|
||||||
*
|
*
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
@ -54,7 +55,7 @@ import com.vividsolutions.jts.geom.Coordinate;
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.NONE)
|
@XmlAccessorType(XmlAccessType.NONE)
|
||||||
public class XyGraphDescriptor extends AbstractDescriptor implements
|
public class XyGraphDescriptor extends AbstractDescriptor implements
|
||||||
RemoveListener, ISerializableObject {
|
RemoveListener {
|
||||||
|
|
||||||
protected int verticalFrameCount = 0;
|
protected int verticalFrameCount = 0;
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
com.raytheon.viz.core.graphing.GraphDescriptor
|
|
|
@ -26,7 +26,6 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
||||||
|
|
||||||
import org.geotools.referencing.crs.DefaultEngineeringCRS;
|
import org.geotools.referencing.crs.DefaultEngineeringCRS;
|
||||||
|
|
||||||
import com.raytheon.uf.common.serialization.ISerializableObject;
|
|
||||||
import com.raytheon.uf.common.serialization.adapters.CoordAdapter;
|
import com.raytheon.uf.common.serialization.adapters.CoordAdapter;
|
||||||
import com.raytheon.uf.viz.core.PixelExtent;
|
import com.raytheon.uf.viz.core.PixelExtent;
|
||||||
import com.raytheon.uf.viz.core.drawables.AbstractDescriptor;
|
import com.raytheon.uf.viz.core.drawables.AbstractDescriptor;
|
||||||
|
@ -37,10 +36,12 @@ import com.vividsolutions.jts.geom.Coordinate;
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* SOFTWARE HISTORY
|
* SOFTWARE HISTORY
|
||||||
* Date Ticket# Engineer Description
|
* Date Ticket# Engineer Description
|
||||||
* ------------ ---------- ----------- --------------------------
|
* ------------- -------- ----------- --------------------------
|
||||||
* Nov 5, 2007 njensen Initial creation.
|
* Nov 5, 2007 njensen Initial creation.
|
||||||
* Oct 22, 2009 #3348 bsteffen Moved getter/setters for numberOfFrames down to AbstractDescriptor
|
* Oct 22, 2009 3348 bsteffen Moved getter/setters for numberOfFrames
|
||||||
|
* down to AbstractDescriptor
|
||||||
|
* Oct 24, 2013 2491 bsteffen Remove ISerializableObject
|
||||||
*
|
*
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
@ -48,8 +49,7 @@ import com.vividsolutions.jts.geom.Coordinate;
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.NONE)
|
@XmlAccessorType(XmlAccessType.NONE)
|
||||||
public class GraphDescriptor extends AbstractDescriptor implements
|
public class GraphDescriptor extends AbstractDescriptor {
|
||||||
ISerializableObject {
|
|
||||||
|
|
||||||
protected double zoomLevel = 1.0f;
|
protected double zoomLevel = 1.0f;
|
||||||
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
com.raytheon.viz.core.rsc.BestResResourceData
|
|
||||||
com.raytheon.viz.core.rsc.BlendedResourceData
|
|
||||||
com.raytheon.viz.core.topo.TopoResourceData
|
|
|
@ -23,7 +23,6 @@ import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
|
||||||
import com.raytheon.uf.common.dataplugin.PluginDataObject;
|
import com.raytheon.uf.common.dataplugin.PluginDataObject;
|
||||||
import com.raytheon.uf.common.serialization.ISerializableObject;
|
|
||||||
import com.raytheon.uf.viz.core.rsc.AbstractRequestableResourceData;
|
import com.raytheon.uf.viz.core.rsc.AbstractRequestableResourceData;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -33,9 +32,11 @@ import com.raytheon.uf.viz.core.rsc.AbstractRequestableResourceData;
|
||||||
* <pre>
|
* <pre>
|
||||||
*
|
*
|
||||||
* SOFTWARE HISTORY
|
* SOFTWARE HISTORY
|
||||||
* Date Ticket# Engineer Description
|
* Date Ticket# Engineer Description
|
||||||
* ------------ ---------- ----------- --------------------------
|
* ------------- -------- ----------- --------------------------
|
||||||
* Mar 2, 2010 mnash Initial creation
|
* Mar 2, 2010 mnash Initial creation
|
||||||
|
* Oct 23, 2013 2491 bsteffen Remove ISerializableObject
|
||||||
|
*
|
||||||
*
|
*
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
@ -43,7 +44,7 @@ import com.raytheon.uf.viz.core.rsc.AbstractRequestableResourceData;
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.NONE)
|
@XmlAccessorType(XmlAccessType.NONE)
|
||||||
public abstract class AbstractSpatialEnabler implements ISerializableObject {
|
public abstract class AbstractSpatialEnabler {
|
||||||
|
|
||||||
public void enable(PluginDataObject d, AbstractRequestableResourceData arrd) {
|
public void enable(PluginDataObject d, AbstractRequestableResourceData arrd) {
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
com.raytheon.viz.pointdata.rsc.AdaptivePlotResourceData
|
|
||||||
com.raytheon.viz.pointdata.rsc.PlotResourceData
|
|
||||||
com.raytheon.viz.pointdata.rsc.MetarPrecipResourceData
|
|
||||||
com.raytheon.viz.pointdata.rsc.PlotBlendedResourceData
|
|
||||||
com.raytheon.viz.pointdata.PlotAlertParser
|
|
||||||
com.raytheon.viz.pointdata.rsc.retrieve.PointDataPlotInfoRetriever
|
|
||||||
com.raytheon.viz.pointdata.rsc.retrieve.FullDataPlotInfoRetriever
|
|
||||||
com.raytheon.viz.pointdata.rsc.retrieve.ScatterometerPlotInfoRetriever
|
|
|
@ -1,3 +1,22 @@
|
||||||
|
/**
|
||||||
|
* 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.pointdata.rsc.retrieve;
|
package com.raytheon.viz.pointdata.rsc.retrieve;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
@ -5,13 +24,34 @@ import java.util.HashMap;
|
||||||
import org.opengis.referencing.crs.CoordinateReferenceSystem;
|
import org.opengis.referencing.crs.CoordinateReferenceSystem;
|
||||||
|
|
||||||
import com.raytheon.uf.common.dataquery.requests.RequestConstraint;
|
import com.raytheon.uf.common.dataquery.requests.RequestConstraint;
|
||||||
import com.raytheon.uf.common.serialization.ISerializableObject;
|
|
||||||
import com.raytheon.uf.common.time.DataTime;
|
import com.raytheon.uf.common.time.DataTime;
|
||||||
import com.raytheon.uf.viz.core.exception.VizException;
|
import com.raytheon.uf.viz.core.exception.VizException;
|
||||||
import com.raytheon.uf.viz.core.rsc.IResourceDataChanged;
|
import com.raytheon.uf.viz.core.rsc.IResourceDataChanged;
|
||||||
|
import com.raytheon.viz.pointdata.PlotInfo;
|
||||||
|
import com.raytheon.viz.pointdata.rsc.PlotResource2;
|
||||||
import com.vividsolutions.jts.geom.Envelope;
|
import com.vividsolutions.jts.geom.Envelope;
|
||||||
|
|
||||||
public abstract class AbstractPlotInfoRetriever implements ISerializableObject {
|
/**
|
||||||
|
* Base class for all objects which can retrieve {@link PlotInfo} objects for
|
||||||
|
* use in {@link PlotResource2}. For most applications the
|
||||||
|
* {@link PointDataPlotInfoRetriever} should be used however other instances can
|
||||||
|
* provide more advanced features such as incremental loading or retrieving
|
||||||
|
* additional data.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
*
|
||||||
|
* SOFTWARE HISTORY
|
||||||
|
*
|
||||||
|
* Date Ticket# Engineer Description
|
||||||
|
* ------------- -------- ----------- --------------------------
|
||||||
|
* Oct 23, 2013 2491 bsteffen Remove ISerializableObject
|
||||||
|
*
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
* @author unknown
|
||||||
|
* @version 1.0
|
||||||
|
*/
|
||||||
|
public abstract class AbstractPlotInfoRetriever {
|
||||||
|
|
||||||
public abstract void getStations(IResourceDataChanged listener,
|
public abstract void getStations(IResourceDataChanged listener,
|
||||||
DataTime time, HashMap<String, RequestConstraint> metadataMap)
|
DataTime time, HashMap<String, RequestConstraint> metadataMap)
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
com.raytheon.viz.radar.rsc.mosaic.RadarMosaicResourceData
|
|
||||||
com.raytheon.viz.radar.rsc.RadarResourceData
|
|
||||||
com.raytheon.viz.radar.rsc.RadarTextResourceData
|
|
||||||
com.raytheon.viz.radar.RadarSpatialEnabler
|
|
||||||
com.raytheon.viz.radar.ui.xy.RadarGraphDescriptor
|
|
||||||
com.raytheon.viz.radar.ui.xy.RadarGraphDisplay
|
|
||||||
com.raytheon.viz.radar.ui.xy.RadarXYDescriptor
|
|
||||||
com.raytheon.viz.radar.ui.xy.RadarXYDisplay
|
|
||||||
com.raytheon.viz.radar.util.VwpAlertParser
|
|
||||||
com.raytheon.viz.radar.util.RadarPlotInfoRetriever
|
|
||||||
com.raytheon.viz.radar.rsc.BlendedRadarResourceData
|
|
||||||
com.raytheon.viz.radar.RadarProductBrowserDataDefinition
|
|
||||||
com.raytheon.viz.radar.rsc.mosaic.RadarMosaicResourceFactory
|
|
|
@ -33,7 +33,6 @@ import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
|
||||||
import com.raytheon.uf.common.localization.IPathManager;
|
import com.raytheon.uf.common.localization.IPathManager;
|
||||||
import com.raytheon.uf.common.localization.PathManagerFactory;
|
import com.raytheon.uf.common.localization.PathManagerFactory;
|
||||||
import com.raytheon.uf.common.serialization.ISerializableObject;
|
|
||||||
import com.raytheon.uf.common.status.IUFStatusHandler;
|
import com.raytheon.uf.common.status.IUFStatusHandler;
|
||||||
import com.raytheon.uf.common.status.UFStatus;
|
import com.raytheon.uf.common.status.UFStatus;
|
||||||
import com.raytheon.uf.common.status.UFStatus.Priority;
|
import com.raytheon.uf.common.status.UFStatus.Priority;
|
||||||
|
@ -44,9 +43,10 @@ import com.raytheon.uf.common.status.UFStatus.Priority;
|
||||||
* <pre>
|
* <pre>
|
||||||
*
|
*
|
||||||
* SOFTWARE HISTORY
|
* SOFTWARE HISTORY
|
||||||
* Date Ticket# Engineer Description
|
* Date Ticket# Engineer Description
|
||||||
* ------------ ---------- ----------- --------------------------
|
* ------------- -------- ----------- --------------------------
|
||||||
* Sep 3, 2010 bsteffen Initial creation
|
* Sep 3, 2010 bsteffen Initial creation
|
||||||
|
* Oct 24, 2013 2491 bsteffen Remove ISerializableObject
|
||||||
*
|
*
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
@ -56,7 +56,7 @@ import com.raytheon.uf.common.status.UFStatus.Priority;
|
||||||
|
|
||||||
@XmlAccessorType(XmlAccessType.NONE)
|
@XmlAccessorType(XmlAccessType.NONE)
|
||||||
@XmlRootElement(name = "upperTextSet")
|
@XmlRootElement(name = "upperTextSet")
|
||||||
public class UpperTextSet implements ISerializableObject {
|
public class UpperTextSet {
|
||||||
private static final transient IUFStatusHandler statusHandler = UFStatus
|
private static final transient IUFStatusHandler statusHandler = UFStatus
|
||||||
.getHandler(UpperTextSet.class);
|
.getHandler(UpperTextSet.class);
|
||||||
|
|
||||||
|
|
|
@ -24,19 +24,19 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlAttribute;
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
|
||||||
import com.raytheon.uf.common.serialization.ISerializableObject;
|
|
||||||
import com.raytheon.uf.common.serialization.annotations.DynamicSerialize;
|
import com.raytheon.uf.common.serialization.annotations.DynamicSerialize;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO Add Description
|
* Provides XML format for a dmd attribute in the sample text for dmd products.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
*
|
*
|
||||||
* SOFTWARE HISTORY
|
* SOFTWARE HISTORY
|
||||||
*
|
*
|
||||||
* Date Ticket# Engineer Description
|
* Date Ticket# Engineer Description
|
||||||
* ------------ ---------- ----------- --------------------------
|
* ------------- -------- ----------- --------------------------
|
||||||
* Jun 6, 2011 jdortiz Initial creation
|
* Jun 06, 2011 jdortiz Initial creation
|
||||||
|
* Oct 24, 2013 2491 bsteffen Remove ISerializableObject
|
||||||
*
|
*
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
@ -46,7 +46,7 @@ import com.raytheon.uf.common.serialization.annotations.DynamicSerialize;
|
||||||
@XmlRootElement(name = "attribute")
|
@XmlRootElement(name = "attribute")
|
||||||
@XmlAccessorType(XmlAccessType.NONE)
|
@XmlAccessorType(XmlAccessType.NONE)
|
||||||
@DynamicSerialize
|
@DynamicSerialize
|
||||||
public class DmdAttribute implements ISerializableObject {
|
public class DmdAttribute {
|
||||||
|
|
||||||
@XmlAttribute(name = "value")
|
@XmlAttribute(name = "value")
|
||||||
private String value;
|
private String value;
|
||||||
|
|
|
@ -24,7 +24,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
|
||||||
import com.raytheon.uf.common.serialization.ISerializableObject;
|
|
||||||
import com.raytheon.uf.common.serialization.annotations.DynamicSerialize;
|
import com.raytheon.uf.common.serialization.annotations.DynamicSerialize;
|
||||||
import com.raytheon.uf.common.serialization.annotations.DynamicSerializeElement;
|
import com.raytheon.uf.common.serialization.annotations.DynamicSerializeElement;
|
||||||
|
|
||||||
|
@ -36,9 +35,10 @@ import com.raytheon.uf.common.serialization.annotations.DynamicSerializeElement;
|
||||||
*
|
*
|
||||||
* SOFTWARE HISTORY
|
* SOFTWARE HISTORY
|
||||||
*
|
*
|
||||||
* Date Ticket# Engineer Description
|
* Date Ticket# Engineer Description
|
||||||
* ------------ ---------- ----------- --------------------------
|
* ------------- -------- ----------- --------------------------
|
||||||
* Jun 6, 2011 jdortiz Initial creation
|
* Jun 06, 2011 jdortiz Initial creation
|
||||||
|
* Oct 24, 2013 2491 bsteffen Remove ISerializableObject
|
||||||
*
|
*
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
@ -49,7 +49,7 @@ import com.raytheon.uf.common.serialization.annotations.DynamicSerializeElement;
|
||||||
@XmlRootElement(name = "dmdModifier")
|
@XmlRootElement(name = "dmdModifier")
|
||||||
@XmlAccessorType(XmlAccessType.NONE)
|
@XmlAccessorType(XmlAccessType.NONE)
|
||||||
@DynamicSerialize
|
@DynamicSerialize
|
||||||
public class DmdModifier implements ISerializableObject {
|
public class DmdModifier {
|
||||||
|
|
||||||
@DynamicSerializeElement
|
@DynamicSerializeElement
|
||||||
@XmlElement(name = "attribute", nillable = false)
|
@XmlElement(name = "attribute", nillable = false)
|
||||||
|
|
Loading…
Add table
Reference in a new issue