mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.TextNode.js
Catrope de6193734d Add annotation-like static properties to nodes
Add static properties for matching, data<->DOM conversion, and name. Use
matchTagNames, toDataElement and toDOMElement. name isn't used yet.

Change-Id: I5e7df3303bbd65e6968e931b568c23d76003a9a4
2013-01-18 14:51:40 -08:00

50 lines
960 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 */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @property
*/
ve.dm.TextNode.rules = {
'isWrapped': false,
'isContent': true,
'canContainContent': false,
'hasSignificantWhitespace': false,
'childNodeTypes': [],
'parentNodeTypes': null
};
ve.dm.TextNode.static.name = 'text';
ve.dm.TextNode.static.matchTagNames = [];
/* Registration */
ve.dm.nodeFactory.register( 'text', ve.dm.TextNode );