/** * 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', length, attributes ); }; /* Static Members */ 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 );