| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 interface SVGTextContentElement extends SVGElement, SVGTests, SVGLangSpace, SVGE
xternalResourcesRequired, SVGStylable { | 7 interface SVGTextContentElement extends SVGElement, SVGTests, SVGLangSpace, SVGE
xternalResourcesRequired, SVGStylable { |
| 8 | 8 |
| 9 static final int LENGTHADJUST_SPACING = 1; | 9 static final int LENGTHADJUST_SPACING = 1; |
| 10 | 10 |
| 11 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2; | 11 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2; |
| 12 | 12 |
| 13 static final int LENGTHADJUST_UNKNOWN = 0; | 13 static final int LENGTHADJUST_UNKNOWN = 0; |
| 14 | 14 |
| 15 SVGAnimatedEnumeration get lengthAdjust(); | 15 final SVGAnimatedEnumeration lengthAdjust; |
| 16 | 16 |
| 17 SVGAnimatedLength get textLength(); | 17 final SVGAnimatedLength textLength; |
| 18 | 18 |
| 19 int getCharNumAtPosition(SVGPoint point); | 19 int getCharNumAtPosition(SVGPoint point); |
| 20 | 20 |
| 21 num getComputedTextLength(); | 21 num getComputedTextLength(); |
| 22 | 22 |
| 23 SVGPoint getEndPositionOfChar(int offset); | 23 SVGPoint getEndPositionOfChar(int offset); |
| 24 | 24 |
| 25 SVGRect getExtentOfChar(int offset); | 25 SVGRect getExtentOfChar(int offset); |
| 26 | 26 |
| 27 int getNumberOfChars(); | 27 int getNumberOfChars(); |
| 28 | 28 |
| 29 num getRotationOfChar(int offset); | 29 num getRotationOfChar(int offset); |
| 30 | 30 |
| 31 SVGPoint getStartPositionOfChar(int offset); | 31 SVGPoint getStartPositionOfChar(int offset); |
| 32 | 32 |
| 33 num getSubStringLength(int offset, int length); | 33 num getSubStringLength(int offset, int length); |
| 34 | 34 |
| 35 void selectSubString(int offset, int length); | 35 void selectSubString(int offset, int length); |
| 36 } | 36 } |
| OLD | NEW |