mediawiki-extensions-Visual.../modules/oojs-ui/OO.ui.InspectorFactory.js

23 lines
454 B
JavaScript
Raw Normal View History

/*!
* ObjectOriented UserInterface InspectorFactory class.
*
* @copyright 2011-2013 OOJS Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Factory for inspectors.
*
* @class
* @extends OO.Factory
* @constructor
*/
OO.ui.InspectorFactory = function OoUiInspectorFactory() {
// Parent constructor
OO.Factory.call( this );
};
/* Inheritance */
OO.inheritClass( OO.ui.InspectorFactory, OO.Factory );