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
33 lines (29 loc) • 709 B
JavaScript
import Collection from './Collection'
/**
* @see http://download.oracle.com/javase/6/docs/api/java/util/List.html
*
* @extends {javascript.util.Collection}
* @constructor
* @private
*/
export default class List extends Collection {
/**
* Returns the element at the specified position in this list.
* @param {number} index
* @return {Object}
*/
get () { }
/**
* Replaces the element at the specified position in this list with the
* specified element (optional operation).
* @param {number} index
* @param {Object} e
* @return {Object}
*/
set () { }
/**
* Returns true if this collection contains no elements.
* @return {boolean}
*/
isEmpty () { }
}