2012-05-04 18:56:32 +00:00
|
|
|
/**
|
|
|
|
* DataModel node for a definition 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.DefinitionListNode = function( children, attributes ) {
|
|
|
|
// Inheritance
|
|
|
|
ve.dm.BranchNode.call( this, 'definitionList', children, attributes );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Static Members */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Node rules.
|
|
|
|
*
|
|
|
|
* @see ve.dm.NodeFactory
|
|
|
|
* @static
|
|
|
|
* @member
|
|
|
|
*/
|
|
|
|
ve.dm.DefinitionListNode.rules = {
|
|
|
|
'canHaveChildren': true,
|
|
|
|
'canHaveGrandchildren': true,
|
2012-05-07 19:00:07 +00:00
|
|
|
'isWrapped': true,
|
2012-05-04 18:56:32 +00:00
|
|
|
'childNodeTypes': ['definitionListItem'],
|
|
|
|
'parentNodeTypes': null
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.dm.factory.register( 'definitionList', ve.dm.DefinitionListNode );
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.extendClass( ve.dm.DefinitionListNode, ve.dm.BranchNode );
|