mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.ParagraphNode.js
Catrope 51f4b4be54 Convert node rules to static properties
Change-Id: If7d0159e984d9ccb4d5c31effb62bb9612260fda
2013-01-18 14:51:40 -08:00

45 lines
1.1 KiB
JavaScript

/*!
* VisualEditor DataModel ParagraphNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel paragraph node.
*
* @class
* @extends ve.dm.BranchNode
* @constructor
* @param {ve.dm.LeafNode[]} [children] Child nodes to attach
* @param {Object} [element] Reference to element in linear model
*/
ve.dm.ParagraphNode = function VeDmParagraphNode( children, element ) {
// Parent constructor
ve.dm.BranchNode.call( this, 'paragraph', children, element );
};
/* Inheritance */
ve.inheritClass( ve.dm.ParagraphNode, ve.dm.BranchNode );
/* Static Properties */
ve.dm.ParagraphNode.static.name = 'paragraph';
ve.dm.ParagraphNode.static.canContainContent = true;
ve.dm.ParagraphNode.static.matchTagNames = [ 'p' ];
ve.dm.ParagraphNode.static.toDataElement = function () {
return { 'type': 'paragraph' };
};
ve.dm.ParagraphNode.static.toDomElement = function () {
return document.createElement( 'p' );
};
/* Registration */
ve.dm.nodeFactory.register( 'paragraph', ve.dm.ParagraphNode );