OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011, 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 class _XSLTProcessorWrappingImplementation extends DOMWrapperBase implements XSL
TProcessor { | |
8 _XSLTProcessorWrappingImplementation() : super() {} | |
9 | |
10 static create__XSLTProcessorWrappingImplementation() native { | |
11 return new _XSLTProcessorWrappingImplementation(); | |
12 } | |
13 | |
14 void clearParameters() { | |
15 _clearParameters(this); | |
16 return; | |
17 } | |
18 static void _clearParameters(receiver) native; | |
19 | |
20 String getParameter(String namespaceURI, String localName) { | |
21 return _getParameter(this, namespaceURI, localName); | |
22 } | |
23 static String _getParameter(receiver, namespaceURI, localName) native; | |
24 | |
25 void importStylesheet(Node stylesheet) { | |
26 _importStylesheet(this, stylesheet); | |
27 return; | |
28 } | |
29 static void _importStylesheet(receiver, stylesheet) native; | |
30 | |
31 void removeParameter(String namespaceURI, String localName) { | |
32 _removeParameter(this, namespaceURI, localName); | |
33 return; | |
34 } | |
35 static void _removeParameter(receiver, namespaceURI, localName) native; | |
36 | |
37 void reset() { | |
38 _reset(this); | |
39 return; | |
40 } | |
41 static void _reset(receiver) native; | |
42 | |
43 void setParameter(String namespaceURI, String localName, String value) { | |
44 _setParameter(this, namespaceURI, localName, value); | |
45 return; | |
46 } | |
47 static void _setParameter(receiver, namespaceURI, localName, value) native; | |
48 | |
49 Document transformToDocument(Node source) { | |
50 return _transformToDocument(this, source); | |
51 } | |
52 static Document _transformToDocument(receiver, source) native; | |
53 | |
54 DocumentFragment transformToFragment(Node source, Document docVal) { | |
55 return _transformToFragment(this, source, docVal); | |
56 } | |
57 static DocumentFragment _transformToFragment(receiver, source, docVal) native; | |
58 | |
59 String get typeName() { return "XSLTProcessor"; } | |
60 } | |
OLD | NEW |