OLD | NEW |
1 | 1 |
2 class SVGLengthJs extends DOMTypeJs implements SVGLength native "*SVGLength" { | 2 class _SVGLengthJs extends _DOMTypeJs implements SVGLength native "*SVGLength" { |
3 | 3 |
4 static final int SVG_LENGTHTYPE_CM = 6; | 4 static final int SVG_LENGTHTYPE_CM = 6; |
5 | 5 |
6 static final int SVG_LENGTHTYPE_EMS = 3; | 6 static final int SVG_LENGTHTYPE_EMS = 3; |
7 | 7 |
8 static final int SVG_LENGTHTYPE_EXS = 4; | 8 static final int SVG_LENGTHTYPE_EXS = 4; |
9 | 9 |
10 static final int SVG_LENGTHTYPE_IN = 8; | 10 static final int SVG_LENGTHTYPE_IN = 8; |
11 | 11 |
12 static final int SVG_LENGTHTYPE_MM = 7; | 12 static final int SVG_LENGTHTYPE_MM = 7; |
(...skipping 21 matching lines...) Expand all Loading... |
34 void set valueAsString(String value) native "this.valueAsString = value;"; | 34 void set valueAsString(String value) native "this.valueAsString = value;"; |
35 | 35 |
36 num get valueInSpecifiedUnits() native "return this.valueInSpecifiedUnits;"; | 36 num get valueInSpecifiedUnits() native "return this.valueInSpecifiedUnits;"; |
37 | 37 |
38 void set valueInSpecifiedUnits(num value) native "this.valueInSpecifiedUnits =
value;"; | 38 void set valueInSpecifiedUnits(num value) native "this.valueInSpecifiedUnits =
value;"; |
39 | 39 |
40 void convertToSpecifiedUnits(int unitType) native; | 40 void convertToSpecifiedUnits(int unitType) native; |
41 | 41 |
42 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native; | 42 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native; |
43 } | 43 } |
OLD | NEW |