/*! * 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 );