Issue #2491 Remove ISerializableObject references in gfe and mpe viz plugins.
Former-commit-id:3b68ce8d72
[formerly2a83b45f93
] [formerly4c03fc93f1
[formerly f74c39d591d10748f7e66c15c80390389ab5ec25]] Former-commit-id:4c03fc93f1
Former-commit-id:fbdcadb456
This commit is contained in:
parent
b511177fa1
commit
4eea088717
7 changed files with 73 additions and 51 deletions
|
@ -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
|
|
@ -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
|
|
@ -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>
|
||||
* <complexType name="gageTableColumnData">
|
||||
|
@ -56,7 +57,18 @@ import com.raytheon.uf.common.serialization.ISerializableObject;
|
|||
* </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;
|
||||
|
|
|
@ -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>
|
||||
* <complexType name="gageTableSettings">
|
||||
|
@ -57,14 +58,25 @@ import com.raytheon.uf.common.serialization.ISerializableObject;
|
|||
* </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;
|
||||
|
|
|
@ -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>
|
||||
* <complexType name="gageTableSortType">
|
||||
|
@ -53,11 +54,22 @@ import com.raytheon.uf.common.serialization.ISerializableObject;
|
|||
* </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;
|
||||
|
|
|
@ -27,18 +27,17 @@ 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
|
||||
* Oct 24, 2013 2491 bsteffen Remove ISerializableObject
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
|
@ -48,7 +47,7 @@ import com.raytheon.uf.common.serialization.ISerializableObject;
|
|||
|
||||
@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;
|
||||
|
||||
|
|
|
@ -27,18 +27,17 @@ 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
|
||||
* Oct 24, 2013 2491 bsteffen Remove ISerializableObject
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
|
@ -46,7 +45,7 @@ import com.raytheon.uf.common.serialization.ISerializableObject;
|
|||
* @version 1.0
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.NONE)
|
||||
public class CwaXML implements ISerializableObject {
|
||||
public class CwaXML {
|
||||
@XmlAttribute(name = "id")
|
||||
private String id;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue