| 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: | |
| 6 // This file contains documentation that is merged into the real source. | |
| 7 // Do not make code changes here. | |
| 8 | |
| 9 /// @domName XSLTProcessor | |
| 10 interface XSLTProcessor default _XSLTProcessorFactoryProvider { | |
| 11 | |
| 12 XSLTProcessor(); | |
| 13 | |
| 14 /** @domName XSLTProcessor.clearParameters */ | |
| 15 void clearParameters(); | |
| 16 | |
| 17 /** @domName XSLTProcessor.getParameter */ | |
| 18 String getParameter(String namespaceURI, String localName); | |
| 19 | |
| 20 /** @domName XSLTProcessor.importStylesheet */ | |
| 21 void importStylesheet(Node stylesheet); | |
| 22 | |
| 23 /** @domName XSLTProcessor.removeParameter */ | |
| 24 void removeParameter(String namespaceURI, String localName); | |
| 25 | |
| 26 /** @domName XSLTProcessor.reset */ | |
| 27 void reset(); | |
| 28 | |
| 29 /** @domName XSLTProcessor.setParameter */ | |
| 30 void setParameter(String namespaceURI, String localName, String value); | |
| 31 | |
| 32 /** @domName XSLTProcessor.transformToDocument */ | |
| 33 Document transformToDocument(Node source); | |
| 34 | |
| 35 /** @domName XSLTProcessor.transformToFragment */ | |
| 36 DocumentFragment transformToFragment(Node source, Document docVal); | |
| 37 } | |
| OLD | NEW |