| Index: client/html/generated/html/dartium/XSLTProcessor.dart
|
| diff --git a/client/html/generated/html/dartium/XSLTProcessor.dart b/client/html/generated/html/dartium/XSLTProcessor.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..25ba00a8224ca69b82dd61f16d838c28ad0ba823
|
| --- /dev/null
|
| +++ b/client/html/generated/html/dartium/XSLTProcessor.dart
|
| @@ -0,0 +1,41 @@
|
| +
|
| +class _XSLTProcessorImpl extends _DOMTypeBase implements XSLTProcessor {
|
| + _XSLTProcessorImpl._wrap(ptr) : super._wrap(ptr);
|
| +
|
| + void clearParameters() {
|
| + _ptr.clearParameters();
|
| + return;
|
| + }
|
| +
|
| + String getParameter(String namespaceURI, String localName) {
|
| + return _wrap(_ptr.getParameter(_unwrap(namespaceURI), _unwrap(localName)));
|
| + }
|
| +
|
| + void importStylesheet(Node stylesheet) {
|
| + _ptr.importStylesheet(_unwrap(stylesheet));
|
| + return;
|
| + }
|
| +
|
| + void removeParameter(String namespaceURI, String localName) {
|
| + _ptr.removeParameter(_unwrap(namespaceURI), _unwrap(localName));
|
| + return;
|
| + }
|
| +
|
| + void reset() {
|
| + _ptr.reset();
|
| + return;
|
| + }
|
| +
|
| + void setParameter(String namespaceURI, String localName, String value) {
|
| + _ptr.setParameter(_unwrap(namespaceURI), _unwrap(localName), _unwrap(value));
|
| + return;
|
| + }
|
| +
|
| + Document transformToDocument(Node source) {
|
| + return _FixHtmlDocumentReference(_wrap(_ptr.transformToDocument(_unwrap(source))));
|
| + }
|
| +
|
| + DocumentFragment transformToFragment(Node source, Document docVal) {
|
| + return _wrap(_ptr.transformToFragment(_unwrap(source), _unwrap(docVal)));
|
| + }
|
| +}
|
|
|