OLD | NEW |
1 | 1 |
2 class SVGComponentTransferFunctionElementJs extends SVGElementJs implements SVGC
omponentTransferFunctionElement native "*SVGComponentTransferFunctionElement" { | 2 class _SVGComponentTransferFunctionElementJs extends _SVGElementJs implements SV
GComponentTransferFunctionElement native "*SVGComponentTransferFunctionElement"
{ |
3 | 3 |
4 static final int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; | 4 static final int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; |
5 | 5 |
6 static final int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; | 6 static final int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; |
7 | 7 |
8 static final int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; | 8 static final int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; |
9 | 9 |
10 static final int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; | 10 static final int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; |
11 | 11 |
12 static final int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; | 12 static final int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; |
13 | 13 |
14 static final int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; | 14 static final int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; |
15 | 15 |
16 SVGAnimatedNumberJs get amplitude() native "return this.amplitude;"; | 16 _SVGAnimatedNumberJs get amplitude() native "return this.amplitude;"; |
17 | 17 |
18 SVGAnimatedNumberJs get exponent() native "return this.exponent;"; | 18 _SVGAnimatedNumberJs get exponent() native "return this.exponent;"; |
19 | 19 |
20 SVGAnimatedNumberJs get intercept() native "return this.intercept;"; | 20 _SVGAnimatedNumberJs get intercept() native "return this.intercept;"; |
21 | 21 |
22 SVGAnimatedNumberJs get offset() native "return this.offset;"; | 22 _SVGAnimatedNumberJs get offset() native "return this.offset;"; |
23 | 23 |
24 SVGAnimatedNumberJs get slope() native "return this.slope;"; | 24 _SVGAnimatedNumberJs get slope() native "return this.slope;"; |
25 | 25 |
26 SVGAnimatedNumberListJs get tableValues() native "return this.tableValues;"; | 26 _SVGAnimatedNumberListJs get tableValues() native "return this.tableValues;"; |
27 | 27 |
28 SVGAnimatedEnumerationJs get type() native "return this.type;"; | 28 _SVGAnimatedEnumerationJs get type() native "return this.type;"; |
29 } | 29 } |
OLD | NEW |