mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 22:57:56 -05:00
Set/get methods for envelope in GetGeometryDataRequest.py
This commit is contained in:
parent
d7fa8dc30a
commit
336b8d1623
1 changed files with 9 additions and 5 deletions
|
@ -1,6 +1,3 @@
|
||||||
##
|
|
||||||
##
|
|
||||||
|
|
||||||
# File auto-generated against equivalent DynamicSerialize Java class
|
# File auto-generated against equivalent DynamicSerialize Java class
|
||||||
# and then modified post-generation to make it sub class
|
# and then modified post-generation to make it sub class
|
||||||
# AbstractDataAccessRequest.
|
# AbstractDataAccessRequest.
|
||||||
|
@ -10,18 +7,25 @@
|
||||||
# Date Ticket# Engineer Description
|
# Date Ticket# Engineer Description
|
||||||
# ------------ ---------- ----------- --------------------------
|
# ------------ ---------- ----------- --------------------------
|
||||||
# 05/28/13 #2023 dgilling Initial Creation.
|
# 05/28/13 #2023 dgilling Initial Creation.
|
||||||
|
# 10/14/18 mjames@ucar Set/get methods for envelope
|
||||||
#
|
#
|
||||||
#
|
|
||||||
|
|
||||||
|
|
||||||
from dynamicserialize.dstypes.com.raytheon.uf.common.dataaccess.request import AbstractDataAccessRequest
|
from dynamicserialize.dstypes.com.raytheon.uf.common.dataaccess.request import AbstractDataAccessRequest
|
||||||
|
|
||||||
|
|
||||||
class GetGeometryDataRequest(AbstractDataAccessRequest):
|
class GetGeometryDataRequest(AbstractDataAccessRequest):
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(GetGeometryDataRequest, self).__init__()
|
super(GetGeometryDataRequest, self).__init__()
|
||||||
self.requestedTimes = None
|
self.requestedTimes = None
|
||||||
self.requestedPeriod = None
|
self.requestedPeriod = None
|
||||||
|
self.envelope = None
|
||||||
|
|
||||||
|
def getEnvelope(self):
|
||||||
|
return self.envelope
|
||||||
|
|
||||||
|
def setEnvelope(self, envelope):
|
||||||
|
self.envelope = envelope
|
||||||
|
|
||||||
def getRequestedTimes(self):
|
def getRequestedTimes(self):
|
||||||
return self.requestedTimes
|
return self.requestedTimes
|
||||||
|
|
Loading…
Add table
Reference in a new issue