OLD | NEW |
1 | 1 |
2 class SVGFECompositeElementJs extends SVGElementJs implements SVGFECompositeElem
ent native "*SVGFECompositeElement" { | 2 class _SVGFECompositeElementJs extends _SVGElementJs implements SVGFECompositeEl
ement native "*SVGFECompositeElement" { |
3 | 3 |
4 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; | 4 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; |
5 | 5 |
6 static final int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; | 6 static final int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; |
7 | 7 |
8 static final int SVG_FECOMPOSITE_OPERATOR_IN = 2; | 8 static final int SVG_FECOMPOSITE_OPERATOR_IN = 2; |
9 | 9 |
10 static final int SVG_FECOMPOSITE_OPERATOR_OUT = 3; | 10 static final int SVG_FECOMPOSITE_OPERATOR_OUT = 3; |
11 | 11 |
12 static final int SVG_FECOMPOSITE_OPERATOR_OVER = 1; | 12 static final int SVG_FECOMPOSITE_OPERATOR_OVER = 1; |
13 | 13 |
14 static final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; | 14 static final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; |
15 | 15 |
16 static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5; | 16 static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5; |
17 | 17 |
18 SVGAnimatedStringJs get in1() native "return this.in1;"; | 18 _SVGAnimatedStringJs get in1() native "return this.in1;"; |
19 | 19 |
20 SVGAnimatedStringJs get in2() native "return this.in2;"; | 20 _SVGAnimatedStringJs get in2() native "return this.in2;"; |
21 | 21 |
22 SVGAnimatedNumberJs get k1() native "return this.k1;"; | 22 _SVGAnimatedNumberJs get k1() native "return this.k1;"; |
23 | 23 |
24 SVGAnimatedNumberJs get k2() native "return this.k2;"; | 24 _SVGAnimatedNumberJs get k2() native "return this.k2;"; |
25 | 25 |
26 SVGAnimatedNumberJs get k3() native "return this.k3;"; | 26 _SVGAnimatedNumberJs get k3() native "return this.k3;"; |
27 | 27 |
28 SVGAnimatedNumberJs get k4() native "return this.k4;"; | 28 _SVGAnimatedNumberJs get k4() native "return this.k4;"; |
29 | 29 |
30 SVGAnimatedEnumerationJs get operator() native "return this.operator;"; | 30 _SVGAnimatedEnumerationJs get operator() native "return this.operator;"; |
31 | 31 |
32 // From SVGFilterPrimitiveStandardAttributes | 32 // From SVGFilterPrimitiveStandardAttributes |
33 | 33 |
34 SVGAnimatedLengthJs get height() native "return this.height;"; | 34 _SVGAnimatedLengthJs get height() native "return this.height;"; |
35 | 35 |
36 SVGAnimatedStringJs get result() native "return this.result;"; | 36 _SVGAnimatedStringJs get result() native "return this.result;"; |
37 | 37 |
38 SVGAnimatedLengthJs get width() native "return this.width;"; | 38 _SVGAnimatedLengthJs get width() native "return this.width;"; |
39 | 39 |
40 SVGAnimatedLengthJs get x() native "return this.x;"; | 40 _SVGAnimatedLengthJs get x() native "return this.x;"; |
41 | 41 |
42 SVGAnimatedLengthJs get y() native "return this.y;"; | 42 _SVGAnimatedLengthJs get y() native "return this.y;"; |
43 | 43 |
44 // From SVGStylable | 44 // From SVGStylable |
45 | 45 |
46 SVGAnimatedStringJs get className() native "return this.className;"; | 46 _SVGAnimatedStringJs get className() native "return this.className;"; |
47 | 47 |
48 CSSStyleDeclarationJs get style() native "return this.style;"; | 48 _CSSStyleDeclarationJs get style() native "return this.style;"; |
49 | 49 |
50 CSSValueJs getPresentationAttribute(String name) native; | 50 _CSSValueJs getPresentationAttribute(String name) native; |
51 } | 51 } |
OLD | NEW |