X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/HashMap.html diff --git a/docs/source/HashMap.html b/docs/source/HashMap.html index 3ad620f6..73044061 100644 --- a/docs/source/HashMap.html +++ b/docs/source/HashMap.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.util.HashMap
  * <p>
  * Represents a collection of a set of key and value pairs. Each key in the HashMap
@@ -25,7 +42,7 @@ map.each(function(key, value, length){
  */
 Ext.define('Ext.util.HashMap', {
 
-    /**
+    /**
      * @cfg {Function} keyFn A function that is used to retrieve a default key for a passed object.
      * A default is provided that returns the <b>id</b> property on the object. This function is only used
      * if the add method is called with a single argument.
@@ -39,7 +56,7 @@ Ext.define('Ext.util.HashMap', {
         var me = this;
 
         me.addEvents(
-            /**
+            /**
              * @event add
              * Fires when a new item is added to the hash
              * @param {Ext.util.HashMap} this.
@@ -47,13 +64,13 @@ Ext.define('Ext.util.HashMap', {
              * @param {Object} value The value of the added item.
              */
             'add',
-            /**
+            /**
              * @event clear
              * Fires when the hash is cleared.
              * @param {Ext.util.HashMap} this.
              */
             'clear',
-            /**
+            /**
              * @event remove
              * Fires when an item is removed from the hash.
              * @param {Ext.util.HashMap} this.
@@ -61,7 +78,7 @@ Ext.define('Ext.util.HashMap', {
              * @param {Object} value The value of the removed item.
              */
             'remove',
-            /**
+            /**
              * @event replace
              * Fires when an item is replaced in the hash.
              * @param {Ext.util.HashMap} this.
@@ -76,7 +93,7 @@ Ext.define('Ext.util.HashMap', {
         me.clear(true);
     },
 
-    /**
+    /**
      * Gets the number of items in the hash.
      * @return {Number} The number of items in the hash.
      */
@@ -84,7 +101,7 @@ Ext.define('Ext.util.HashMap', {
         return this.length;
     },
 
-    /**
+    /**
      * Implementation for being able to extract the key from an object if only
      * a single argument is passed.
      * @private
@@ -102,7 +119,7 @@ Ext.define('Ext.util.HashMap', {
         return [key, value];
     },
 
-    /**
+    /**
      * Extracts the key from an object. This is a default implementation, it may be overridden
      * @private
      * @param {Object} o The object to get the key from
@@ -112,7 +129,7 @@ Ext.define('Ext.util.HashMap', {
         return o.id;
     },
 
-    /**
+    /**
      * Adds an item to the collection. Fires the {@link #add} event when complete.
      * @param {String} key <p>The key to associate with the item, or the new item.</p>
      * <p>If a {@link #getKey} implementation was specified for this HashMap,
@@ -144,7 +161,7 @@ Ext.define('Ext.util.HashMap', {
         return value;
     },
 
-    /**
+    /**
      * Replaces an item in the hash. If the key doesn't exist, the
      * {@link #add} method will be used.
      * @param {String} key The key of the item.
@@ -165,7 +182,7 @@ Ext.define('Ext.util.HashMap', {
         return value;
     },
 
-    /**
+    /**
      * Remove an item from the hash.
      * @param {Object} o The value of the item to remove.
      * @return {Boolean} True if the item was successfully removed.
@@ -178,7 +195,7 @@ Ext.define('Ext.util.HashMap', {
         return false;
     },
 
-    /**
+    /**
      * Remove an item from the hash.
      * @param {String} key The key to remove.
      * @return {Boolean} True if the item was successfully removed.
@@ -197,7 +214,7 @@ Ext.define('Ext.util.HashMap', {
         return false;
     },
 
-    /**
+    /**
      * Retrieves an item with a particular key.
      * @param {String} key The key to lookup.
      * @return {Object} The value at that key. If it doesn't exist, <tt>undefined</tt> is returned.
@@ -206,7 +223,7 @@ Ext.define('Ext.util.HashMap', {
         return this.map[key];
     },
 
-    /**
+    /**
      * Removes all items from the hash.
      * @return {Ext.util.HashMap} this
      */
@@ -220,7 +237,7 @@ Ext.define('Ext.util.HashMap', {
         return me;
     },
 
-    /**
+    /**
      * Checks whether a key exists in the hash.
      * @param {String} key The key to check for.
      * @return {Boolean} True if they key exists in the hash.
@@ -229,7 +246,7 @@ Ext.define('Ext.util.HashMap', {
         return this.map[key] !== undefined;
     },
 
-    /**
+    /**
      * Checks whether a value exists in the hash.
      * @param {Object} value The value to check for.
      * @return {Boolean} True if the value exists in the dictionary.
@@ -238,7 +255,7 @@ Ext.define('Ext.util.HashMap', {
         return this.containsKey(this.findKey(value));
     },
 
-    /**
+    /**
      * Return all of the keys in the hash.
      * @return {Array} An array of keys.
      */
@@ -246,7 +263,7 @@ Ext.define('Ext.util.HashMap', {
         return this.getArray(true);
     },
 
-    /**
+    /**
      * Return all of the values in the hash.
      * @return {Array} An array of values.
      */
@@ -254,7 +271,7 @@ Ext.define('Ext.util.HashMap', {
         return this.getArray(false);
     },
 
-    /**
+    /**
      * Gets either the keys/values in an array from the hash.
      * @private
      * @param {Boolean} isKey True to extract the keys, otherwise, the value
@@ -272,7 +289,7 @@ Ext.define('Ext.util.HashMap', {
         return arr;
     },
 
-    /**
+    /**
      * Executes the specified function once for each item in the hash.
      * Returning false from the function will cease iteration.
      *
@@ -303,7 +320,7 @@ Ext.define('Ext.util.HashMap', {
         return this;
     },
 
-    /**
+    /**
      * Performs a shallow copy on this hash.
      * @return {Ext.util.HashMap} The new hash object.
      */
@@ -322,7 +339,7 @@ Ext.define('Ext.util.HashMap', {
         return hash;
     },
 
-    /**
+    /**
      * @private
      * Find the key for a value.
      * @param {Object} value The value to find.
@@ -340,4 +357,6 @@ Ext.define('Ext.util.HashMap', {
         return undefined;
     }
 });
-
\ No newline at end of file +
+ +