| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 /// @domName SVGStringList |
| 8 interface SVGStringList { |
| 9 |
| 10 /** @domName SVGStringList.numberOfItems */ |
| 11 final int numberOfItems; |
| 12 |
| 13 /** @domName SVGStringList.appendItem */ |
| 14 String appendItem(String item); |
| 15 |
| 16 /** @domName SVGStringList.clear */ |
| 17 void clear(); |
| 18 |
| 19 /** @domName SVGStringList.getItem */ |
| 20 String getItem(int index); |
| 21 |
| 22 /** @domName SVGStringList.initialize */ |
| 23 String initialize(String item); |
| 24 |
| 25 /** @domName SVGStringList.insertItemBefore */ |
| 26 String insertItemBefore(String item, int index); |
| 27 |
| 28 /** @domName SVGStringList.removeItem */ |
| 29 String removeItem(int index); |
| 30 |
| 31 /** @domName SVGStringList.replaceItem */ |
| 32 String replaceItem(String item, int index); |
| 33 } |
| OLD | NEW |