X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/String.html diff --git a/docs/source/String.html b/docs/source/String.html index 98cf8f6b..691d191d 100644 --- a/docs/source/String.html +++ b/docs/source/String.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.String
  *
  * A collection of useful static methods to deal with strings
@@ -11,10 +28,11 @@ Ext.String = {
     formatRe: /\{(\d+)\}/g,
     escapeRegexRe: /([-.*+?^${}()|[\]\/\\])/g,
 
-    /**
+    /**
      * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
      * @param {String} value The string to encode
      * @return {String} The encoded text
+     * @method
      */
     htmlEncode: (function() {
         var entities = {
@@ -37,10 +55,11 @@ Ext.String = {
         };
     })(),
 
-    /**
+    /**
      * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
      * @param {String} value The string to decode
      * @return {String} The decoded text
+     * @method
      */
     htmlDecode: (function() {
         var entities = {
@@ -207,4 +226,6 @@ var s = Ext.String.format('&lt;div class="{0}">{1}&lt;/div&
         });
     }
 };
-
\ No newline at end of file +
+ +