- 1 :
/**
- 2 :
* Base class for graph nodes.
- 3 :
*
- 4 :
* @author {@link https://github.com/Mugen87|Mugen87}
- 5 :
*/
- 6 :
class Node {
- 7 :
- 8 :
/**
- 9 :
* Constructs a new node.
- 10 :
*
- 11 :
* @param {Number} index - The unique index of this node.
- 12 :
*/
- 13 :
constructor( index = - 1 ) {
- 14 :
- 15 :
/**
- 16 :
* The unique index of this node. The default value *-1* means invalid index.
- 17 :
* @type {Number}
- 18 :
* @default -1
- 19 :
*/
- 20 :
this.index = index;
- 21 :
- 22 :
}
- 23 :
- 24 :
/**
- 25 :
* Transforms this instance into a JSON object.
- 26 :
*
- 27 :
* @return {Object} The JSON object.
- 28 :
*/
- 29 :
toJSON() {
- 30 :
- 31 :
return {
- 32 :
type: this.constructor.name,
- 33 :
index: this.index
- 34 :
};
- 35 :
- 36 :
}
- 37 :
- 38 :
/**
- 39 :
* Restores this instance from the given JSON object.
- 40 :
*
- 41 :
* @param {Object} json - The JSON object.
- 42 :
* @return {Node} A reference to this node.
- 43 :
*/
- 44 :
fromJSON( json ) {
- 45 :
- 46 :
this.index = json.index;
- 47 :
return this;
- 48 :
- 49 :
}
- 50 :
- 51 :
}
- 52 :
- 53 :
export { Node };