mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.CenterNode.js
Catrope 819b3ded33 Move matching code from AnnotationFactory to ModelRegistry
ModelRegistry registers both annotations and nodes, and performs
matching on both at the same time. It also registers annotations with
the AnnotationFactory, and nodes with the NodeFactory.

Change-Id: I5e68e506a0e573cc0afe6304ccea058ffc20d1c8
2013-01-22 15:51:37 -08:00

43 lines
1,019 B
JavaScript

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