mediawiki-extensions-Visual.../modules/ve-mw/init/ve.init.mw.SaveErrorHandler.js
James D. Forrester 3c293ea00c doc: Bump copyright year for 2019
Change-Id: I8991b97c980d4149f53eb5601036220ef3c0c440
2019-01-01 13:24:23 +00:00

51 lines
1,020 B
JavaScript

/*!
* VisualEditor Initialization save error handler class
*
* @copyright 2011-2019 VisualEditor Team and others; see http://ve.mit-license.org
*/
/**
* Save error handler.
*
* @class
* @abstract
*
* @constructor
*/
ve.init.mw.SaveErrorHandler = function () {};
/* Inheritance */
OO.initClass( ve.init.mw.SaveErrorHandler );
/* Static methods */
/**
* Test if this handler should handle a specific API response
*
* @static
* @inheritable
* @method
* @param {Object} data API response from action=visualeditoredit
* @return {boolean}
*/
ve.init.mw.SaveErrorHandler.static.matchFunction = null;
/**
* Process the save error
*
* @static
* @inheritable
* @method
* @param {Object} data API response from action=visualeditoredit
* @param {ve.init.mw.ArticleTarget} target Target
*/
ve.init.mw.SaveErrorHandler.static.process = null;
/* Save error registry */
/*
* Extensions can add SaveErrorHandler sub-classes to this registry.
*/
ve.init.mw.saveErrorHandlerFactory = new OO.Factory();