/*! * VisualEditor DataModel MWTransclusionContentModel class. * * @copyright 2011-2020 VisualEditor Team and others; see AUTHORS.txt * @license The MIT License (MIT); see LICENSE.txt */ /** * Represents a raw wikitext snippet that is part of an unbalanced sequence of template invocations. * Meant to be an item in a {@see ve.dm.MWTransclusionModel}. Holds a back-reference to it's parent. * * @class * @extends ve.dm.MWTransclusionPartModel * * @constructor * @param {ve.dm.MWTransclusionModel} transclusion * @param {string} [wikitext=''] */ ve.dm.MWTransclusionContentModel = function VeDmMWTransclusionContentModel( transclusion, wikitext ) { // Parent constructor ve.dm.MWTransclusionContentModel.super.call( this, transclusion ); // Properties this.wikitext = wikitext || ''; }; /* Inheritance */ OO.inheritClass( ve.dm.MWTransclusionContentModel, ve.dm.MWTransclusionPartModel ); /* Events */ /** * @event change */ /* Methods */ /** * @param {string} wikitext */ ve.dm.MWTransclusionContentModel.prototype.setWikitext = function ( wikitext ) { this.wikitext = wikitext; this.emit( 'change' ); }; /** * @inheritdoc */ ve.dm.MWTransclusionContentModel.prototype.serialize = function () { return this.wikitext; }; /** * @inheritdoc */ ve.dm.MWTransclusionContentModel.prototype.getWikitext = function () { return this.wikitext; }; /** * @inheritDoc */ ve.dm.MWTransclusionContentModel.prototype.isEmpty = function () { return this.wikitext === ''; };