UNPKG

@qooxdoo/framework

Version:

The JS Framework for Coders

112 lines (86 loc) 2.58 kB
/* ************************************************************************ qooxdoo - the new era of web development http://qooxdoo.org Copyright: 2007-2008 1&1 Internet AG, Germany, http://www.1und1.de License: MIT: https://opensource.org/licenses/MIT See the LICENSE file in the project's top-level directory for details. Authors: * Sebastian Werner (wpbasti) * Andreas Ecker (ecker) ************************************************************************ */ /** * Abstract base class for all managers of themed values. */ qx.Class.define("qx.util.ValueManager", { type : "abstract", extend : qx.core.Object, /* ***************************************************************************** CONSTRUCTOR ***************************************************************************** */ construct : function() { this.base(arguments); // Create empty dynamic map this._dynamic = {}; }, /* ***************************************************************************** MEMBERS ***************************************************************************** */ members : { _dynamic : null, /** * Returns the dynamically interpreted result for the incoming value * * @param value {String} dynamically interpreted identifier * @return {var} return the (translated) result of the incoming value */ resolveDynamic : function(value) { return this._dynamic[value]; }, /** * Whether a value is interpreted dynamically * * @param value {String} dynamically interpreted identifier * @return {Boolean} returns true if the value is interpreted dynamically */ isDynamic : function(value) { return !!this._dynamic[value]; }, /** * Returns the dynamically interpreted result for the incoming value, * (if available), otherwise returns the original value * @param value {String} Value to resolve * @return {var} either returns the (translated) result of the incoming * value or the value itself */ resolve : function(value) { if (value && this._dynamic[value]) { return this._dynamic[value]; } return value; }, /** * Sets the dynamics map. * @param value {Map} The map. */ _setDynamic : function(value) { this._dynamic = value; }, /** * Returns the dynamics map. * @return {Map} The map. */ _getDynamic : function() { return this._dynamic; } } });