Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.util.CSS.js
1 Ext.data.JsonP.Ext_util_CSS({
2   "allMixins": [
3
4   ],
5   "deprecated": null,
6   "docauthor": null,
7   "members": {
8     "cfg": [
9
10     ],
11     "method": [
12       {
13         "deprecated": null,
14         "alias": null,
15         "protected": false,
16         "tagname": "method",
17         "href": "Base3.html#Ext-Base-method-addStatics",
18         "shortDoc": "Add / override static properties of this class. ...",
19         "static": true,
20         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
21         "private": false,
22         "params": [
23           {
24             "type": "Object",
25             "optional": false,
26             "doc": "\n",
27             "name": "members"
28           }
29         ],
30         "name": "addStatics",
31         "owner": "Ext.Base",
32         "doc": "<p>Add / override static properties of this class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.addStatics({\n    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'\n    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };\n    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };\n});\n</code></pre>\n",
33         "linenr": 388,
34         "return": {
35           "type": "Ext.Base",
36           "doc": "<p>this</p>\n"
37         },
38         "html_filename": "Base3.html"
39       },
40       {
41         "deprecated": null,
42         "alias": null,
43         "protected": false,
44         "tagname": "method",
45         "href": "Base3.html#Ext-Base-method-callOverridden",
46         "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n    constructo...",
47         "static": false,
48         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
49         "private": false,
50         "params": [
51           {
52             "type": "Array/Arguments",
53             "optional": false,
54             "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
55             "name": "args"
56           }
57         ],
58         "name": "callOverridden",
59         "owner": "Ext.Base",
60         "doc": "<p>Call the original method that was previously overridden with <a href=\"#/api/Ext.Base-method-override\" rel=\"Ext.Base-method-override\" class=\"docClass\">Ext.Base.override</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
61         "linenr": 269,
62         "return": {
63           "type": "Mixed",
64           "doc": "<p>Returns the result after calling the overridden method</p>\n"
65         },
66         "html_filename": "Base3.html"
67       },
68       {
69         "deprecated": null,
70         "alias": null,
71         "protected": true,
72         "tagname": "method",
73         "href": "Base3.html#Ext-Base-method-callParent",
74         "shortDoc": "Call the parent's overridden method. ...",
75         "static": false,
76         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
77         "private": false,
78         "params": [
79           {
80             "type": "Array/Arguments",
81             "optional": false,
82             "doc": "<p>The arguments, either an array or the <code>arguments</code> object\nfrom the current method, for example: <code>this.callParent(arguments)</code></p>\n",
83             "name": "args"
84           }
85         ],
86         "name": "callParent",
87         "owner": "Ext.Base",
88         "doc": "<p>Call the parent's overridden method. For example:</p>\n\n<pre><code>Ext.define('My.own.A', {\n    constructor: function(test) {\n        alert(test);\n    }\n});\n\nExt.define('My.own.B', {\n    extend: 'My.own.A',\n\n    constructor: function(test) {\n        alert(test);\n\n        this.callParent([test + 1]);\n    }\n});\n\nExt.define('My.own.C', {\n    extend: 'My.own.B',\n\n    constructor: function() {\n        alert(\"Going to call parent's overriden constructor...\");\n\n        this.callParent(arguments);\n    }\n});\n\nvar a = new My.own.A(1); // alerts '1'\nvar b = new My.own.B(1); // alerts '1', then alerts '2'\nvar c = new My.own.C(2); // alerts \"Going to call parent's overriden constructor...\"\n                         // alerts '2', then alerts '3'\n</code></pre>\n",
89         "linenr": 124,
90         "return": {
91           "type": "Mixed",
92           "doc": "<p>Returns the result from the superclass' method</p>\n"
93         },
94         "html_filename": "Base3.html"
95       },
96       {
97         "deprecated": null,
98         "alias": null,
99         "protected": false,
100         "tagname": "method",
101         "href": "Base3.html#Ext-Base-method-create",
102         "shortDoc": "Create a new instance of this Class. ...",
103         "static": true,
104         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
105         "private": false,
106         "params": [
107
108         ],
109         "name": "create",
110         "owner": "Ext.Base",
111         "doc": "<p>Create a new instance of this Class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n</code></pre>\n\n<p>All parameters are passed to the constructor of the class.</p>\n",
112         "linenr": 329,
113         "return": {
114           "type": "Object",
115           "doc": "<p>the created instance.</p>\n"
116         },
117         "html_filename": "Base3.html"
118       },
119       {
120         "deprecated": null,
121         "alias": null,
122         "protected": false,
123         "tagname": "method",
124         "href": "Base3.html#Ext-Base-method-createAlias",
125         "shortDoc": "Create aliases for existing prototype methods. ...",
126         "static": true,
127         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
128         "private": false,
129         "params": [
130           {
131             "type": "String/Object",
132             "optional": false,
133             "doc": "<p>The new method name, or an object to set multiple aliases. See\n<a href=\"#/api/Ext.Function-method-flexSetter\" rel=\"Ext.Function-method-flexSetter\" class=\"docClass\">flexSetter</a></p>\n",
134             "name": "alias"
135           },
136           {
137             "type": "String/Object",
138             "optional": false,
139             "doc": "<p>The original method name</p>\n",
140             "name": "origin"
141           }
142         ],
143         "name": "createAlias",
144         "owner": "Ext.Base",
145         "doc": "<p>Create aliases for existing prototype methods. Example:</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -&gt; test.method1()\n</code></pre>\n",
146         "linenr": 648,
147         "return": {
148           "type": "void",
149           "doc": "\n"
150         },
151         "html_filename": "Base3.html"
152       },
153       {
154         "deprecated": null,
155         "alias": null,
156         "protected": false,
157         "tagname": "method",
158         "href": "CSS.html#Ext-util-CSS-method-createStyleSheet",
159         "shortDoc": "Creates a stylesheet from a text blob of rules. ...",
160         "static": false,
161         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/CSS.js",
162         "private": false,
163         "params": [
164           {
165             "type": "String",
166             "optional": false,
167             "doc": "<p>The text containing the css rules</p>\n",
168             "name": "cssText"
169           },
170           {
171             "type": "String",
172             "optional": false,
173             "doc": "<p>An id to add to the stylesheet for later removal</p>\n",
174             "name": "id"
175           }
176         ],
177         "name": "createStyleSheet",
178         "owner": "Ext.util.CSS",
179         "doc": "<p>Creates a stylesheet from a text blob of rules.\nThese rules will be wrapped in a STYLE tag and appended to the HEAD of the document.</p>\n",
180         "linenr": 22,
181         "return": {
182           "type": "StyleSheet",
183           "doc": "\n"
184         },
185         "html_filename": "CSS.html"
186       },
187       {
188         "deprecated": null,
189         "alias": null,
190         "protected": false,
191         "tagname": "method",
192         "href": "Base3.html#Ext-Base-method-getName",
193         "shortDoc": "Get the current class' name in string format. ...",
194         "static": false,
195         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
196         "private": false,
197         "params": [
198
199         ],
200         "name": "getName",
201         "owner": "Ext.Base",
202         "doc": "<p>Get the current class' name in string format.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    constructor: function() {\n        alert(this.self.getName()); // alerts 'My.cool.Class'\n    }\n});\n\nMy.cool.Class.getName(); // 'My.cool.Class'\n</code></pre>\n",
203         "linenr": 631,
204         "return": {
205           "type": "String",
206           "doc": "<p>className</p>\n"
207         },
208         "html_filename": "Base3.html"
209       },
210       {
211         "deprecated": null,
212         "alias": null,
213         "protected": false,
214         "tagname": "method",
215         "href": "CSS.html#Ext-util-CSS-method-getRule",
216         "shortDoc": "Gets an an individual CSS rule by selector(s) ...",
217         "static": false,
218         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/CSS.js",
219         "private": false,
220         "params": [
221           {
222             "type": "String/Array",
223             "optional": false,
224             "doc": "<p>The CSS selector or an array of selectors to try. The first selector that is found is returned.</p>\n",
225             "name": "selector"
226           },
227           {
228             "type": "Boolean",
229             "optional": false,
230             "doc": "<p>true to refresh the internal cache if you have recently updated any rules or added styles dynamically</p>\n",
231             "name": "refreshCache"
232           }
233         ],
234         "name": "getRule",
235         "owner": "Ext.util.CSS",
236         "doc": "<p>Gets an an individual CSS rule by selector(s)</p>\n",
237         "linenr": 141,
238         "return": {
239           "type": "CSSRule",
240           "doc": "<p>The CSS rule or null if one is not found</p>\n"
241         },
242         "html_filename": "CSS.html"
243       },
244       {
245         "deprecated": null,
246         "alias": null,
247         "protected": false,
248         "tagname": "method",
249         "href": "CSS.html#Ext-util-CSS-method-getRules",
250         "shortDoc": "Gets all css rules for the document ...",
251         "static": false,
252         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/CSS.js",
253         "private": false,
254         "params": [
255           {
256             "type": "Boolean",
257             "optional": false,
258             "doc": "<p>true to refresh the internal cache</p>\n",
259             "name": "refreshCache"
260           }
261         ],
262         "name": "getRules",
263         "owner": "Ext.util.CSS",
264         "doc": "<p>Gets all css rules for the document</p>\n",
265         "linenr": 118,
266         "return": {
267           "type": "Object",
268           "doc": "<p>An object (hash) of rules indexed by selector</p>\n"
269         },
270         "html_filename": "CSS.html"
271       },
272       {
273         "deprecated": null,
274         "alias": null,
275         "protected": false,
276         "tagname": "method",
277         "href": "Base3.html#Ext-Base-method-implement",
278         "shortDoc": "Add methods / properties to the prototype of this class. ...",
279         "static": true,
280         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
281         "private": false,
282         "params": [
283           {
284             "type": "Object",
285             "optional": false,
286             "doc": "\n",
287             "name": "members"
288           }
289         ],
290         "name": "implement",
291         "owner": "Ext.Base",
292         "doc": "<p>Add methods / properties to the prototype of this class.</p>\n\n<pre><code>Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.implement({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n</code></pre>\n",
293         "linenr": 415,
294         "return": {
295           "type": "void",
296           "doc": "\n"
297         },
298         "html_filename": "Base3.html"
299       },
300       {
301         "deprecated": null,
302         "alias": null,
303         "protected": true,
304         "tagname": "method",
305         "href": "Base3.html#Ext-Base-method-initConfig",
306         "shortDoc": "Initialize configuration for this class. ...",
307         "static": false,
308         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
309         "private": false,
310         "params": [
311           {
312             "type": "Object",
313             "optional": false,
314             "doc": "\n",
315             "name": "config"
316           }
317         ],
318         "name": "initConfig",
319         "owner": "Ext.Base",
320         "doc": "<p>Initialize configuration for this class. a typical example:</p>\n\n<pre><code>Ext.define('My.awesome.Class', {\n    // The default config\n    config: {\n        name: 'Awesome',\n        isAwesome: true\n    },\n\n    constructor: function(config) {\n        this.initConfig(config);\n\n        return this;\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n</code></pre>\n",
321         "linenr": 63,
322         "return": {
323           "type": "Object",
324           "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
325         },
326         "html_filename": "Base3.html"
327       },
328       {
329         "deprecated": null,
330         "alias": null,
331         "protected": false,
332         "tagname": "method",
333         "href": "Base3.html#Ext-Base-method-override",
334         "shortDoc": "Override prototype members of this class. ...",
335         "static": true,
336         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
337         "private": false,
338         "params": [
339           {
340             "type": "Object",
341             "optional": false,
342             "doc": "\n",
343             "name": "members"
344           }
345         ],
346         "name": "override",
347         "owner": "Ext.Base",
348         "doc": "<p>Override prototype members of this class. Overridden methods can be invoked via\n<a href=\"#/api/Ext.Base-method-callOverridden\" rel=\"Ext.Base-method-callOverridden\" class=\"docClass\">Ext.Base.callOverridden</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
349         "linenr": 518,
350         "return": {
351           "type": "Ext.Base",
352           "doc": "<p>this</p>\n"
353         },
354         "html_filename": "Base3.html"
355       },
356       {
357         "deprecated": null,
358         "alias": null,
359         "protected": false,
360         "tagname": "method",
361         "href": "CSS.html#Ext-util-CSS-method-refreshCache",
362         "shortDoc": "Refresh the rule cache if you have dynamically added stylesheets ...",
363         "static": false,
364         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/CSS.js",
365         "private": false,
366         "params": [
367
368         ],
369         "name": "refreshCache",
370         "owner": "Ext.util.CSS",
371         "doc": "<p>Refresh the rule cache if you have dynamically added stylesheets</p>\n",
372         "linenr": 83,
373         "return": {
374           "type": "Object",
375           "doc": "<p>An object (hash) of rules indexed by selector</p>\n"
376         },
377         "html_filename": "CSS.html"
378       },
379       {
380         "deprecated": null,
381         "alias": null,
382         "protected": false,
383         "tagname": "method",
384         "href": "CSS.html#Ext-util-CSS-method-removeStyleSheet",
385         "shortDoc": "Removes a style or link tag by id ...",
386         "static": false,
387         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/CSS.js",
388         "private": false,
389         "params": [
390           {
391             "type": "String",
392             "optional": false,
393             "doc": "<p>The id of the tag</p>\n",
394             "name": "id"
395           }
396         ],
397         "name": "removeStyleSheet",
398         "owner": "Ext.util.CSS",
399         "doc": "<p>Removes a style or link tag by id</p>\n",
400         "linenr": 56,
401         "return": {
402           "type": "void",
403           "doc": "\n"
404         },
405         "html_filename": "CSS.html"
406       },
407       {
408         "deprecated": null,
409         "alias": null,
410         "protected": true,
411         "tagname": "method",
412         "href": "Base3.html#Ext-Base-method-statics",
413         "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
414         "static": false,
415         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
416         "private": false,
417         "params": [
418
419         ],
420         "name": "statics",
421         "owner": "Ext.Base",
422         "doc": "<p>Get the reference to the class from which this object was instantiated. Note that unlike <a href=\"#/api/Ext.Base-property-self\" rel=\"Ext.Base-property-self\" class=\"docClass\">Ext.Base.self</a>,\n<code>this.statics()</code> is scope-independent and it always returns the class from which it was called, regardless of what\n<code>this</code> points to during run-time</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n\n        return this;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n</code></pre>\n",
423         "linenr": 199,
424         "return": {
425           "type": "Class",
426           "doc": "\n"
427         },
428         "html_filename": "Base3.html"
429       },
430       {
431         "deprecated": null,
432         "alias": null,
433         "protected": false,
434         "tagname": "method",
435         "href": "CSS.html#Ext-util-CSS-method-swapStyleSheet",
436         "shortDoc": "Dynamically swaps an existing stylesheet reference for a new one ...",
437         "static": false,
438         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/CSS.js",
439         "private": false,
440         "params": [
441           {
442             "type": "String",
443             "optional": false,
444             "doc": "<p>The id of an existing link tag to remove</p>\n",
445             "name": "id"
446           },
447           {
448             "type": "String",
449             "optional": false,
450             "doc": "<p>The href of the new stylesheet to include</p>\n",
451             "name": "url"
452           }
453         ],
454         "name": "swapStyleSheet",
455         "owner": "Ext.util.CSS",
456         "doc": "<p>Dynamically swaps an existing stylesheet reference for a new one</p>\n",
457         "linenr": 67,
458         "return": {
459           "type": "void",
460           "doc": "\n"
461         },
462         "html_filename": "CSS.html"
463       },
464       {
465         "deprecated": null,
466         "alias": null,
467         "protected": false,
468         "tagname": "method",
469         "href": "CSS.html#Ext-util-CSS-method-updateRule",
470         "shortDoc": "Updates a rule property ...",
471         "static": false,
472         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/CSS.js",
473         "private": false,
474         "params": [
475           {
476             "type": "String/Array",
477             "optional": false,
478             "doc": "<p>If it's an array it tries each selector until it finds one. Stops immediately once one is found.</p>\n",
479             "name": "selector"
480           },
481           {
482             "type": "String",
483             "optional": false,
484             "doc": "<p>The css property</p>\n",
485             "name": "property"
486           },
487           {
488             "type": "String",
489             "optional": false,
490             "doc": "<p>The new value for the property</p>\n",
491             "name": "value"
492           }
493         ],
494         "name": "updateRule",
495         "owner": "Ext.util.CSS",
496         "doc": "<p>Updates a rule property</p>\n",
497         "linenr": 160,
498         "return": {
499           "type": "Boolean",
500           "doc": "<p>true If a rule was found and updated</p>\n"
501         },
502         "html_filename": "CSS.html"
503       }
504     ],
505     "property": [
506       {
507         "type": "Class",
508         "deprecated": null,
509         "alias": null,
510         "protected": true,
511         "tagname": "property",
512         "href": "Base3.html#Ext-Base-property-self",
513         "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
514         "static": false,
515         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
516         "private": false,
517         "name": "self",
518         "owner": "Ext.Base",
519         "doc": "<p>Get the reference to the current class from which this object was instantiated. Unlike <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>,\n<code>this.self</code> is scope-dependent and it's meant to be used for dynamic inheritance. See <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>\nfor a detailed comparison</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); / dependent on 'this'\n\n        return this;\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n</code></pre>\n",
520         "linenr": 18,
521         "html_filename": "Base3.html"
522       }
523     ],
524     "cssVar": [
525
526     ],
527     "cssMixin": [
528
529     ],
530     "event": [
531
532     ]
533   },
534   "singleton": true,
535   "alias": null,
536   "superclasses": [
537     "Ext.Base"
538   ],
539   "protected": false,
540   "tagname": "class",
541   "mixins": [
542
543   ],
544   "href": "CSS.html#Ext-util-CSS",
545   "subclasses": [
546
547   ],
548   "static": false,
549   "author": null,
550   "component": false,
551   "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/CSS.js",
552   "private": false,
553   "alternateClassNames": [
554
555   ],
556   "name": "Ext.util.CSS",
557   "doc": "<p>Utility class for manipulating CSS rules</p>\n",
558   "mixedInto": [
559
560   ],
561   "linenr": 1,
562   "xtypes": [
563
564   ],
565   "html_filename": "CSS.html",
566   "extends": "Ext.Base"
567 });