mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.DocumentNode.js
Trevor Parscal 255ce870e2 Puttin' em white-spacers where they aught'a be
function() -> function ()
){ -> ) {

Change-Id: I20a85fcf79d7aec64f7f2559e84c0279550d4eea
2012-08-06 18:52:19 -07:00

51 lines
1.1 KiB
JavaScript

/**
* VisualEditor data model DocumentNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* 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 = {
'isWrapped': false,
'isContent': false,
'canContainContent': false,
'childNodeTypes': null,
'parentNodeTypes': []
};
// This is a special node, no converter registration is required
ve.dm.DocumentNode.converters = null;
/* Registration */
ve.dm.nodeFactory.register( 'document', ve.dm.DocumentNode );
// This is a special node, no converter registration is required
/* Inheritance */
ve.extendClass( ve.dm.DocumentNode, ve.dm.BranchNode );