OLD | NEW |
1 | 1 |
2 class SVGTransformListJs extends DOMTypeJs implements SVGTransformList native "*
SVGTransformList" { | 2 class _SVGTransformListJs extends _DOMTypeJs implements SVGTransformList native
"*SVGTransformList" { |
3 | 3 |
4 int get numberOfItems() native "return this.numberOfItems;"; | 4 int get numberOfItems() native "return this.numberOfItems;"; |
5 | 5 |
6 SVGTransformJs appendItem(SVGTransformJs item) native; | 6 _SVGTransformJs appendItem(_SVGTransformJs item) native; |
7 | 7 |
8 void clear() native; | 8 void clear() native; |
9 | 9 |
10 SVGTransformJs consolidate() native; | 10 _SVGTransformJs consolidate() native; |
11 | 11 |
12 SVGTransformJs createSVGTransformFromMatrix(SVGMatrixJs matrix) native; | 12 _SVGTransformJs createSVGTransformFromMatrix(_SVGMatrixJs matrix) native; |
13 | 13 |
14 SVGTransformJs getItem(int index) native; | 14 _SVGTransformJs getItem(int index) native; |
15 | 15 |
16 SVGTransformJs initialize(SVGTransformJs item) native; | 16 _SVGTransformJs initialize(_SVGTransformJs item) native; |
17 | 17 |
18 SVGTransformJs insertItemBefore(SVGTransformJs item, int index) native; | 18 _SVGTransformJs insertItemBefore(_SVGTransformJs item, int index) native; |
19 | 19 |
20 SVGTransformJs removeItem(int index) native; | 20 _SVGTransformJs removeItem(int index) native; |
21 | 21 |
22 SVGTransformJs replaceItem(SVGTransformJs item, int index) native; | 22 _SVGTransformJs replaceItem(_SVGTransformJs item, int index) native; |
23 } | 23 } |
OLD | NEW |