/** * DataModel node for an alien inline node. * * @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.AlienInline = function( length, attributes ) { // Inheritance ve.dm.LeafNode.call( this, 'alienInline', 0, attributes ); }; /* Static Members */ /** * Node rules. * * @see ve.dm.NodeFactory * @static * @member */ ve.dm.AlienInline.rules = { 'isWrapped': true, 'isContent': true, 'canContainContent': false, 'childNodeTypes': [], 'parentNodeTypes': null }; /* Registration */ ve.dm.factory.register( 'alienInline', ve.dm.AlienInline ); /* Inheritance */ ve.extendClass( ve.dm.AlienInline, ve.dm.LeafNode );