Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / source / Provider2.html
index 9309db5..48605b3 100644 (file)
@@ -3,8 +3,8 @@
 <head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <title>The source code</title>
-  <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
-  <script type="text/javascript" src="../prettify/prettify.js"></script>
+  <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
+  <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
   <style type="text/css">
     .highlight { display: block; background-color: #ddd; }
   </style>
@@ -45,7 +45,7 @@ Ext.define('Ext.state.Provider', {
 <span id='Ext-state-Provider-event-statechange'>        /**
 </span>         * @event statechange
          * Fires when a state change occurs.
-         * @param {Provider} this This state provider
+         * @param {Ext.state.Provider} this This state provider
          * @param {String} key The state key which was changed
          * @param {String} value The encoded value for the state
          */
@@ -57,8 +57,8 @@ Ext.define('Ext.state.Provider', {
 <span id='Ext-state-Provider-method-get'>    /**
 </span>     * 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
-     * @return {Mixed} The state data
+     * @param {Object} defaultValue A default value to return if the key's value is not found
+     * @return {Object} The state data
      */
     get : function(name, defaultValue){
         return typeof this.state[name] == &quot;undefined&quot; ?
@@ -78,7 +78,7 @@ Ext.define('Ext.state.Provider', {
 <span id='Ext-state-Provider-method-set'>    /**
 </span>     * Sets the value for a key
      * @param {String} name The key name
-     * @param {Mixed} value The value to set
+     * @param {Object} value The value to set
      */
     set : function(name, value){
         var me = this;
@@ -89,7 +89,7 @@ Ext.define('Ext.state.Provider', {
 <span id='Ext-state-Provider-method-decodeValue'>    /**
 </span>     * Decodes a string previously encoded with {@link #encodeValue}.
      * @param {String} value The value to decode
-     * @return {Mixed} The decoded value
+     * @return {Object} The decoded value
      */
     decodeValue : function(value){
 
@@ -148,7 +148,7 @@ Ext.define('Ext.state.Provider', {
 
 <span id='Ext-state-Provider-method-encodeValue'>    /**
 </span>     * Encodes a value including type information.  Decode with {@link #decodeValue}.
-     * @param {Mixed} value The value to encode
+     * @param {Object} value The value to encode
      * @return {String} The encoded value
      */
     encodeValue : function(value){