| string | type | Event type, must be declared when class is installed. |
| ... | more | Zero or more arguments. |
| JX.Event | The event object which was dispatched to listeners. The main use of this is to test whether any listeners prevented the event. |
| string | type | Type of event to listen for. |
| function | callback | Function to call when this event occurs. |
| object | A reference to the installed listener. You can later remove the listener by calling this object's remove() method. |
| Event | event | Native event for dispatch. |
| :JX.Event | Dispatched :JX.Event. |
| :JX.Event | proxy | Event to dispatch. |
| :JX.Event | Returns the event argument. |
| bool | True if the event was stopped or prevented by another handler. |
| :JX.Event|null | Event which is currently being dispatched, or null if there is no active dispatch. |
This method is not documented.
| int | block | The datablock to merge data into. |
| dict | data | Dictionary of metadata. |
| Node | node | Node to test. |
| string | sigil | Sigil to check for. |
| bool | True if the node has the sigil. |
| Node | node | Node to add the sigil to. |
| string | sigil | Sigil to name the node with. |
| Node | node | Node from which to retrieve data. |
| object | Data attached to the node. If no data has been attached to the node yet, an empty object will be returned, but subsequent calls to this method will always retrieve the same object. |
| Node | node | Node which data should be attached to. |
| object | data | Data to add to the node's metadata. |
| object | Data attached to the node that is returned by JX.Stratcom.getData(). |
This method is not documented.