2013-06-11 19:16:04 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor DataModel MWTransclusionContentModel class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MediaWiki transclusion content model.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.dm.MWTransclusionPartModel
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {ve.dm.MWTransclusionModel} transclusion Transclusion
|
|
|
|
* @param {string} [value] Content value
|
2013-07-11 00:33:21 +00:00
|
|
|
* @param {string} [origin] Origin of part, e.g. 'data' or 'user'
|
2013-06-11 19:16:04 +00:00
|
|
|
*/
|
2013-07-11 00:33:21 +00:00
|
|
|
ve.dm.MWTransclusionContentModel =
|
|
|
|
function VeDmMWTransclusionContentModel( transclusion, value, origin ) {
|
2013-06-11 19:16:04 +00:00
|
|
|
// Parent constructor
|
2013-07-11 00:33:21 +00:00
|
|
|
ve.dm.MWTransclusionPartModel.call( this, transclusion, origin );
|
2013-06-11 19:16:04 +00:00
|
|
|
|
|
|
|
// Properties
|
|
|
|
this.value = value || '';
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.inheritClass( ve.dm.MWTransclusionContentModel, ve.dm.MWTransclusionPartModel );
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get content value.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
* @returns {string} Content value
|
|
|
|
*/
|
|
|
|
ve.dm.MWTransclusionContentModel.prototype.getValue = function () {
|
|
|
|
return this.value;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set content value.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
* @param {string} value Content value
|
|
|
|
*/
|
|
|
|
ve.dm.MWTransclusionContentModel.prototype.setValue = function ( value ) {
|
|
|
|
this.value = value;
|
|
|
|
};
|