mediawiki-extensions-Visual.../modules/ve/ui/ve.ui.ActionFactory.js
Trevor Parscal 26a1d8986b Remove ve.Factory and ve.Registry and use oojs instead
Change-Id: I2717300e6cc6102296a2b8d063d344fa5897c825
2013-10-22 19:15:18 +00:00

44 lines
973 B
JavaScript

/*!
* VisualEditor UserInterface ActionFactory class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Action factory.
*
* @class
* @extends OO.Factory
* @constructor
*/
ve.ui.ActionFactory = function VeUiActionFactory() {
// Parent constructor
OO.Factory.call( this );
};
/* Inheritance */
OO.inheritClass( ve.ui.ActionFactory, OO.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.ui.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.ui.actionFactory = new ve.ui.ActionFactory();