Dictionary.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:2k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.provide("dojo.collections.Dictionary");
  9. dojo.require("dojo.collections.Collections");
  10. dojo.collections.Dictionary = function (dictionary) {
  11. var items = {};
  12. this.count = 0;
  13. var testObject = {};
  14. this.add = function (k, v) {
  15. var b = (k in items);
  16. items[k] = new dojo.collections.DictionaryEntry(k, v);
  17. if (!b) {
  18. this.count++;
  19. }
  20. };
  21. this.clear = function () {
  22. items = {};
  23. this.count = 0;
  24. };
  25. this.clone = function () {
  26. return new dojo.collections.Dictionary(this);
  27. };
  28. this.contains = this.containsKey = function (k) {
  29. if (testObject[k]) {
  30. return false;
  31. }
  32. return (items[k] != null);
  33. };
  34. this.containsValue = function (v) {
  35. var e = this.getIterator();
  36. while (e.get()) {
  37. if (e.element.value == v) {
  38. return true;
  39. }
  40. }
  41. return false;
  42. };
  43. this.entry = function (k) {
  44. return items[k];
  45. };
  46. this.forEach = function (fn, scope) {
  47. var a = [];
  48. for (var p in items) {
  49. if (!testObject[p]) {
  50. a.push(items[p]);
  51. }
  52. }
  53. var s = scope || dj_global;
  54. if (Array.forEach) {
  55. Array.forEach(a, fn, s);
  56. } else {
  57. for (var i = 0; i < a.length; i++) {
  58. fn.call(s, a[i], i, a);
  59. }
  60. }
  61. };
  62. this.getKeyList = function () {
  63. return (this.getIterator()).map(function (entry) {
  64. return entry.key;
  65. });
  66. };
  67. this.getValueList = function () {
  68. return (this.getIterator()).map(function (entry) {
  69. return entry.value;
  70. });
  71. };
  72. this.item = function (k) {
  73. if (k in items) {
  74. return items[k].valueOf();
  75. }
  76. return undefined;
  77. };
  78. this.getIterator = function () {
  79. return new dojo.collections.DictionaryIterator(items);
  80. };
  81. this.remove = function (k) {
  82. if (k in items && !testObject[k]) {
  83. delete items[k];
  84. this.count--;
  85. return true;
  86. }
  87. return false;
  88. };
  89. if (dictionary) {
  90. var e = dictionary.getIterator();
  91. while (e.get()) {
  92. this.add(e.element.key, e.element.value);
  93. }
  94. }
  95. };