mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
1d94af144a
* Also renamed convertDomElement to replaceDomWrapper in ve.ce.BranchNode * Also added extra documentation for node rules Change-Id: Ia8ac6be34e2b021be96974ac1ba9119bd8077d60
50 lines
1 KiB
JavaScript
50 lines
1 KiB
JavaScript
/**
|
|
* DataModel node for a document.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.dm.BranchNode}
|
|
* @param {ve.dm.BranchNode[]} [children] Child nodes to attach
|
|
* @param {Object} [attributes] Reference to map of attribute key/value pairs
|
|
*/
|
|
ve.dm.DocumentNode = function( children, attributes ) {
|
|
// Inheritance
|
|
ve.dm.BranchNode.call( this, 'document', children, attributes );
|
|
};
|
|
|
|
/* Static Members */
|
|
|
|
/**
|
|
* Node rules.
|
|
*
|
|
* @see ve.dm.NodeFactory
|
|
* @static
|
|
* @member
|
|
*/
|
|
ve.dm.DocumentNode.rules = {
|
|
'canHaveChildren': true,
|
|
'canHaveGrandchildren': true,
|
|
'childNodeTypes': null,
|
|
'parentNodeTypes': []
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Gets the outer length, which for a document node is the same as the inner length.
|
|
*
|
|
* @method
|
|
* @returns {Integer} Length of the entire node
|
|
*/
|
|
ve.dm.DocumentNode.prototype.getOuterLength = function() {
|
|
return this.length;
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.factory.register( 'document', ve.dm.DocumentNode );
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.dm.DocumentNode, ve.dm.BranchNode );
|