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

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

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months 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
(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 _CharacterDataWrappingImplementation extends _NodeWrappingImplementation i mplements CharacterData {
8 _CharacterDataWrappingImplementation() : super() {}
9
10 static create__CharacterDataWrappingImplementation() native {
11 return new _CharacterDataWrappingImplementation();
12 }
13
14 String get data() { return _get_data(this); }
15 static String _get_data(var _this) native;
16
17 void set data(String value) { _set_data(this, value); }
18 static void _set_data(var _this, String value) native;
19
20 int get length() { return _get_length(this); }
21 static int _get_length(var _this) native;
22
23 void appendData(String data) {
24 _appendData(this, data);
25 return;
26 }
27 static void _appendData(receiver, data) native;
28
29 void deleteData(int offset, int length) {
30 _deleteData(this, offset, length);
31 return;
32 }
33 static void _deleteData(receiver, offset, length) native;
34
35 void insertData(int offset, String data) {
36 _insertData(this, offset, data);
37 return;
38 }
39 static void _insertData(receiver, offset, data) native;
40
41 void replaceData(int offset, int length, String data) {
42 _replaceData(this, offset, length, data);
43 return;
44 }
45 static void _replaceData(receiver, offset, length, data) native;
46
47 String substringData(int offset, int length) {
48 return _substringData(this, offset, length);
49 }
50 static String _substringData(receiver, offset, length) native;
51
52 String get typeName() { return "CharacterData"; }
53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698