| OLD | NEW |
| 1 | 1 |
| 2 class SVGComponentTransferFunctionElement extends SVGElement native "*SVGCompone
ntTransferFunctionElement" { | 2 class SVGComponentTransferFunctionElement extends SVGElement native "*SVGCompone
ntTransferFunctionElement" { |
| 3 | 3 |
| 4 static final int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; |
| 5 |
| 6 static final int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; |
| 7 |
| 8 static final int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; |
| 9 |
| 10 static final int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; |
| 11 |
| 12 static final int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; |
| 13 |
| 14 static final int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; |
| 15 |
| 4 SVGAnimatedNumber amplitude; | 16 SVGAnimatedNumber amplitude; |
| 5 | 17 |
| 6 SVGAnimatedNumber exponent; | 18 SVGAnimatedNumber exponent; |
| 7 | 19 |
| 8 SVGAnimatedNumber intercept; | 20 SVGAnimatedNumber intercept; |
| 9 | 21 |
| 10 SVGAnimatedNumber offset; | 22 SVGAnimatedNumber offset; |
| 11 | 23 |
| 12 SVGAnimatedNumber slope; | 24 SVGAnimatedNumber slope; |
| 13 | 25 |
| 14 SVGAnimatedNumberList tableValues; | 26 SVGAnimatedNumberList tableValues; |
| 15 | 27 |
| 16 SVGAnimatedEnumeration type; | 28 SVGAnimatedEnumeration type; |
| 17 } | 29 } |
| OLD | NEW |