mediawiki-extensions-Visual.../modules/ve2/dm/nodes/ve.dm.AlienNode.js
Trevor Parscal 9b2098cb56 Added documentation to static rules on ve.dm nodes
They are used by ve.dm.factory so this might make it easier for people to understand what's going on.

Change-Id: I490627e3bfc55ca9c96fdc4f5d047737b6a3db8c
2012-04-30 15:47:54 -07:00

34 lines
705 B
JavaScript

/**
* Data model node for a document.
*
* @class
* @constructor
* @extends {ve.dm.LeafNode}
* @param {Integer} [length] Length of content data in document
* @param {Object} [attributes] Reference to map of attribute key/value pairs
*/
ve.dm.AlienNode = function( length, attributes ) {
// Inheritance
ve.dm.LeafNode.call( this, 'alien', 0, attributes );
};
/* Static Members */
/**
* @see ve.dm.NodeFactory
*/
ve.dm.AlienNode.rules = {
'canHaveChildren': false,
'canHaveGrandchildren': false,
'childNodeTypes': [],
'parentNodeTypes': null
};
/* Registration */
ve.dm.factory.register( 'alien', ve.dm.AlienNode );
/* Inheritance */
ve.extendClass( ve.dm.AlienNode, ve.dm.LeafNode );