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

58 lines
1.3 KiB
JavaScript

/*!
* VisualEditor DataModel TableRowNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel table row 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.TableRowNode = function VeDmTableRowNode( children, element ) {
// Parent constructor
ve.dm.BranchNode.call( this, 'tableRow', children, element );
};
/* Inheritance */
ve.inheritClass( ve.dm.TableRowNode, ve.dm.BranchNode );
/* Static Properties */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @property
*/
ve.dm.TableRowNode.rules = {
'isWrapped': true,
'isContent': false,
'canContainContent': false,
'hasSignificantWhitespace': false,
'childNodeTypes': ['tableCell'],
'parentNodeTypes': ['tableSection']
};
ve.dm.TableRowNode.static.name = 'tableRow';
ve.dm.TableRowNode.static.matchTagNames = [ 'tr' ];
ve.dm.TableRowNode.static.toDataElement = function () {
return { 'type': 'tableRow' };
};
ve.dm.TableRowNode.static.toDomElement = function () {
return document.createElement( 'tr' );
};
/* Registration */
ve.dm.nodeFactory.register( 'tableRow', ve.dm.TableRowNode );