mediawiki-extensions-Visual.../modules/ve2/dm/nodes/ve.dm.DocumentNode.js
Trevor Parscal f6864b0c04 Changed use of "factory" to "nodeFactory" to make way for other kinds of factories
Change-Id: I96db0f28bb220f1c3b23990824e9523278cb8f9b
2012-05-31 15:20:58 -07:00

39 lines
792 B
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 = {
'isWrapped': false,
'isContent': false,
'canContainContent': false,
'childNodeTypes': null,
'parentNodeTypes': []
};
/* Registration */
ve.dm.nodeFactory.register( 'document', ve.dm.DocumentNode );
/* Inheritance */
ve.extendClass( ve.dm.DocumentNode, ve.dm.BranchNode );