mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-24 14:57:57 -05:00
29 lines
610 B
Python
29 lines
610 B
Python
|
#
|
||
|
# Adapter for java.awt.Point
|
||
|
#
|
||
|
#
|
||
|
# SOFTWARE HISTORY
|
||
|
#
|
||
|
# Date Ticket# Engineer Description
|
||
|
# ------------ ---------- ----------- --------------------------
|
||
|
# 08/31/10 njensen Initial Creation.
|
||
|
#
|
||
|
|
||
|
from dynamicserialize.dstypes.java.awt import Point
|
||
|
|
||
|
ClassAdapter = 'java.awt.Point'
|
||
|
|
||
|
|
||
|
def serialize(context, point):
|
||
|
context.writeI32(point.getX())
|
||
|
context.writeI32(point.getY())
|
||
|
|
||
|
|
||
|
def deserialize(context):
|
||
|
x = context.readI32()
|
||
|
y = context.readI32()
|
||
|
point = Point()
|
||
|
point.setX(x)
|
||
|
point.setY(y)
|
||
|
return point
|