Source: Registry.js

  1. // Copyright (c) 2009-2010 Techinox Information Technologies (http://www.techinox.com)
  2. // Techinox Commercial License
  3. //
  4. // @author Armagan Amcalar <armagan@tart.com.tr>
  5. /**
  6. * @fileoverview tart.Registry is a convenience class that wraps goog.structs.Map and is intended to use as
  7. * a global registry across a web application.
  8. */
  9. goog.provide('tart.Registry');
  10. goog.require('goog.structs.Map');
  11. /**
  12. * tart Registry class.
  13. * @constructor
  14. * @extends {goog.structs.Map}
  15. */
  16. tart.Registry = function() {
  17. goog.base(this);
  18. };
  19. goog.inherits(tart.Registry, goog.structs.Map);