UNPKG

node-red-contrib-tak-registration

Version:

A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK

24 lines (23 loc) 538 B
import Boundable from './Boundable' import Serializable from '../../../../../java/io/Serializable' export default class ItemBoundable { constructor() { ItemBoundable.constructor_.apply(this, arguments) } static constructor_() { this._bounds = null this._item = null const bounds = arguments[0], item = arguments[1] this._bounds = bounds this._item = item } getItem() { return this._item } getBounds() { return this._bounds } get interfaces_() { return [Boundable, Serializable] } }