OLD | NEW |
1 | 1 |
2 class SVGStringListJs extends DOMTypeJs implements SVGStringList native "*SVGStr
ingList" { | 2 class _SVGStringListJs extends _DOMTypeJs implements SVGStringList native "*SVGS
tringList" { |
3 | 3 |
4 int get numberOfItems() native "return this.numberOfItems;"; | 4 int get numberOfItems() native "return this.numberOfItems;"; |
5 | 5 |
6 String appendItem(String item) native; | 6 String appendItem(String item) native; |
7 | 7 |
8 void clear() native; | 8 void clear() native; |
9 | 9 |
10 String getItem(int index) native; | 10 String getItem(int index) native; |
11 | 11 |
12 String initialize(String item) native; | 12 String initialize(String item) native; |
13 | 13 |
14 String insertItemBefore(String item, int index) native; | 14 String insertItemBefore(String item, int index) native; |
15 | 15 |
16 String removeItem(int index) native; | 16 String removeItem(int index) native; |
17 | 17 |
18 String replaceItem(String item, int index) native; | 18 String replaceItem(String item, int index) native; |
19 } | 19 } |
OLD | NEW |