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 _SVGFETileElementWrappingImplementation extends _SVGElementWrappingImpleme
ntation implements SVGFETileElement { | |
8 _SVGFETileElementWrappingImplementation() : super() {} | |
9 | |
10 static create__SVGFETileElementWrappingImplementation() native { | |
11 return new _SVGFETileElementWrappingImplementation(); | |
12 } | |
13 | |
14 SVGAnimatedString get in1() { return _get_in1(this); } | |
15 static SVGAnimatedString _get_in1(var _this) native; | |
16 | |
17 // From SVGFilterPrimitiveStandardAttributes | |
18 | |
19 SVGAnimatedLength get height() { return _get_height(this); } | |
20 static SVGAnimatedLength _get_height(var _this) native; | |
21 | |
22 SVGAnimatedString get result() { return _get_result(this); } | |
23 static SVGAnimatedString _get_result(var _this) native; | |
24 | |
25 SVGAnimatedLength get width() { return _get_width(this); } | |
26 static SVGAnimatedLength _get_width(var _this) native; | |
27 | |
28 SVGAnimatedLength get x() { return _get_x(this); } | |
29 static SVGAnimatedLength _get_x(var _this) native; | |
30 | |
31 SVGAnimatedLength get y() { return _get_y(this); } | |
32 static SVGAnimatedLength _get_y(var _this) native; | |
33 | |
34 // From SVGStylable | |
35 | |
36 SVGAnimatedString get className() { return _get_className(this); } | |
37 static SVGAnimatedString _get_className(var _this) native; | |
38 | |
39 CSSStyleDeclaration get style() { return _get_style_SVGFETileElement(this); } | |
40 static CSSStyleDeclaration _get_style_SVGFETileElement(var _this) native; | |
41 | |
42 CSSValue getPresentationAttribute(String name) { | |
43 return _getPresentationAttribute(this, name); | |
44 } | |
45 static CSSValue _getPresentationAttribute(receiver, name) native; | |
46 | |
47 String get typeName() { return "SVGFETileElement"; } | |
48 } | |
OLD | NEW |