| 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 XSLTProcessor |
| 8 interface XSLTProcessor default _XSLTProcessorFactoryProvider { |
| 9 |
| 10 XSLTProcessor(); |
| 11 |
| 12 /** @domName XSLTProcessor.clearParameters */ |
| 13 void clearParameters(); |
| 14 |
| 15 /** @domName XSLTProcessor.getParameter */ |
| 16 String getParameter(String namespaceURI, String localName); |
| 17 |
| 18 /** @domName XSLTProcessor.importStylesheet */ |
| 19 void importStylesheet(Node stylesheet); |
| 20 |
| 21 /** @domName XSLTProcessor.removeParameter */ |
| 22 void removeParameter(String namespaceURI, String localName); |
| 23 |
| 24 /** @domName XSLTProcessor.reset */ |
| 25 void reset(); |
| 26 |
| 27 /** @domName XSLTProcessor.setParameter */ |
| 28 void setParameter(String namespaceURI, String localName, String value); |
| 29 |
| 30 /** @domName XSLTProcessor.transformToDocument */ |
| 31 Document transformToDocument(Node source); |
| 32 |
| 33 /** @domName XSLTProcessor.transformToFragment */ |
| 34 DocumentFragment transformToFragment(Node source, Document docVal); |
| 35 } |
| OLD | NEW |