X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Provider2.html diff --git a/docs/source/Provider2.html b/docs/source/Provider2.html index feb1bcfd..9309db59 100644 --- a/docs/source/Provider2.html +++ b/docs/source/Provider2.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.state.Provider
  * <p>Abstract base class for state provider implementations. The provider is responsible
  * for setting values  and extracting values to/from the underlying storage source. The 
@@ -15,7 +32,7 @@ Ext.define('Ext.state.Provider', {
         observable: 'Ext.util.Observable'
     },
     
-    /**
+    /**
      * @cfg {String} prefix A string to prefix to items stored in the underlying state store. 
      * Defaults to <tt>'ext-'</tt>
      */
@@ -25,7 +42,7 @@ Ext.define('Ext.state.Provider', {
         config = config || {};
         var me = this;
         Ext.apply(me, config);
-        /**
+        /**
          * @event statechange
          * Fires when a state change occurs.
          * @param {Provider} this This state provider
@@ -37,7 +54,7 @@ Ext.define('Ext.state.Provider', {
         me.mixins.observable.constructor.call(me);
     },
     
-    /**
+    /**
      * Returns the current value for a key
      * @param {String} name The key name
      * @param {Mixed} defaultValue A default value to return if the key's value is not found
@@ -48,7 +65,7 @@ Ext.define('Ext.state.Provider', {
             defaultValue : this.state[name];
     },
 
-    /**
+    /**
      * Clears a value from the state
      * @param {String} name The key name
      */
@@ -58,7 +75,7 @@ Ext.define('Ext.state.Provider', {
         me.fireEvent("statechange", me, name, null);
     },
 
-    /**
+    /**
      * Sets the value for a key
      * @param {String} name The key name
      * @param {Mixed} value The value to set
@@ -69,7 +86,7 @@ Ext.define('Ext.state.Provider', {
         me.fireEvent("statechange", me, name, value);
     },
 
-    /**
+    /**
      * Decodes a string previously encoded with {@link #encodeValue}.
      * @param {String} value The value to decode
      * @return {Mixed} The decoded value
@@ -129,7 +146,7 @@ Ext.define('Ext.state.Provider', {
         }
     },
 
-    /**
+    /**
      * Encodes a value including type information.  Decode with {@link #decodeValue}.
      * @param {Mixed} value The value to encode
      * @return {String} The encoded value
@@ -169,4 +186,6 @@ Ext.define('Ext.state.Provider', {
         }
         return escape(enc);
     }
-});
\ No newline at end of file +});
+ +