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

Side by Side Diff: client/dom/generated/src/wrapping/_SVGTitleElementWrappingImplementation.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 _SVGTitleElementWrappingImplementation extends _SVGElementWrappingImplemen tation implements SVGTitleElement {
8 _SVGTitleElementWrappingImplementation() : super() {}
9
10 static create__SVGTitleElementWrappingImplementation() native {
11 return new _SVGTitleElementWrappingImplementation();
12 }
13
14 // From SVGLangSpace
15
16 String get xmllang() { return _get_xmllang(this); }
17 static String _get_xmllang(var _this) native;
18
19 void set xmllang(String value) { _set_xmllang(this, value); }
20 static void _set_xmllang(var _this, String value) native;
21
22 String get xmlspace() { return _get_xmlspace(this); }
23 static String _get_xmlspace(var _this) native;
24
25 void set xmlspace(String value) { _set_xmlspace(this, value); }
26 static void _set_xmlspace(var _this, String value) native;
27
28 // From SVGStylable
29
30 SVGAnimatedString get className() { return _get_className(this); }
31 static SVGAnimatedString _get_className(var _this) native;
32
33 CSSStyleDeclaration get style() { return _get_style_SVGTitleElement(this); }
34 static CSSStyleDeclaration _get_style_SVGTitleElement(var _this) native;
35
36 CSSValue getPresentationAttribute(String name) {
37 return _getPresentationAttribute(this, name);
38 }
39 static CSSValue _getPresentationAttribute(receiver, name) native;
40
41 String get typeName() { return "SVGTitleElement"; }
42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698