mediawiki-extensions-Visual.../modules/ve2/dm/nodes/ve.dm.HeadingNode.js
Trevor Parscal 35af704173 Added initial ce nodes
Change-Id: Ibdcb4502a8fdc5b1a6c22ae0e9c42c86b3a7d4dc
2012-04-30 17:36:22 -07:00

34 lines
729 B
JavaScript

/**
* DataModel node for a heading.
*
* @class
* @constructor
* @extends {ve.dm.BranchNode}
* @param {ve.dm.LeafNode[]} [children] Child nodes to attach
* @param {Object} [attributes] Reference to map of attribute key/value pairs
*/
ve.dm.HeadingNode = function( children, attributes ) {
// Inheritance
ve.dm.BranchNode.call( this, 'heading', children, attributes );
};
/* Static Members */
/**
* @see ve.dm.NodeFactory
*/
ve.dm.HeadingNode.rules = {
'canHaveChildren': true,
'canHaveGrandchildren': false,
'childNodeTypes': null,
'parentNodeTypes': null
};
/* Registration */
ve.dm.factory.register( 'heading', ve.dm.HeadingNode );
/* Inheritance */
ve.extendClass( ve.dm.HeadingNode, ve.dm.BranchNode );