mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.TextNode.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

38 lines
786 B
JavaScript

/*!
* VisualEditor DataModel TextNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel text node.
*
* @class
* @extends ve.dm.LeafNode
* @constructor
* @param {number} [length] Length of content data in document
*/
ve.dm.TextNode = function VeDmTextNode( length ) {
// Parent constructor
ve.dm.LeafNode.call( this, 'text', length );
};
/* Inheritance */
ve.inheritClass( ve.dm.TextNode, ve.dm.LeafNode );
/* Static Properties */
ve.dm.TextNode.static.name = 'text';
ve.dm.TextNode.static.isWrapped = false;
ve.dm.TextNode.static.isContent = true;
ve.dm.TextNode.static.matchTagNames = [];
/* Registration */
ve.dm.modelRegistry.register( 'text', ve.dm.TextNode );