Issue #2491 Remove ISerializableObject references in gfe and mpe viz plugins.

Former-commit-id: e796e01586 [formerly 3b68ce8d72] [formerly 2a83b45f93] [formerly e796e01586 [formerly 3b68ce8d72] [formerly 2a83b45f93] [formerly 4c03fc93f1 [formerly 2a83b45f93 [formerly f74c39d591d10748f7e66c15c80390389ab5ec25]]]]
Former-commit-id: 4c03fc93f1
Former-commit-id: 694511af94 [formerly 4eea088717] [formerly ea40a4ab707d0769a72c89593d2b1a20c48d84a7 [formerly fbdcadb456]]
Former-commit-id: 122ec98ee5a18fcf8773f9c00abd54bcb37bbc42 [formerly 5645da0b45]
Former-commit-id: ddd58aa99c
This commit is contained in:
Ben Steffensmeier 2013-10-25 14:57:33 -05:00
parent e95a9d9144
commit 20d9922f17
7 changed files with 73 additions and 51 deletions

View file

@ -1,7 +0,0 @@
com.raytheon.viz.gfe.core.GFEMapRenderableDisplay
com.raytheon.viz.gfe.core.GFETimeMatcher
com.raytheon.viz.gfe.core.GFEIntervalTimeMatcher
com.raytheon.viz.gfe.rsc.GFELegendResourceData
com.raytheon.viz.gfe.rsc.GFEResourceData
com.raytheon.uf.common.site.xml.AdjacentWfoXML
com.raytheon.uf.common.site.xml.CwaXML

View file

@ -1,5 +0,0 @@
com.raytheon.viz.mpe.ui.rsc.MPERadarRingOverlayResourceData
com.raytheon.viz.mpe.ui.displays.MPEMapRenderableDisplay
com.raytheon.viz.mpe.ui.displays.MPETimeMatcher
com.raytheon.viz.mpe.ui.rsc.RadarGageOverlayRscData
com.raytheon.viz.mpe.ui.rsc.MPEFieldResourceData

View file

@ -34,13 +34,14 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.raytheon.uf.common.serialization.ISerializableObject;
/**
* <p>Java class for gageTableColumnData complex type.
* <p>
* Java class for gageTableColumnData complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="gageTableColumnData">
@ -56,7 +57,18 @@ import com.raytheon.uf.common.serialization.ISerializableObject;
* &lt;/complexType>
* </pre>
*
* <pre>
*
* SOFTWARE HISTORY
*
* Date Ticket# Engineer Description
* ------------- -------- ----------- --------------------------
* Oct 23, 2013 2491 bsteffen Remove ISerializableObject
*
* </pre>
*
* @author bsteffen
* @version 1.0
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "gageTableColumnData", propOrder = {
@ -64,7 +76,7 @@ import com.raytheon.uf.common.serialization.ISerializableObject;
"width",
"sort"
})
public class GageTableColumnData implements ISerializableObject {
public class GageTableColumnData {
@XmlElement(required = true)
protected String name;

View file

@ -37,13 +37,14 @@ import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import com.raytheon.uf.common.serialization.ISerializableObject;
/**
* <p>Java class for gageTableSettings complex type.
* <p>
* Java class for gageTableSettings complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="gageTableSettings">
@ -57,14 +58,25 @@ import com.raytheon.uf.common.serialization.ISerializableObject;
* &lt;/complexType>
* </pre>
*
* <pre>
*
* SOFTWARE HISTORY
*
* Date Ticket# Engineer Description
* ------------- -------- ----------- --------------------------
* Oct 23, 2013 2491 bsteffen Remove ISerializableObject
*
* </pre>
*
* @author bsteffen
* @version 1.0
*/
@XmlRootElement(name = "tableSettings")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "gageTableSettings", propOrder = {
"column"
})
public class GageTableSettings implements ISerializableObject {
public class GageTableSettings {
@XmlElements( { @XmlElement(name = "column", type = GageTableColumnData.class) })
protected List<GageTableColumnData> column;

View file

@ -34,13 +34,14 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import com.raytheon.uf.common.serialization.ISerializableObject;
/**
* <p>Java class for gageTableSortType complex type.
* <p>
* Java class for gageTableSortType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="gageTableSortType">
@ -53,11 +54,22 @@ import com.raytheon.uf.common.serialization.ISerializableObject;
* &lt;/complexType>
* </pre>
*
* <pre>
*
* SOFTWARE HISTORY
*
* Date Ticket# Engineer Description
* ------------- -------- ----------- --------------------------
* Oct 23, 2013 2491 bsteffen Remove ISerializableObject
*
* </pre>
*
* @author bsteffen
* @version 1.0
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "gageTableSortType")
public class GageTableSortType implements ISerializableObject {
public class GageTableSortType {
@XmlAttribute(required = true)
protected BigInteger order;

View file

@ -27,28 +27,27 @@ import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlRootElement;
import com.raytheon.uf.common.serialization.ISerializableObject;
/**
* TODO Add Description
* XML format for a list of {@link CwaXML}.
*
* <pre>
*
*
* SOFTWARE HISTORY
*
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* Dec 22, 2009 mpduff Initial creation
*
*
* Date Ticket# Engineer Description
* ------------- -------- ----------- --------------------------
* Dec 22, 2009 mpduff Initial creation
* Oct 24, 2013 2491 bsteffen Remove ISerializableObject
*
* </pre>
*
*
* @author mpduff
* @version 1.0
* @version 1.0
*/
@XmlRootElement(name = "adjacentWFO")
@XmlAccessorType(XmlAccessType.NONE)
public class AdjacentWfoXML implements ISerializableObject{
public class AdjacentWfoXML {
@XmlElements( { @XmlElement(name = "cwa", type = CwaXML.class) })
private ArrayList<CwaXML> areaIds;

View file

@ -27,26 +27,25 @@ import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import com.raytheon.uf.common.serialization.ISerializableObject;
/**
* TODO Add Description
* Xml format of a cwa including its id and the ids of adjacent cwas.
*
* <pre>
*
*
* SOFTWARE HISTORY
*
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* Dec 22, 2009 mpduff Initial creation
*
*
* Date Ticket# Engineer Description
* ------------- -------- ----------- --------------------------
* Dec 22, 2009 mpduff Initial creation
* Oct 24, 2013 2491 bsteffen Remove ISerializableObject
*
* </pre>
*
*
* @author mpduff
* @version 1.0
* @version 1.0
*/
@XmlAccessorType(XmlAccessType.NONE)
public class CwaXML implements ISerializableObject {
public class CwaXML {
@XmlAttribute(name = "id")
private String id;