X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Manager4.html diff --git a/docs/source/Manager4.html b/docs/source/Manager4.html index 234250e0..24a69a73 100644 --- a/docs/source/Manager4.html +++ b/docs/source/Manager4.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.state.Manager
  * This is the global state manager. By default all components that are "state aware" check this class
  * for state information if you don't pass them a custom state provider. In order for this class
@@ -25,7 +42,7 @@ Ext.define('Ext.state.Manager', {
     },
     
     
-    /**
+    /**
      * Configures the default state provider for your application
      * @param {Provider} stateProvider The state provider to set
      */
@@ -33,7 +50,7 @@ Ext.define('Ext.state.Manager', {
         this.provider = stateProvider;
     },
 
-    /**
+    /**
      * Returns the current value for a key
      * @param {String} name The key name
      * @param {Mixed} defaultValue The default value to return if the key lookup does not match
@@ -43,7 +60,7 @@ Ext.define('Ext.state.Manager', {
         return this.provider.get(key, defaultValue);
     },
 
-    /**
+    /**
      * Sets the value for a key
      * @param {String} name The key name
      * @param {Mixed} value The state data
@@ -52,7 +69,7 @@ Ext.define('Ext.state.Manager', {
         this.provider.set(key, value);
     },
 
-    /**
+    /**
      * Clears a value from the state
      * @param {String} name The key name
      */
@@ -60,11 +77,13 @@ Ext.define('Ext.state.Manager', {
         this.provider.clear(key);
     },
 
-    /**
+    /**
      * Gets the currently configured state provider
      * @return {Provider} The state provider
      */
     getProvider : function(){
         return this.provider;
     }
-});
\ No newline at end of file +});
+ +