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

35 lines
849 B
JavaScript

/*!
* VisualEditor DataModel AlienBlockNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel alien block node.
*
* @class
* @extends ve.dm.LeafNode
* @constructor
* @param {number} [length] Length of content data in document
* @param {Object} [element] Reference to element in linear model
*/
ve.dm.AlienBlockNode = function VeDmAlienBlockNode( length, element ) {
// Parent constructor
ve.dm.LeafNode.call( this, 'alienBlock', 0, element );
};
/* Inheritance */
ve.inheritClass( ve.dm.AlienBlockNode, ve.dm.LeafNode );
/* Static Properties */
ve.dm.AlienBlockNode.static.name = 'alienBlock';
ve.dm.AlienBlockNode.static.matchTagNames = [];
/* Registration */
ve.dm.modelRegistry.register( 'alienBlock', ve.dm.AlienBlockNode );