| 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 MutationEventWrappingImplementation extends EventWrappingImplementation im
plements MutationEvent { | |
| 8 MutationEventWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | |
| 9 | |
| 10 int get attrChange() { return _ptr.attrChange; } | |
| 11 | |
| 12 String get attrName() { return _ptr.attrName; } | |
| 13 | |
| 14 String get newValue() { return _ptr.newValue; } | |
| 15 | |
| 16 String get prevValue() { return _ptr.prevValue; } | |
| 17 | |
| 18 Node get relatedNode() { return LevelDom.wrapNode(_ptr.relatedNode); } | |
| 19 | |
| 20 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela
tedNode, String prevValue, String newValue, String attrName, int attrChange) { | |
| 21 _ptr.initMutationEvent(type, canBubble, cancelable, LevelDom.unwrap(relatedN
ode), prevValue, newValue, attrName, attrChange); | |
| 22 return; | |
| 23 } | |
| 24 } | |
| OLD | NEW |