Merge "Omaha #3185 fix setEnvelope() typo" into omaha_14.4.1

Former-commit-id: ad167f3d98 [formerly bc3d6cb1cf [formerly 0b9e89261efe7ea861c737d6a7e6a888de1305a7]]
Former-commit-id: bc3d6cb1cf
Former-commit-id: 77348b5966
This commit is contained in:
Nate Jensen 2014-08-13 13:58:55 -05:00 committed by Gerrit Code Review
commit 80bc933b83

View file

@ -31,6 +31,7 @@
# Feb 14, 2013 1614 bsteffen Refactor data access framework
# to use single request.
# Jul 22, 2014 3185 njensen Fix getters to return python objs
# Aug 13, 2014 3185 njensen Fix setEnvelope() typo
#
#
#
@ -71,7 +72,7 @@ class JDataRequest(IDataRequest, JUtil.JavaWrapperClass):
from com.vividsolutions.jts.geom import Envelope
bounds = env.bounds
jenv = Envelope(bounds[0], bounds[2], bounds[1], bounds[3])
self.jobj.setEnvelope(bounds)
self.jobj.setEnvelope(jenv)
def setLocationNames(self, *args):
from java.lang import String as JavaString