mediawiki-extensions-Visual.../modules/ve/ve.ActionFactory.js
James D. Forrester 82114467f1 Bump copyright notice year range to -2013 over -2012
199 files touched. Whee!

Change-Id: Id82ce4a32f833406db4a1cc585674f2bdb39ba0d
2013-02-19 15:37:34 -08:00

44 lines
942 B
JavaScript

/*!
* VisualEditor ActionFactory class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Action factory.
*
* @class
* @extends ve.Factory
* @constructor
*/
ve.ActionFactory = function VeActionFactory() {
// Parent constructor
ve.Factory.call( this );
};
/* Inheritance */
ve.inheritClass( ve.ActionFactory, ve.Factory );
/* Methods */
/**
* Check if an action supports a method.
*
* @method
* @param {string} action Name of action
* @param {string} method Name of method
* @returns {boolean} The action supports the method
*/
ve.ActionFactory.prototype.doesActionSupportMethod = function ( action, method ) {
if ( action in this.registry ) {
return this.registry[action].static.methods.indexOf( method ) !== -1;
}
throw new Error( 'Unknown action: ' + action );
};
/* Initialization */
ve.actionFactory = new ve.ActionFactory();