mediawiki-extensions-Visual.../modules/ve2/dm/nodes/ve.dm.ListNode.js
Trevor Parscal 9b2098cb56 Added documentation to static rules on ve.dm nodes
They are used by ve.dm.factory so this might make it easier for people to understand what's going on.

Change-Id: I490627e3bfc55ca9c96fdc4f5d047737b6a3db8c
2012-04-30 15:47:54 -07:00

34 lines
718 B
JavaScript

/**
* Data model node for a list.
*
* @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.ListNode = function( children, attributes ) {
// Inheritance
ve.dm.BranchNode.call( this, 'list', children, attributes );
};
/* Static Members */
/**
* @see ve.dm.NodeFactory
*/
ve.dm.ListNode.rules = {
'canHaveChildren': true,
'canHaveGrandchildren': true,
'childNodeTypes': ['listItem'],
'parentNodeTypes': null
};
/* Registration */
ve.dm.factory.register( 'list', ve.dm.ListNode );
/* Inheritance */
ve.extendClass( ve.dm.ListNode, ve.dm.BranchNode );