OLD | NEW |
1 | 1 |
2 class SVGFEImageElementJs extends SVGElementJs implements SVGFEImageElement nati
ve "*SVGFEImageElement" { | 2 class _SVGFEImageElementJs extends _SVGElementJs implements SVGFEImageElement na
tive "*SVGFEImageElement" { |
3 | 3 |
4 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this
.preserveAspectRatio;"; | 4 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi
s.preserveAspectRatio;"; |
5 | 5 |
6 // From SVGURIReference | 6 // From SVGURIReference |
7 | 7 |
8 SVGAnimatedStringJs get href() native "return this.href;"; | 8 _SVGAnimatedStringJs get href() native "return this.href;"; |
9 | 9 |
10 // From SVGLangSpace | 10 // From SVGLangSpace |
11 | 11 |
12 String get xmllang() native "return this.xmllang;"; | 12 String get xmllang() native "return this.xmllang;"; |
13 | 13 |
14 void set xmllang(String value) native "this.xmllang = value;"; | 14 void set xmllang(String value) native "this.xmllang = value;"; |
15 | 15 |
16 String get xmlspace() native "return this.xmlspace;"; | 16 String get xmlspace() native "return this.xmlspace;"; |
17 | 17 |
18 void set xmlspace(String value) native "this.xmlspace = value;"; | 18 void set xmlspace(String value) native "this.xmlspace = value;"; |
19 | 19 |
20 // From SVGExternalResourcesRequired | 20 // From SVGExternalResourcesRequired |
21 | 21 |
22 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter
nalResourcesRequired;"; | 22 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte
rnalResourcesRequired;"; |
23 | 23 |
24 // From SVGFilterPrimitiveStandardAttributes | 24 // From SVGFilterPrimitiveStandardAttributes |
25 | 25 |
26 SVGAnimatedLengthJs get height() native "return this.height;"; | 26 _SVGAnimatedLengthJs get height() native "return this.height;"; |
27 | 27 |
28 SVGAnimatedStringJs get result() native "return this.result;"; | 28 _SVGAnimatedStringJs get result() native "return this.result;"; |
29 | 29 |
30 SVGAnimatedLengthJs get width() native "return this.width;"; | 30 _SVGAnimatedLengthJs get width() native "return this.width;"; |
31 | 31 |
32 SVGAnimatedLengthJs get x() native "return this.x;"; | 32 _SVGAnimatedLengthJs get x() native "return this.x;"; |
33 | 33 |
34 SVGAnimatedLengthJs get y() native "return this.y;"; | 34 _SVGAnimatedLengthJs get y() native "return this.y;"; |
35 | 35 |
36 // From SVGStylable | 36 // From SVGStylable |
37 | 37 |
38 SVGAnimatedStringJs get className() native "return this.className;"; | 38 _SVGAnimatedStringJs get className() native "return this.className;"; |
39 | 39 |
40 CSSStyleDeclarationJs get style() native "return this.style;"; | 40 _CSSStyleDeclarationJs get style() native "return this.style;"; |
41 | 41 |
42 CSSValueJs getPresentationAttribute(String name) native; | 42 _CSSValueJs getPresentationAttribute(String name) native; |
43 } | 43 } |
OLD | NEW |