Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: client/dom/generated/src/wrapping/_CharacterDataWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _CharacterDataWrappingImplementation extends _NodeWrappingImplementation i mplements CharacterData { 7 class _CharacterDataWrappingImplementation extends _NodeWrappingImplementation i mplements CharacterData {
8 _CharacterDataWrappingImplementation() : super() {} 8 _CharacterDataWrappingImplementation() : super() {}
9 9
10 static create__CharacterDataWrappingImplementation() native { 10 static create__CharacterDataWrappingImplementation() native {
11 return new _CharacterDataWrappingImplementation(); 11 return new _CharacterDataWrappingImplementation();
12 } 12 }
13 13
14 String get data() { return _get__CharacterData_data(this); } 14 String get data() { return _get_data(this); }
15 static String _get__CharacterData_data(var _this) native; 15 static String _get_data(var _this) native;
16 16
17 void set data(String value) { _set__CharacterData_data(this, value); } 17 void set data(String value) { _set_data(this, value); }
18 static void _set__CharacterData_data(var _this, String value) native; 18 static void _set_data(var _this, String value) native;
19 19
20 int get length() { return _get__CharacterData_length(this); } 20 int get length() { return _get_length(this); }
21 static int _get__CharacterData_length(var _this) native; 21 static int _get_length(var _this) native;
22 22
23 void appendData(String data) { 23 void appendData(String data) {
24 _appendData(this, data); 24 _appendData(this, data);
25 return; 25 return;
26 } 26 }
27 static void _appendData(receiver, data) native; 27 static void _appendData(receiver, data) native;
28 28
29 void deleteData(int offset, int length) { 29 void deleteData(int offset, int length) {
30 _deleteData(this, offset, length); 30 _deleteData(this, offset, length);
31 return; 31 return;
(...skipping 12 matching lines...) Expand all
44 } 44 }
45 static void _replaceData(receiver, offset, length, data) native; 45 static void _replaceData(receiver, offset, length, data) native;
46 46
47 String substringData(int offset, int length) { 47 String substringData(int offset, int length) {
48 return _substringData(this, offset, length); 48 return _substringData(this, offset, length);
49 } 49 }
50 static String _substringData(receiver, offset, length) native; 50 static String _substringData(receiver, offset, length) native;
51 51
52 String get typeName() { return "CharacterData"; } 52 String get typeName() { return "CharacterData"; }
53 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698