OLD | NEW |
1 /** | 1 /** |
2 * Scalable Vector Graphics: | 2 * Scalable Vector Graphics: |
3 * Two-dimensional vector graphics with support for events and animation. | 3 * Two-dimensional vector graphics with support for events and animation. |
4 * | 4 * |
5 * For details about the features and syntax of SVG, a W3C standard, | 5 * For details about the features and syntax of SVG, a W3C standard, |
6 * refer to the | 6 * refer to the |
7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). | 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). |
8 */ | 8 */ |
9 library dart.dom.svg; | 9 library dart.dom.svg; |
10 | 10 |
11 import 'dart:async'; | 11 import 'dart:async'; |
12 import 'dart:collection'; | 12 import 'dart:collection'; |
13 import 'dart:_internal' hide deprecated; | 13 import 'dart:_internal' hide deprecated; |
14 import 'dart:html'; | 14 import 'dart:html'; |
15 import 'dart:html_common'; | 15 import 'dart:html_common'; |
16 import 'dart:nativewrappers'; | 16 import 'dart:nativewrappers'; |
17 import 'dart:_blink' as _blink; | 17 import 'dart:_blink' as _blink; |
| 18 import 'dart:js' as js; |
18 // DO NOT EDIT | 19 // DO NOT EDIT |
19 // Auto-generated dart:svg library. | 20 // Auto-generated dart:svg library. |
20 | 21 |
21 | 22 |
22 | 23 |
23 | 24 |
| 25 // Need a default constructor for constructing classes with mixins that are |
| 26 // also extending NativeFieldWrapperClass2. Defining JsoNativeFieldWrapper |
| 27 // extending NativeFieldWrapperClass2 creates a default constructor. |
| 28 class JsoNativeFieldWrapper extends NativeFieldWrapperClass2 {} |
| 29 |
24 | 30 |
25 // FIXME: Can we make this private? | 31 // FIXME: Can we make this private? |
26 final svgBlinkMap = { | 32 final svgBlinkMap = { |
27 'SVGAElement': () => AElement, | 33 'SVGAElement': () => AElement, |
28 'SVGAltGlyphDefElement': () => _SVGAltGlyphDefElement, | 34 'SVGAltGlyphDefElement': () => _SVGAltGlyphDefElement, |
29 'SVGAltGlyphElement': () => AltGlyphElement, | 35 'SVGAltGlyphElement': () => AltGlyphElement, |
30 'SVGAltGlyphItemElement': () => _SVGAltGlyphItemElement, | 36 'SVGAltGlyphItemElement': () => _SVGAltGlyphItemElement, |
31 'SVGAngle': () => Angle, | 37 'SVGAngle': () => Angle, |
32 'SVGAnimateElement': () => AnimateElement, | 38 'SVGAnimateElement': () => AnimateElement, |
33 'SVGAnimateMotionElement': () => AnimateMotionElement, | 39 'SVGAnimateMotionElement': () => AnimateMotionElement, |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 'SVGUnitTypes': () => UnitTypes, | 168 'SVGUnitTypes': () => UnitTypes, |
163 'SVGUseElement': () => UseElement, | 169 'SVGUseElement': () => UseElement, |
164 'SVGVKernElement': () => _SVGVKernElement, | 170 'SVGVKernElement': () => _SVGVKernElement, |
165 'SVGViewElement': () => ViewElement, | 171 'SVGViewElement': () => ViewElement, |
166 'SVGViewSpec': () => ViewSpec, | 172 'SVGViewSpec': () => ViewSpec, |
167 'SVGZoomAndPan': () => ZoomAndPan, | 173 'SVGZoomAndPan': () => ZoomAndPan, |
168 'SVGZoomEvent': () => ZoomEvent, | 174 'SVGZoomEvent': () => ZoomEvent, |
169 | 175 |
170 }; | 176 }; |
171 | 177 |
| 178 // FIXME: Can we make this private? |
| 179 final svgBlinkFunctionMap = { |
| 180 'SVGAElement': () => AElement.internalCreateAElement, |
| 181 'SVGAltGlyphDefElement': () => _SVGAltGlyphDefElement.internalCreate_SVGAltGly
phDefElement, |
| 182 'SVGAltGlyphElement': () => AltGlyphElement.internalCreateAltGlyphElement, |
| 183 'SVGAltGlyphItemElement': () => _SVGAltGlyphItemElement.internalCreate_SVGAltG
lyphItemElement, |
| 184 'SVGAngle': () => Angle.internalCreateAngle, |
| 185 'SVGAnimateElement': () => AnimateElement.internalCreateAnimateElement, |
| 186 'SVGAnimateMotionElement': () => AnimateMotionElement.internalCreateAnimateMot
ionElement, |
| 187 'SVGAnimateTransformElement': () => AnimateTransformElement.internalCreateAnim
ateTransformElement, |
| 188 'SVGAnimatedAngle': () => AnimatedAngle.internalCreateAnimatedAngle, |
| 189 'SVGAnimatedBoolean': () => AnimatedBoolean.internalCreateAnimatedBoolean, |
| 190 'SVGAnimatedEnumeration': () => AnimatedEnumeration.internalCreateAnimatedEnum
eration, |
| 191 'SVGAnimatedInteger': () => AnimatedInteger.internalCreateAnimatedInteger, |
| 192 'SVGAnimatedLength': () => AnimatedLength.internalCreateAnimatedLength, |
| 193 'SVGAnimatedLengthList': () => AnimatedLengthList.internalCreateAnimatedLength
List, |
| 194 'SVGAnimatedNumber': () => AnimatedNumber.internalCreateAnimatedNumber, |
| 195 'SVGAnimatedNumberList': () => AnimatedNumberList.internalCreateAnimatedNumber
List, |
| 196 'SVGAnimatedPreserveAspectRatio': () => AnimatedPreserveAspectRatio.internalCr
eateAnimatedPreserveAspectRatio, |
| 197 'SVGAnimatedRect': () => AnimatedRect.internalCreateAnimatedRect, |
| 198 'SVGAnimatedString': () => AnimatedString.internalCreateAnimatedString, |
| 199 'SVGAnimatedTransformList': () => AnimatedTransformList.internalCreateAnimated
TransformList, |
| 200 'SVGAnimationElement': () => AnimationElement.internalCreateAnimationElement, |
| 201 'SVGCircleElement': () => CircleElement.internalCreateCircleElement, |
| 202 'SVGClipPathElement': () => ClipPathElement.internalCreateClipPathElement, |
| 203 'SVGComponentTransferFunctionElement': () => _SVGComponentTransferFunctionElem
ent.internalCreate_SVGComponentTransferFunctionElement, |
| 204 'SVGCursorElement': () => _SVGCursorElement.internalCreate_SVGCursorElement, |
| 205 'SVGDefsElement': () => DefsElement.internalCreateDefsElement, |
| 206 'SVGDescElement': () => DescElement.internalCreateDescElement, |
| 207 'SVGDiscardElement': () => DiscardElement.internalCreateDiscardElement, |
| 208 'SVGElement': () => SvgElement.internalCreateSvgElement, |
| 209 'SVGEllipseElement': () => EllipseElement.internalCreateEllipseElement, |
| 210 'SVGFEBlendElement': () => FEBlendElement.internalCreateFEBlendElement, |
| 211 'SVGFEColorMatrixElement': () => FEColorMatrixElement.internalCreateFEColorMat
rixElement, |
| 212 'SVGFEComponentTransferElement': () => FEComponentTransferElement.internalCrea
teFEComponentTransferElement, |
| 213 'SVGFECompositeElement': () => FECompositeElement.internalCreateFECompositeEle
ment, |
| 214 'SVGFEConvolveMatrixElement': () => FEConvolveMatrixElement.internalCreateFECo
nvolveMatrixElement, |
| 215 'SVGFEDiffuseLightingElement': () => FEDiffuseLightingElement.internalCreateFE
DiffuseLightingElement, |
| 216 'SVGFEDisplacementMapElement': () => FEDisplacementMapElement.internalCreateFE
DisplacementMapElement, |
| 217 'SVGFEDistantLightElement': () => FEDistantLightElement.internalCreateFEDistan
tLightElement, |
| 218 'SVGFEDropShadowElement': () => _SVGFEDropShadowElement.internalCreate_SVGFEDr
opShadowElement, |
| 219 'SVGFEFloodElement': () => FEFloodElement.internalCreateFEFloodElement, |
| 220 'SVGFEFuncAElement': () => FEFuncAElement.internalCreateFEFuncAElement, |
| 221 'SVGFEFuncBElement': () => FEFuncBElement.internalCreateFEFuncBElement, |
| 222 'SVGFEFuncGElement': () => FEFuncGElement.internalCreateFEFuncGElement, |
| 223 'SVGFEFuncRElement': () => FEFuncRElement.internalCreateFEFuncRElement, |
| 224 'SVGFEGaussianBlurElement': () => FEGaussianBlurElement.internalCreateFEGaussi
anBlurElement, |
| 225 'SVGFEImageElement': () => FEImageElement.internalCreateFEImageElement, |
| 226 'SVGFEMergeElement': () => FEMergeElement.internalCreateFEMergeElement, |
| 227 'SVGFEMergeNodeElement': () => FEMergeNodeElement.internalCreateFEMergeNodeEle
ment, |
| 228 'SVGFEMorphologyElement': () => FEMorphologyElement.internalCreateFEMorphology
Element, |
| 229 'SVGFEOffsetElement': () => FEOffsetElement.internalCreateFEOffsetElement, |
| 230 'SVGFEPointLightElement': () => FEPointLightElement.internalCreateFEPointLight
Element, |
| 231 'SVGFESpecularLightingElement': () => FESpecularLightingElement.internalCreate
FESpecularLightingElement, |
| 232 'SVGFESpotLightElement': () => FESpotLightElement.internalCreateFESpotLightEle
ment, |
| 233 'SVGFETileElement': () => FETileElement.internalCreateFETileElement, |
| 234 'SVGFETurbulenceElement': () => FETurbulenceElement.internalCreateFETurbulence
Element, |
| 235 'SVGFilterElement': () => FilterElement.internalCreateFilterElement, |
| 236 'SVGFontElement': () => _SVGFontElement.internalCreate_SVGFontElement, |
| 237 'SVGFontFaceElement': () => _SVGFontFaceElement.internalCreate_SVGFontFaceElem
ent, |
| 238 'SVGFontFaceFormatElement': () => _SVGFontFaceFormatElement.internalCreate_SVG
FontFaceFormatElement, |
| 239 'SVGFontFaceNameElement': () => _SVGFontFaceNameElement.internalCreate_SVGFont
FaceNameElement, |
| 240 'SVGFontFaceSrcElement': () => _SVGFontFaceSrcElement.internalCreate_SVGFontFa
ceSrcElement, |
| 241 'SVGFontFaceUriElement': () => _SVGFontFaceUriElement.internalCreate_SVGFontFa
ceUriElement, |
| 242 'SVGForeignObjectElement': () => ForeignObjectElement.internalCreateForeignObj
ectElement, |
| 243 'SVGGElement': () => GElement.internalCreateGElement, |
| 244 'SVGGeometryElement': () => GeometryElement.internalCreateGeometryElement, |
| 245 'SVGGlyphElement': () => _SVGGlyphElement.internalCreate_SVGGlyphElement, |
| 246 'SVGGlyphRefElement': () => _SVGGlyphRefElement.internalCreate_SVGGlyphRefElem
ent, |
| 247 'SVGGradientElement': () => _GradientElement.internalCreate_GradientElement, |
| 248 'SVGGraphicsElement': () => GraphicsElement.internalCreateGraphicsElement, |
| 249 'SVGHKernElement': () => _SVGHKernElement.internalCreate_SVGHKernElement, |
| 250 'SVGImageElement': () => ImageElement.internalCreateImageElement, |
| 251 'SVGLength': () => Length.internalCreateLength, |
| 252 'SVGLengthList': () => LengthList.internalCreateLengthList, |
| 253 'SVGLineElement': () => LineElement.internalCreateLineElement, |
| 254 'SVGLinearGradientElement': () => LinearGradientElement.internalCreateLinearGr
adientElement, |
| 255 'SVGMPathElement': () => _SVGMPathElement.internalCreate_SVGMPathElement, |
| 256 'SVGMarkerElement': () => MarkerElement.internalCreateMarkerElement, |
| 257 'SVGMaskElement': () => MaskElement.internalCreateMaskElement, |
| 258 'SVGMatrix': () => Matrix.internalCreateMatrix, |
| 259 'SVGMetadataElement': () => MetadataElement.internalCreateMetadataElement, |
| 260 'SVGMissingGlyphElement': () => _SVGMissingGlyphElement.internalCreate_SVGMiss
ingGlyphElement, |
| 261 'SVGNumber': () => Number.internalCreateNumber, |
| 262 'SVGNumberList': () => NumberList.internalCreateNumberList, |
| 263 'SVGPathElement': () => PathElement.internalCreatePathElement, |
| 264 'SVGPathSeg': () => PathSeg.internalCreatePathSeg, |
| 265 'SVGPathSegArcAbs': () => PathSegArcAbs.internalCreatePathSegArcAbs, |
| 266 'SVGPathSegArcRel': () => PathSegArcRel.internalCreatePathSegArcRel, |
| 267 'SVGPathSegClosePath': () => PathSegClosePath.internalCreatePathSegClosePath, |
| 268 'SVGPathSegCurvetoCubicAbs': () => PathSegCurvetoCubicAbs.internalCreatePathSe
gCurvetoCubicAbs, |
| 269 'SVGPathSegCurvetoCubicRel': () => PathSegCurvetoCubicRel.internalCreatePathSe
gCurvetoCubicRel, |
| 270 'SVGPathSegCurvetoCubicSmoothAbs': () => PathSegCurvetoCubicSmoothAbs.internal
CreatePathSegCurvetoCubicSmoothAbs, |
| 271 'SVGPathSegCurvetoCubicSmoothRel': () => PathSegCurvetoCubicSmoothRel.internal
CreatePathSegCurvetoCubicSmoothRel, |
| 272 'SVGPathSegCurvetoQuadraticAbs': () => PathSegCurvetoQuadraticAbs.internalCrea
tePathSegCurvetoQuadraticAbs, |
| 273 'SVGPathSegCurvetoQuadraticRel': () => PathSegCurvetoQuadraticRel.internalCrea
tePathSegCurvetoQuadraticRel, |
| 274 'SVGPathSegCurvetoQuadraticSmoothAbs': () => PathSegCurvetoQuadraticSmoothAbs.
internalCreatePathSegCurvetoQuadraticSmoothAbs, |
| 275 'SVGPathSegCurvetoQuadraticSmoothRel': () => PathSegCurvetoQuadraticSmoothRel.
internalCreatePathSegCurvetoQuadraticSmoothRel, |
| 276 'SVGPathSegLinetoAbs': () => PathSegLinetoAbs.internalCreatePathSegLinetoAbs, |
| 277 'SVGPathSegLinetoHorizontalAbs': () => PathSegLinetoHorizontalAbs.internalCrea
tePathSegLinetoHorizontalAbs, |
| 278 'SVGPathSegLinetoHorizontalRel': () => PathSegLinetoHorizontalRel.internalCrea
tePathSegLinetoHorizontalRel, |
| 279 'SVGPathSegLinetoRel': () => PathSegLinetoRel.internalCreatePathSegLinetoRel, |
| 280 'SVGPathSegLinetoVerticalAbs': () => PathSegLinetoVerticalAbs.internalCreatePa
thSegLinetoVerticalAbs, |
| 281 'SVGPathSegLinetoVerticalRel': () => PathSegLinetoVerticalRel.internalCreatePa
thSegLinetoVerticalRel, |
| 282 'SVGPathSegList': () => PathSegList.internalCreatePathSegList, |
| 283 'SVGPathSegMovetoAbs': () => PathSegMovetoAbs.internalCreatePathSegMovetoAbs, |
| 284 'SVGPathSegMovetoRel': () => PathSegMovetoRel.internalCreatePathSegMovetoRel, |
| 285 'SVGPatternElement': () => PatternElement.internalCreatePatternElement, |
| 286 'SVGPoint': () => Point.internalCreatePoint, |
| 287 'SVGPointList': () => PointList.internalCreatePointList, |
| 288 'SVGPolygonElement': () => PolygonElement.internalCreatePolygonElement, |
| 289 'SVGPolylineElement': () => PolylineElement.internalCreatePolylineElement, |
| 290 'SVGPreserveAspectRatio': () => PreserveAspectRatio.internalCreatePreserveAspe
ctRatio, |
| 291 'SVGRadialGradientElement': () => RadialGradientElement.internalCreateRadialGr
adientElement, |
| 292 'SVGRect': () => Rect.internalCreateRect, |
| 293 'SVGRectElement': () => RectElement.internalCreateRectElement, |
| 294 'SVGRenderingIntent': () => RenderingIntent.internalCreateRenderingIntent, |
| 295 'SVGSVGElement': () => SvgSvgElement.internalCreateSvgSvgElement, |
| 296 'SVGScriptElement': () => ScriptElement.internalCreateScriptElement, |
| 297 'SVGSetElement': () => SetElement.internalCreateSetElement, |
| 298 'SVGStopElement': () => StopElement.internalCreateStopElement, |
| 299 'SVGStringList': () => StringList.internalCreateStringList, |
| 300 'SVGStyleElement': () => StyleElement.internalCreateStyleElement, |
| 301 'SVGSwitchElement': () => SwitchElement.internalCreateSwitchElement, |
| 302 'SVGSymbolElement': () => SymbolElement.internalCreateSymbolElement, |
| 303 'SVGTSpanElement': () => TSpanElement.internalCreateTSpanElement, |
| 304 'SVGTextContentElement': () => TextContentElement.internalCreateTextContentEle
ment, |
| 305 'SVGTextElement': () => TextElement.internalCreateTextElement, |
| 306 'SVGTextPathElement': () => TextPathElement.internalCreateTextPathElement, |
| 307 'SVGTextPositioningElement': () => TextPositioningElement.internalCreateTextPo
sitioningElement, |
| 308 'SVGTitleElement': () => TitleElement.internalCreateTitleElement, |
| 309 'SVGTransform': () => Transform.internalCreateTransform, |
| 310 'SVGTransformList': () => TransformList.internalCreateTransformList, |
| 311 'SVGUnitTypes': () => UnitTypes.internalCreateUnitTypes, |
| 312 'SVGUseElement': () => UseElement.internalCreateUseElement, |
| 313 'SVGVKernElement': () => _SVGVKernElement.internalCreate_SVGVKernElement, |
| 314 'SVGViewElement': () => ViewElement.internalCreateViewElement, |
| 315 'SVGViewSpec': () => ViewSpec.internalCreateViewSpec, |
| 316 'SVGZoomEvent': () => ZoomEvent.internalCreateZoomEvent, |
| 317 |
| 318 }; |
172 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 319 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
173 // for details. All rights reserved. Use of this source code is governed by a | 320 // for details. All rights reserved. Use of this source code is governed by a |
174 // BSD-style license that can be found in the LICENSE file. | 321 // BSD-style license that can be found in the LICENSE file. |
175 | 322 |
176 | 323 |
177 class _SvgElementFactoryProvider { | 324 class _SvgElementFactoryProvider { |
178 static SvgElement createSvgElement_tag(String tag) { | 325 static SvgElement createSvgElement_tag(String tag) { |
179 final Element temp = | 326 final Element temp = |
180 document.createElementNS("http://www.w3.org/2000/svg", tag); | 327 document.createElementNS("http://www.w3.org/2000/svg", tag); |
181 return temp; | 328 return temp; |
182 } | 329 } |
183 } | 330 } |
184 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 331 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
185 // for details. All rights reserved. Use of this source code is governed by a | 332 // for details. All rights reserved. Use of this source code is governed by a |
186 // BSD-style license that can be found in the LICENSE file. | 333 // BSD-style license that can be found in the LICENSE file. |
187 | 334 |
188 // WARNING: Do not edit - generated code. | 335 // WARNING: Do not edit - generated code. |
189 | 336 |
190 | 337 |
191 @DocsEditable() | 338 @DocsEditable() |
192 @DomName('SVGAElement') | 339 @DomName('SVGAElement') |
193 @Unstable() | 340 @Unstable() |
194 class AElement extends GraphicsElement implements UriReference { | 341 class AElement extends GraphicsElement implements UriReference { |
195 // To suppress missing implicit constructor warnings. | 342 // To suppress missing implicit constructor warnings. |
196 factory AElement._() { throw new UnsupportedError("Not supported"); } | 343 factory AElement._() { throw new UnsupportedError("Not supported"); } |
197 | 344 |
198 @DomName('SVGAElement.SVGAElement') | 345 @DomName('SVGAElement.SVGAElement') |
199 @DocsEditable() | 346 @DocsEditable() |
200 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); | 347 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); |
| 348 |
| 349 |
| 350 static AElement internalCreateAElement() { |
| 351 return new AElement._internalWrap(); |
| 352 } |
| 353 |
| 354 factory AElement._internalWrap() { |
| 355 return new AElement.internal_(); |
| 356 } |
| 357 |
| 358 AElement.internal_() : super.internal_(); |
| 359 |
201 /** | 360 /** |
202 * Constructor instantiated by the DOM when a custom element has been created. | 361 * Constructor instantiated by the DOM when a custom element has been created. |
203 * | 362 * |
204 * This can only be called by subclasses from their created constructor. | 363 * This can only be called by subclasses from their created constructor. |
205 */ | 364 */ |
206 AElement.created() : super.created(); | 365 AElement.created() : super.created(); |
207 | 366 |
208 @DomName('SVGAElement.target') | 367 @DomName('SVGAElement.target') |
209 @DocsEditable() | 368 @DocsEditable() |
210 AnimatedString get target => wrap_jso(_blink.BlinkSVGAElement.instance.target_
Getter_(unwrap_jso(this))); | 369 AnimatedString get target => wrap_jso(_blink.BlinkSVGAElement.instance.target_
Getter_(unwrap_jso(this))); |
(...skipping 16 matching lines...) Expand all Loading... |
227 @SupportedBrowser(SupportedBrowser.FIREFOX) | 386 @SupportedBrowser(SupportedBrowser.FIREFOX) |
228 @SupportedBrowser(SupportedBrowser.SAFARI) | 387 @SupportedBrowser(SupportedBrowser.SAFARI) |
229 @Unstable() | 388 @Unstable() |
230 class AltGlyphElement extends TextPositioningElement implements UriReference { | 389 class AltGlyphElement extends TextPositioningElement implements UriReference { |
231 // To suppress missing implicit constructor warnings. | 390 // To suppress missing implicit constructor warnings. |
232 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); } | 391 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); } |
233 | 392 |
234 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') | 393 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') |
235 @DocsEditable() | 394 @DocsEditable() |
236 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("
altGlyph"); | 395 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("
altGlyph"); |
| 396 |
| 397 |
| 398 static AltGlyphElement internalCreateAltGlyphElement() { |
| 399 return new AltGlyphElement._internalWrap(); |
| 400 } |
| 401 |
| 402 factory AltGlyphElement._internalWrap() { |
| 403 return new AltGlyphElement.internal_(); |
| 404 } |
| 405 |
| 406 AltGlyphElement.internal_() : super.internal_(); |
| 407 |
237 /** | 408 /** |
238 * Constructor instantiated by the DOM when a custom element has been created. | 409 * Constructor instantiated by the DOM when a custom element has been created. |
239 * | 410 * |
240 * This can only be called by subclasses from their created constructor. | 411 * This can only be called by subclasses from their created constructor. |
241 */ | 412 */ |
242 AltGlyphElement.created() : super.created(); | 413 AltGlyphElement.created() : super.created(); |
243 | 414 |
244 /// Checks if this type is supported on the current platform. | 415 /// Checks if this type is supported on the current platform. |
245 static bool get supported => true; | 416 static bool get supported => true; |
246 | 417 |
247 @DomName('SVGAltGlyphElement.format') | 418 @DomName('SVGAltGlyphElement.format') |
248 @DocsEditable() | 419 @DocsEditable() |
249 String get format => _blink.BlinkSVGAltGlyphElement.instance.format_Getter_(un
wrap_jso(this)); | 420 String get format => _blink.BlinkSVGAltGlyphElement.instance.format_Getter_(un
wrap_jso(this)); |
250 | 421 |
251 @DomName('SVGAltGlyphElement.format') | 422 @DomName('SVGAltGlyphElement.format') |
252 @DocsEditable() | 423 @DocsEditable() |
253 void set format(String value) => _blink.BlinkSVGAltGlyphElement.instance.forma
t_Setter_(unwrap_jso(this), value); | 424 set format(String value) => _blink.BlinkSVGAltGlyphElement.instance.format_Set
ter_(unwrap_jso(this), value); |
254 | 425 |
255 @DomName('SVGAltGlyphElement.glyphRef') | 426 @DomName('SVGAltGlyphElement.glyphRef') |
256 @DocsEditable() | 427 @DocsEditable() |
257 String get glyphRef => _blink.BlinkSVGAltGlyphElement.instance.glyphRef_Getter
_(unwrap_jso(this)); | 428 String get glyphRef => _blink.BlinkSVGAltGlyphElement.instance.glyphRef_Getter
_(unwrap_jso(this)); |
258 | 429 |
259 @DomName('SVGAltGlyphElement.glyphRef') | 430 @DomName('SVGAltGlyphElement.glyphRef') |
260 @DocsEditable() | 431 @DocsEditable() |
261 void set glyphRef(String value) => _blink.BlinkSVGAltGlyphElement.instance.gly
phRef_Setter_(unwrap_jso(this), value); | 432 set glyphRef(String value) => _blink.BlinkSVGAltGlyphElement.instance.glyphRef
_Setter_(unwrap_jso(this), value); |
262 | 433 |
263 @DomName('SVGAltGlyphElement.href') | 434 @DomName('SVGAltGlyphElement.href') |
264 @DocsEditable() | 435 @DocsEditable() |
265 AnimatedString get href => wrap_jso(_blink.BlinkSVGAltGlyphElement.instance.hr
ef_Getter_(unwrap_jso(this))); | 436 AnimatedString get href => wrap_jso(_blink.BlinkSVGAltGlyphElement.instance.hr
ef_Getter_(unwrap_jso(this))); |
266 | 437 |
267 } | 438 } |
268 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 439 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
269 // for details. All rights reserved. Use of this source code is governed by a | 440 // for details. All rights reserved. Use of this source code is governed by a |
270 // BSD-style license that can be found in the LICENSE file. | 441 // BSD-style license that can be found in the LICENSE file. |
271 | 442 |
272 // WARNING: Do not edit - generated code. | 443 // WARNING: Do not edit - generated code. |
273 | 444 |
274 | 445 |
275 @DocsEditable() | 446 @DocsEditable() |
276 @DomName('SVGAngle') | 447 @DomName('SVGAngle') |
277 @Unstable() | 448 @Unstable() |
278 class Angle extends NativeFieldWrapperClass2 { | 449 class Angle extends NativeFieldWrapperClass2 { |
279 // To suppress missing implicit constructor warnings. | 450 // To suppress missing implicit constructor warnings. |
280 factory Angle._() { throw new UnsupportedError("Not supported"); } | 451 factory Angle._() { throw new UnsupportedError("Not supported"); } |
281 | 452 |
| 453 static Angle internalCreateAngle() { |
| 454 return new Angle._internalWrap(); |
| 455 } |
| 456 |
| 457 js.JsObject blink_jsObject; |
| 458 |
| 459 factory Angle._internalWrap() { |
| 460 return new Angle.internal_(); |
| 461 } |
| 462 |
| 463 Angle.internal_() { } |
| 464 |
| 465 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 466 int get hashCode => unwrap_jso(this).hashCode; |
| 467 |
282 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') | 468 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') |
283 @DocsEditable() | 469 @DocsEditable() |
284 static const int SVG_ANGLETYPE_DEG = 2; | 470 static const int SVG_ANGLETYPE_DEG = 2; |
285 | 471 |
286 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD') | 472 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD') |
287 @DocsEditable() | 473 @DocsEditable() |
288 static const int SVG_ANGLETYPE_GRAD = 4; | 474 static const int SVG_ANGLETYPE_GRAD = 4; |
289 | 475 |
290 @DomName('SVGAngle.SVG_ANGLETYPE_RAD') | 476 @DomName('SVGAngle.SVG_ANGLETYPE_RAD') |
291 @DocsEditable() | 477 @DocsEditable() |
(...skipping 10 matching lines...) Expand all Loading... |
302 @DomName('SVGAngle.unitType') | 488 @DomName('SVGAngle.unitType') |
303 @DocsEditable() | 489 @DocsEditable() |
304 int get unitType => _blink.BlinkSVGAngle.instance.unitType_Getter_(unwrap_jso(
this)); | 490 int get unitType => _blink.BlinkSVGAngle.instance.unitType_Getter_(unwrap_jso(
this)); |
305 | 491 |
306 @DomName('SVGAngle.value') | 492 @DomName('SVGAngle.value') |
307 @DocsEditable() | 493 @DocsEditable() |
308 num get value => _blink.BlinkSVGAngle.instance.value_Getter_(unwrap_jso(this))
; | 494 num get value => _blink.BlinkSVGAngle.instance.value_Getter_(unwrap_jso(this))
; |
309 | 495 |
310 @DomName('SVGAngle.value') | 496 @DomName('SVGAngle.value') |
311 @DocsEditable() | 497 @DocsEditable() |
312 void set value(num value) => _blink.BlinkSVGAngle.instance.value_Setter_(unwra
p_jso(this), value); | 498 set value(num value) => _blink.BlinkSVGAngle.instance.value_Setter_(unwrap_jso
(this), value); |
313 | 499 |
314 @DomName('SVGAngle.valueAsString') | 500 @DomName('SVGAngle.valueAsString') |
315 @DocsEditable() | 501 @DocsEditable() |
316 String get valueAsString => _blink.BlinkSVGAngle.instance.valueAsString_Getter
_(unwrap_jso(this)); | 502 String get valueAsString => _blink.BlinkSVGAngle.instance.valueAsString_Getter
_(unwrap_jso(this)); |
317 | 503 |
318 @DomName('SVGAngle.valueAsString') | 504 @DomName('SVGAngle.valueAsString') |
319 @DocsEditable() | 505 @DocsEditable() |
320 void set valueAsString(String value) => _blink.BlinkSVGAngle.instance.valueAsS
tring_Setter_(unwrap_jso(this), value); | 506 set valueAsString(String value) => _blink.BlinkSVGAngle.instance.valueAsString
_Setter_(unwrap_jso(this), value); |
321 | 507 |
322 @DomName('SVGAngle.valueInSpecifiedUnits') | 508 @DomName('SVGAngle.valueInSpecifiedUnits') |
323 @DocsEditable() | 509 @DocsEditable() |
324 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.instance.valueInSpecifie
dUnits_Getter_(unwrap_jso(this)); | 510 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.instance.valueInSpecifie
dUnits_Getter_(unwrap_jso(this)); |
325 | 511 |
326 @DomName('SVGAngle.valueInSpecifiedUnits') | 512 @DomName('SVGAngle.valueInSpecifiedUnits') |
327 @DocsEditable() | 513 @DocsEditable() |
328 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.instance.val
ueInSpecifiedUnits_Setter_(unwrap_jso(this), value); | 514 set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.instance.valueInS
pecifiedUnits_Setter_(unwrap_jso(this), value); |
329 | 515 |
330 @DomName('SVGAngle.convertToSpecifiedUnits') | 516 @DomName('SVGAngle.convertToSpecifiedUnits') |
331 @DocsEditable() | 517 @DocsEditable() |
332 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.instance.co
nvertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType); | 518 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.instance.co
nvertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType); |
333 | 519 |
334 @DomName('SVGAngle.newValueSpecifiedUnits') | 520 @DomName('SVGAngle.newValueSpecifiedUnits') |
335 @DocsEditable() | 521 @DocsEditable() |
336 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGAngle.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), uni
tType, valueInSpecifiedUnits); | 522 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGAngle.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), uni
tType, valueInSpecifiedUnits); |
337 | 523 |
338 } | 524 } |
(...skipping 10 matching lines...) Expand all Loading... |
349 @SupportedBrowser(SupportedBrowser.FIREFOX) | 535 @SupportedBrowser(SupportedBrowser.FIREFOX) |
350 @SupportedBrowser(SupportedBrowser.SAFARI) | 536 @SupportedBrowser(SupportedBrowser.SAFARI) |
351 @Unstable() | 537 @Unstable() |
352 class AnimateElement extends AnimationElement { | 538 class AnimateElement extends AnimationElement { |
353 // To suppress missing implicit constructor warnings. | 539 // To suppress missing implicit constructor warnings. |
354 factory AnimateElement._() { throw new UnsupportedError("Not supported"); } | 540 factory AnimateElement._() { throw new UnsupportedError("Not supported"); } |
355 | 541 |
356 @DomName('SVGAnimateElement.SVGAnimateElement') | 542 @DomName('SVGAnimateElement.SVGAnimateElement') |
357 @DocsEditable() | 543 @DocsEditable() |
358 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a
nimate"); | 544 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a
nimate"); |
| 545 |
| 546 |
| 547 static AnimateElement internalCreateAnimateElement() { |
| 548 return new AnimateElement._internalWrap(); |
| 549 } |
| 550 |
| 551 factory AnimateElement._internalWrap() { |
| 552 return new AnimateElement.internal_(); |
| 553 } |
| 554 |
| 555 AnimateElement.internal_() : super.internal_(); |
| 556 |
359 /** | 557 /** |
360 * Constructor instantiated by the DOM when a custom element has been created. | 558 * Constructor instantiated by the DOM when a custom element has been created. |
361 * | 559 * |
362 * This can only be called by subclasses from their created constructor. | 560 * This can only be called by subclasses from their created constructor. |
363 */ | 561 */ |
364 AnimateElement.created() : super.created(); | 562 AnimateElement.created() : super.created(); |
365 | 563 |
366 /// Checks if this type is supported on the current platform. | 564 /// Checks if this type is supported on the current platform. |
367 static bool get supported => true; | 565 static bool get supported => true; |
368 | 566 |
(...skipping 11 matching lines...) Expand all Loading... |
380 @SupportedBrowser(SupportedBrowser.FIREFOX) | 578 @SupportedBrowser(SupportedBrowser.FIREFOX) |
381 @SupportedBrowser(SupportedBrowser.SAFARI) | 579 @SupportedBrowser(SupportedBrowser.SAFARI) |
382 @Unstable() | 580 @Unstable() |
383 class AnimateMotionElement extends AnimationElement { | 581 class AnimateMotionElement extends AnimationElement { |
384 // To suppress missing implicit constructor warnings. | 582 // To suppress missing implicit constructor warnings. |
385 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported")
; } | 583 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported")
; } |
386 | 584 |
387 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') | 585 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') |
388 @DocsEditable() | 586 @DocsEditable() |
389 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_
tag("animateMotion"); | 587 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_
tag("animateMotion"); |
| 588 |
| 589 |
| 590 static AnimateMotionElement internalCreateAnimateMotionElement() { |
| 591 return new AnimateMotionElement._internalWrap(); |
| 592 } |
| 593 |
| 594 factory AnimateMotionElement._internalWrap() { |
| 595 return new AnimateMotionElement.internal_(); |
| 596 } |
| 597 |
| 598 AnimateMotionElement.internal_() : super.internal_(); |
| 599 |
390 /** | 600 /** |
391 * Constructor instantiated by the DOM when a custom element has been created. | 601 * Constructor instantiated by the DOM when a custom element has been created. |
392 * | 602 * |
393 * This can only be called by subclasses from their created constructor. | 603 * This can only be called by subclasses from their created constructor. |
394 */ | 604 */ |
395 AnimateMotionElement.created() : super.created(); | 605 AnimateMotionElement.created() : super.created(); |
396 | 606 |
397 /// Checks if this type is supported on the current platform. | 607 /// Checks if this type is supported on the current platform. |
398 static bool get supported => true; | 608 static bool get supported => true; |
399 | 609 |
(...skipping 11 matching lines...) Expand all Loading... |
411 @SupportedBrowser(SupportedBrowser.FIREFOX) | 621 @SupportedBrowser(SupportedBrowser.FIREFOX) |
412 @SupportedBrowser(SupportedBrowser.SAFARI) | 622 @SupportedBrowser(SupportedBrowser.SAFARI) |
413 @Unstable() | 623 @Unstable() |
414 class AnimateTransformElement extends AnimationElement { | 624 class AnimateTransformElement extends AnimationElement { |
415 // To suppress missing implicit constructor warnings. | 625 // To suppress missing implicit constructor warnings. |
416 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte
d"); } | 626 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte
d"); } |
417 | 627 |
418 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') | 628 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') |
419 @DocsEditable() | 629 @DocsEditable() |
420 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("animateTransform"); | 630 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("animateTransform"); |
| 631 |
| 632 |
| 633 static AnimateTransformElement internalCreateAnimateTransformElement() { |
| 634 return new AnimateTransformElement._internalWrap(); |
| 635 } |
| 636 |
| 637 factory AnimateTransformElement._internalWrap() { |
| 638 return new AnimateTransformElement.internal_(); |
| 639 } |
| 640 |
| 641 AnimateTransformElement.internal_() : super.internal_(); |
| 642 |
421 /** | 643 /** |
422 * Constructor instantiated by the DOM when a custom element has been created. | 644 * Constructor instantiated by the DOM when a custom element has been created. |
423 * | 645 * |
424 * This can only be called by subclasses from their created constructor. | 646 * This can only be called by subclasses from their created constructor. |
425 */ | 647 */ |
426 AnimateTransformElement.created() : super.created(); | 648 AnimateTransformElement.created() : super.created(); |
427 | 649 |
428 /// Checks if this type is supported on the current platform. | 650 /// Checks if this type is supported on the current platform. |
429 static bool get supported => true; | 651 static bool get supported => true; |
430 | 652 |
431 } | 653 } |
432 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 654 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
433 // for details. All rights reserved. Use of this source code is governed by a | 655 // for details. All rights reserved. Use of this source code is governed by a |
434 // BSD-style license that can be found in the LICENSE file. | 656 // BSD-style license that can be found in the LICENSE file. |
435 | 657 |
436 // WARNING: Do not edit - generated code. | 658 // WARNING: Do not edit - generated code. |
437 | 659 |
438 | 660 |
439 @DocsEditable() | 661 @DocsEditable() |
440 @DomName('SVGAnimatedAngle') | 662 @DomName('SVGAnimatedAngle') |
441 @Unstable() | 663 @Unstable() |
442 class AnimatedAngle extends NativeFieldWrapperClass2 { | 664 class AnimatedAngle extends NativeFieldWrapperClass2 { |
443 // To suppress missing implicit constructor warnings. | 665 // To suppress missing implicit constructor warnings. |
444 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } | 666 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } |
445 | 667 |
| 668 static AnimatedAngle internalCreateAnimatedAngle() { |
| 669 return new AnimatedAngle._internalWrap(); |
| 670 } |
| 671 |
| 672 js.JsObject blink_jsObject; |
| 673 |
| 674 factory AnimatedAngle._internalWrap() { |
| 675 return new AnimatedAngle.internal_(); |
| 676 } |
| 677 |
| 678 AnimatedAngle.internal_() { } |
| 679 |
| 680 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 681 int get hashCode => unwrap_jso(this).hashCode; |
| 682 |
446 @DomName('SVGAnimatedAngle.animVal') | 683 @DomName('SVGAnimatedAngle.animVal') |
447 @DocsEditable() | 684 @DocsEditable() |
448 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge
tter_(unwrap_jso(this))); | 685 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge
tter_(unwrap_jso(this))); |
449 | 686 |
450 @DomName('SVGAnimatedAngle.baseVal') | 687 @DomName('SVGAnimatedAngle.baseVal') |
451 @DocsEditable() | 688 @DocsEditable() |
452 Angle get baseVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.baseVal_Ge
tter_(unwrap_jso(this))); | 689 Angle get baseVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.baseVal_Ge
tter_(unwrap_jso(this))); |
453 | 690 |
454 } | 691 } |
455 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 692 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
456 // for details. All rights reserved. Use of this source code is governed by a | 693 // for details. All rights reserved. Use of this source code is governed by a |
457 // BSD-style license that can be found in the LICENSE file. | 694 // BSD-style license that can be found in the LICENSE file. |
458 | 695 |
459 // WARNING: Do not edit - generated code. | 696 // WARNING: Do not edit - generated code. |
460 | 697 |
461 | 698 |
462 @DocsEditable() | 699 @DocsEditable() |
463 @DomName('SVGAnimatedBoolean') | 700 @DomName('SVGAnimatedBoolean') |
464 @Unstable() | 701 @Unstable() |
465 class AnimatedBoolean extends NativeFieldWrapperClass2 { | 702 class AnimatedBoolean extends NativeFieldWrapperClass2 { |
466 // To suppress missing implicit constructor warnings. | 703 // To suppress missing implicit constructor warnings. |
467 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } | 704 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } |
468 | 705 |
| 706 static AnimatedBoolean internalCreateAnimatedBoolean() { |
| 707 return new AnimatedBoolean._internalWrap(); |
| 708 } |
| 709 |
| 710 js.JsObject blink_jsObject; |
| 711 |
| 712 factory AnimatedBoolean._internalWrap() { |
| 713 return new AnimatedBoolean.internal_(); |
| 714 } |
| 715 |
| 716 AnimatedBoolean.internal_() { } |
| 717 |
| 718 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 719 int get hashCode => unwrap_jso(this).hashCode; |
| 720 |
469 @DomName('SVGAnimatedBoolean.animVal') | 721 @DomName('SVGAnimatedBoolean.animVal') |
470 @DocsEditable() | 722 @DocsEditable() |
471 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(un
wrap_jso(this)); | 723 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(un
wrap_jso(this)); |
472 | 724 |
473 @DomName('SVGAnimatedBoolean.baseVal') | 725 @DomName('SVGAnimatedBoolean.baseVal') |
474 @DocsEditable() | 726 @DocsEditable() |
475 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(un
wrap_jso(this)); | 727 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(un
wrap_jso(this)); |
476 | 728 |
477 @DomName('SVGAnimatedBoolean.baseVal') | 729 @DomName('SVGAnimatedBoolean.baseVal') |
478 @DocsEditable() | 730 @DocsEditable() |
479 void set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.instance.baseVa
l_Setter_(unwrap_jso(this), value); | 731 set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Set
ter_(unwrap_jso(this), value); |
480 | 732 |
481 } | 733 } |
482 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 734 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
483 // for details. All rights reserved. Use of this source code is governed by a | 735 // for details. All rights reserved. Use of this source code is governed by a |
484 // BSD-style license that can be found in the LICENSE file. | 736 // BSD-style license that can be found in the LICENSE file. |
485 | 737 |
486 // WARNING: Do not edit - generated code. | 738 // WARNING: Do not edit - generated code. |
487 | 739 |
488 | 740 |
489 @DocsEditable() | 741 @DocsEditable() |
490 @DomName('SVGAnimatedEnumeration') | 742 @DomName('SVGAnimatedEnumeration') |
491 @Unstable() | 743 @Unstable() |
492 class AnimatedEnumeration extends NativeFieldWrapperClass2 { | 744 class AnimatedEnumeration extends NativeFieldWrapperClass2 { |
493 // To suppress missing implicit constructor warnings. | 745 // To suppress missing implicit constructor warnings. |
494 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} | 746 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} |
495 | 747 |
| 748 static AnimatedEnumeration internalCreateAnimatedEnumeration() { |
| 749 return new AnimatedEnumeration._internalWrap(); |
| 750 } |
| 751 |
| 752 js.JsObject blink_jsObject; |
| 753 |
| 754 factory AnimatedEnumeration._internalWrap() { |
| 755 return new AnimatedEnumeration.internal_(); |
| 756 } |
| 757 |
| 758 AnimatedEnumeration.internal_() { } |
| 759 |
| 760 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 761 int get hashCode => unwrap_jso(this).hashCode; |
| 762 |
496 @DomName('SVGAnimatedEnumeration.animVal') | 763 @DomName('SVGAnimatedEnumeration.animVal') |
497 @DocsEditable() | 764 @DocsEditable() |
498 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_
(unwrap_jso(this)); | 765 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_
(unwrap_jso(this)); |
499 | 766 |
500 @DomName('SVGAnimatedEnumeration.baseVal') | 767 @DomName('SVGAnimatedEnumeration.baseVal') |
501 @DocsEditable() | 768 @DocsEditable() |
502 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_
(unwrap_jso(this)); | 769 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_
(unwrap_jso(this)); |
503 | 770 |
504 @DomName('SVGAnimatedEnumeration.baseVal') | 771 @DomName('SVGAnimatedEnumeration.baseVal') |
505 @DocsEditable() | 772 @DocsEditable() |
506 void set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.instance.bas
eVal_Setter_(unwrap_jso(this), value); | 773 set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_
Setter_(unwrap_jso(this), value); |
507 | 774 |
508 } | 775 } |
509 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 776 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
510 // for details. All rights reserved. Use of this source code is governed by a | 777 // for details. All rights reserved. Use of this source code is governed by a |
511 // BSD-style license that can be found in the LICENSE file. | 778 // BSD-style license that can be found in the LICENSE file. |
512 | 779 |
513 // WARNING: Do not edit - generated code. | 780 // WARNING: Do not edit - generated code. |
514 | 781 |
515 | 782 |
516 @DocsEditable() | 783 @DocsEditable() |
517 @DomName('SVGAnimatedInteger') | 784 @DomName('SVGAnimatedInteger') |
518 @Unstable() | 785 @Unstable() |
519 class AnimatedInteger extends NativeFieldWrapperClass2 { | 786 class AnimatedInteger extends NativeFieldWrapperClass2 { |
520 // To suppress missing implicit constructor warnings. | 787 // To suppress missing implicit constructor warnings. |
521 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } | 788 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } |
522 | 789 |
| 790 static AnimatedInteger internalCreateAnimatedInteger() { |
| 791 return new AnimatedInteger._internalWrap(); |
| 792 } |
| 793 |
| 794 js.JsObject blink_jsObject; |
| 795 |
| 796 factory AnimatedInteger._internalWrap() { |
| 797 return new AnimatedInteger.internal_(); |
| 798 } |
| 799 |
| 800 AnimatedInteger.internal_() { } |
| 801 |
| 802 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 803 int get hashCode => unwrap_jso(this).hashCode; |
| 804 |
523 @DomName('SVGAnimatedInteger.animVal') | 805 @DomName('SVGAnimatedInteger.animVal') |
524 @DocsEditable() | 806 @DocsEditable() |
525 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(unw
rap_jso(this)); | 807 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(unw
rap_jso(this)); |
526 | 808 |
527 @DomName('SVGAnimatedInteger.baseVal') | 809 @DomName('SVGAnimatedInteger.baseVal') |
528 @DocsEditable() | 810 @DocsEditable() |
529 int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(unw
rap_jso(this)); | 811 int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(unw
rap_jso(this)); |
530 | 812 |
531 @DomName('SVGAnimatedInteger.baseVal') | 813 @DomName('SVGAnimatedInteger.baseVal') |
532 @DocsEditable() | 814 @DocsEditable() |
533 void set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.instance.baseVal
_Setter_(unwrap_jso(this), value); | 815 set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Sett
er_(unwrap_jso(this), value); |
534 | 816 |
535 } | 817 } |
536 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 818 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
537 // for details. All rights reserved. Use of this source code is governed by a | 819 // for details. All rights reserved. Use of this source code is governed by a |
538 // BSD-style license that can be found in the LICENSE file. | 820 // BSD-style license that can be found in the LICENSE file. |
539 | 821 |
540 // WARNING: Do not edit - generated code. | 822 // WARNING: Do not edit - generated code. |
541 | 823 |
542 | 824 |
543 @DocsEditable() | 825 @DocsEditable() |
544 @DomName('SVGAnimatedLength') | 826 @DomName('SVGAnimatedLength') |
545 @Unstable() | 827 @Unstable() |
546 class AnimatedLength extends NativeFieldWrapperClass2 { | 828 class AnimatedLength extends NativeFieldWrapperClass2 { |
547 // To suppress missing implicit constructor warnings. | 829 // To suppress missing implicit constructor warnings. |
548 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } | 830 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } |
549 | 831 |
| 832 static AnimatedLength internalCreateAnimatedLength() { |
| 833 return new AnimatedLength._internalWrap(); |
| 834 } |
| 835 |
| 836 js.JsObject blink_jsObject; |
| 837 |
| 838 factory AnimatedLength._internalWrap() { |
| 839 return new AnimatedLength.internal_(); |
| 840 } |
| 841 |
| 842 AnimatedLength.internal_() { } |
| 843 |
| 844 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 845 int get hashCode => unwrap_jso(this).hashCode; |
| 846 |
550 @DomName('SVGAnimatedLength.animVal') | 847 @DomName('SVGAnimatedLength.animVal') |
551 @DocsEditable() | 848 @DocsEditable() |
552 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_
Getter_(unwrap_jso(this))); | 849 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_
Getter_(unwrap_jso(this))); |
553 | 850 |
554 @DomName('SVGAnimatedLength.baseVal') | 851 @DomName('SVGAnimatedLength.baseVal') |
555 @DocsEditable() | 852 @DocsEditable() |
556 Length get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.baseVal_
Getter_(unwrap_jso(this))); | 853 Length get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.baseVal_
Getter_(unwrap_jso(this))); |
557 | 854 |
558 } | 855 } |
559 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 856 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
560 // for details. All rights reserved. Use of this source code is governed by a | 857 // for details. All rights reserved. Use of this source code is governed by a |
561 // BSD-style license that can be found in the LICENSE file. | 858 // BSD-style license that can be found in the LICENSE file. |
562 | 859 |
563 // WARNING: Do not edit - generated code. | 860 // WARNING: Do not edit - generated code. |
564 | 861 |
565 | 862 |
566 @DocsEditable() | 863 @DocsEditable() |
567 @DomName('SVGAnimatedLengthList') | 864 @DomName('SVGAnimatedLengthList') |
568 @Unstable() | 865 @Unstable() |
569 class AnimatedLengthList extends NativeFieldWrapperClass2 { | 866 class AnimatedLengthList extends NativeFieldWrapperClass2 { |
570 // To suppress missing implicit constructor warnings. | 867 // To suppress missing implicit constructor warnings. |
571 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported");
} | 868 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported");
} |
572 | 869 |
| 870 static AnimatedLengthList internalCreateAnimatedLengthList() { |
| 871 return new AnimatedLengthList._internalWrap(); |
| 872 } |
| 873 |
| 874 js.JsObject blink_jsObject; |
| 875 |
| 876 factory AnimatedLengthList._internalWrap() { |
| 877 return new AnimatedLengthList.internal_(); |
| 878 } |
| 879 |
| 880 AnimatedLengthList.internal_() { } |
| 881 |
| 882 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 883 int get hashCode => unwrap_jso(this).hashCode; |
| 884 |
573 @DomName('SVGAnimatedLengthList.animVal') | 885 @DomName('SVGAnimatedLengthList.animVal') |
574 @DocsEditable() | 886 @DocsEditable() |
575 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
animVal_Getter_(unwrap_jso(this))); | 887 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
animVal_Getter_(unwrap_jso(this))); |
576 | 888 |
577 @DomName('SVGAnimatedLengthList.baseVal') | 889 @DomName('SVGAnimatedLengthList.baseVal') |
578 @DocsEditable() | 890 @DocsEditable() |
579 LengthList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
baseVal_Getter_(unwrap_jso(this))); | 891 LengthList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
baseVal_Getter_(unwrap_jso(this))); |
580 | 892 |
581 } | 893 } |
582 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 894 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
583 // for details. All rights reserved. Use of this source code is governed by a | 895 // for details. All rights reserved. Use of this source code is governed by a |
584 // BSD-style license that can be found in the LICENSE file. | 896 // BSD-style license that can be found in the LICENSE file. |
585 | 897 |
586 // WARNING: Do not edit - generated code. | 898 // WARNING: Do not edit - generated code. |
587 | 899 |
588 | 900 |
589 @DocsEditable() | 901 @DocsEditable() |
590 @DomName('SVGAnimatedNumber') | 902 @DomName('SVGAnimatedNumber') |
591 @Unstable() | 903 @Unstable() |
592 class AnimatedNumber extends NativeFieldWrapperClass2 { | 904 class AnimatedNumber extends NativeFieldWrapperClass2 { |
593 // To suppress missing implicit constructor warnings. | 905 // To suppress missing implicit constructor warnings. |
594 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } | 906 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } |
595 | 907 |
| 908 static AnimatedNumber internalCreateAnimatedNumber() { |
| 909 return new AnimatedNumber._internalWrap(); |
| 910 } |
| 911 |
| 912 js.JsObject blink_jsObject; |
| 913 |
| 914 factory AnimatedNumber._internalWrap() { |
| 915 return new AnimatedNumber.internal_(); |
| 916 } |
| 917 |
| 918 AnimatedNumber.internal_() { } |
| 919 |
| 920 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 921 int get hashCode => unwrap_jso(this).hashCode; |
| 922 |
596 @DomName('SVGAnimatedNumber.animVal') | 923 @DomName('SVGAnimatedNumber.animVal') |
597 @DocsEditable() | 924 @DocsEditable() |
598 double get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(u
nwrap_jso(this)); | 925 num get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(unwr
ap_jso(this)); |
599 | 926 |
600 @DomName('SVGAnimatedNumber.baseVal') | 927 @DomName('SVGAnimatedNumber.baseVal') |
601 @DocsEditable() | 928 @DocsEditable() |
602 num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(unwr
ap_jso(this)); | 929 num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(unwr
ap_jso(this)); |
603 | 930 |
604 @DomName('SVGAnimatedNumber.baseVal') | 931 @DomName('SVGAnimatedNumber.baseVal') |
605 @DocsEditable() | 932 @DocsEditable() |
606 void set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.instance.baseVal_
Setter_(unwrap_jso(this), value); | 933 set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Sette
r_(unwrap_jso(this), value); |
607 | 934 |
608 } | 935 } |
609 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 936 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
610 // for details. All rights reserved. Use of this source code is governed by a | 937 // for details. All rights reserved. Use of this source code is governed by a |
611 // BSD-style license that can be found in the LICENSE file. | 938 // BSD-style license that can be found in the LICENSE file. |
612 | 939 |
613 // WARNING: Do not edit - generated code. | 940 // WARNING: Do not edit - generated code. |
614 | 941 |
615 | 942 |
616 @DocsEditable() | 943 @DocsEditable() |
617 @DomName('SVGAnimatedNumberList') | 944 @DomName('SVGAnimatedNumberList') |
618 @Unstable() | 945 @Unstable() |
619 class AnimatedNumberList extends NativeFieldWrapperClass2 { | 946 class AnimatedNumberList extends NativeFieldWrapperClass2 { |
620 // To suppress missing implicit constructor warnings. | 947 // To suppress missing implicit constructor warnings. |
621 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported");
} | 948 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported");
} |
622 | 949 |
| 950 static AnimatedNumberList internalCreateAnimatedNumberList() { |
| 951 return new AnimatedNumberList._internalWrap(); |
| 952 } |
| 953 |
| 954 js.JsObject blink_jsObject; |
| 955 |
| 956 factory AnimatedNumberList._internalWrap() { |
| 957 return new AnimatedNumberList.internal_(); |
| 958 } |
| 959 |
| 960 AnimatedNumberList.internal_() { } |
| 961 |
| 962 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 963 int get hashCode => unwrap_jso(this).hashCode; |
| 964 |
623 @DomName('SVGAnimatedNumberList.animVal') | 965 @DomName('SVGAnimatedNumberList.animVal') |
624 @DocsEditable() | 966 @DocsEditable() |
625 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
animVal_Getter_(unwrap_jso(this))); | 967 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
animVal_Getter_(unwrap_jso(this))); |
626 | 968 |
627 @DomName('SVGAnimatedNumberList.baseVal') | 969 @DomName('SVGAnimatedNumberList.baseVal') |
628 @DocsEditable() | 970 @DocsEditable() |
629 NumberList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
baseVal_Getter_(unwrap_jso(this))); | 971 NumberList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
baseVal_Getter_(unwrap_jso(this))); |
630 | 972 |
631 } | 973 } |
632 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 974 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
633 // for details. All rights reserved. Use of this source code is governed by a | 975 // for details. All rights reserved. Use of this source code is governed by a |
634 // BSD-style license that can be found in the LICENSE file. | 976 // BSD-style license that can be found in the LICENSE file. |
635 | 977 |
636 // WARNING: Do not edit - generated code. | 978 // WARNING: Do not edit - generated code. |
637 | 979 |
638 | 980 |
639 @DocsEditable() | 981 @DocsEditable() |
640 @DomName('SVGAnimatedPreserveAspectRatio') | 982 @DomName('SVGAnimatedPreserveAspectRatio') |
641 @Unstable() | 983 @Unstable() |
642 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 { | 984 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 { |
643 // To suppress missing implicit constructor warnings. | 985 // To suppress missing implicit constructor warnings. |
644 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp
orted"); } | 986 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp
orted"); } |
645 | 987 |
| 988 static AnimatedPreserveAspectRatio internalCreateAnimatedPreserveAspectRatio()
{ |
| 989 return new AnimatedPreserveAspectRatio._internalWrap(); |
| 990 } |
| 991 |
| 992 js.JsObject blink_jsObject; |
| 993 |
| 994 factory AnimatedPreserveAspectRatio._internalWrap() { |
| 995 return new AnimatedPreserveAspectRatio.internal_(); |
| 996 } |
| 997 |
| 998 AnimatedPreserveAspectRatio.internal_() { } |
| 999 |
| 1000 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 1001 int get hashCode => unwrap_jso(this).hashCode; |
| 1002 |
646 @DomName('SVGAnimatedPreserveAspectRatio.animVal') | 1003 @DomName('SVGAnimatedPreserveAspectRatio.animVal') |
647 @DocsEditable() | 1004 @DocsEditable() |
648 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.animVal_Getter_(unwrap_jso(this))); | 1005 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.animVal_Getter_(unwrap_jso(this))); |
649 | 1006 |
650 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') | 1007 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') |
651 @DocsEditable() | 1008 @DocsEditable() |
652 PreserveAspectRatio get baseVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.baseVal_Getter_(unwrap_jso(this))); | 1009 PreserveAspectRatio get baseVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.baseVal_Getter_(unwrap_jso(this))); |
653 | 1010 |
654 } | 1011 } |
655 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1012 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
656 // for details. All rights reserved. Use of this source code is governed by a | 1013 // for details. All rights reserved. Use of this source code is governed by a |
657 // BSD-style license that can be found in the LICENSE file. | 1014 // BSD-style license that can be found in the LICENSE file. |
658 | 1015 |
659 // WARNING: Do not edit - generated code. | 1016 // WARNING: Do not edit - generated code. |
660 | 1017 |
661 | 1018 |
662 @DocsEditable() | 1019 @DocsEditable() |
663 @DomName('SVGAnimatedRect') | 1020 @DomName('SVGAnimatedRect') |
664 @Unstable() | 1021 @Unstable() |
665 class AnimatedRect extends NativeFieldWrapperClass2 { | 1022 class AnimatedRect extends NativeFieldWrapperClass2 { |
666 // To suppress missing implicit constructor warnings. | 1023 // To suppress missing implicit constructor warnings. |
667 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } | 1024 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } |
668 | 1025 |
| 1026 static AnimatedRect internalCreateAnimatedRect() { |
| 1027 return new AnimatedRect._internalWrap(); |
| 1028 } |
| 1029 |
| 1030 js.JsObject blink_jsObject; |
| 1031 |
| 1032 factory AnimatedRect._internalWrap() { |
| 1033 return new AnimatedRect.internal_(); |
| 1034 } |
| 1035 |
| 1036 AnimatedRect.internal_() { } |
| 1037 |
| 1038 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 1039 int get hashCode => unwrap_jso(this).hashCode; |
| 1040 |
669 @DomName('SVGAnimatedRect.animVal') | 1041 @DomName('SVGAnimatedRect.animVal') |
670 @DocsEditable() | 1042 @DocsEditable() |
671 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett
er_(unwrap_jso(this))); | 1043 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett
er_(unwrap_jso(this))); |
672 | 1044 |
673 @DomName('SVGAnimatedRect.baseVal') | 1045 @DomName('SVGAnimatedRect.baseVal') |
674 @DocsEditable() | 1046 @DocsEditable() |
675 Rect get baseVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.baseVal_Gett
er_(unwrap_jso(this))); | 1047 Rect get baseVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.baseVal_Gett
er_(unwrap_jso(this))); |
676 | 1048 |
677 } | 1049 } |
678 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1050 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
679 // for details. All rights reserved. Use of this source code is governed by a | 1051 // for details. All rights reserved. Use of this source code is governed by a |
680 // BSD-style license that can be found in the LICENSE file. | 1052 // BSD-style license that can be found in the LICENSE file. |
681 | 1053 |
682 // WARNING: Do not edit - generated code. | 1054 // WARNING: Do not edit - generated code. |
683 | 1055 |
684 | 1056 |
685 @DocsEditable() | 1057 @DocsEditable() |
686 @DomName('SVGAnimatedString') | 1058 @DomName('SVGAnimatedString') |
687 @Unstable() | 1059 @Unstable() |
688 class AnimatedString extends NativeFieldWrapperClass2 { | 1060 class AnimatedString extends NativeFieldWrapperClass2 { |
689 // To suppress missing implicit constructor warnings. | 1061 // To suppress missing implicit constructor warnings. |
690 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } | 1062 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } |
691 | 1063 |
| 1064 static AnimatedString internalCreateAnimatedString() { |
| 1065 return new AnimatedString._internalWrap(); |
| 1066 } |
| 1067 |
| 1068 js.JsObject blink_jsObject; |
| 1069 |
| 1070 factory AnimatedString._internalWrap() { |
| 1071 return new AnimatedString.internal_(); |
| 1072 } |
| 1073 |
| 1074 AnimatedString.internal_() { } |
| 1075 |
| 1076 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 1077 int get hashCode => unwrap_jso(this).hashCode; |
| 1078 |
692 @DomName('SVGAnimatedString.animVal') | 1079 @DomName('SVGAnimatedString.animVal') |
693 @DocsEditable() | 1080 @DocsEditable() |
694 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(u
nwrap_jso(this)); | 1081 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(u
nwrap_jso(this)); |
695 | 1082 |
696 @DomName('SVGAnimatedString.baseVal') | 1083 @DomName('SVGAnimatedString.baseVal') |
697 @DocsEditable() | 1084 @DocsEditable() |
698 String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(u
nwrap_jso(this)); | 1085 String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(u
nwrap_jso(this)); |
699 | 1086 |
700 @DomName('SVGAnimatedString.baseVal') | 1087 @DomName('SVGAnimatedString.baseVal') |
701 @DocsEditable() | 1088 @DocsEditable() |
702 void set baseVal(String value) => _blink.BlinkSVGAnimatedString.instance.baseV
al_Setter_(unwrap_jso(this), value); | 1089 set baseVal(String value) => _blink.BlinkSVGAnimatedString.instance.baseVal_Se
tter_(unwrap_jso(this), value); |
703 | 1090 |
704 } | 1091 } |
705 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1092 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
706 // for details. All rights reserved. Use of this source code is governed by a | 1093 // for details. All rights reserved. Use of this source code is governed by a |
707 // BSD-style license that can be found in the LICENSE file. | 1094 // BSD-style license that can be found in the LICENSE file. |
708 | 1095 |
709 // WARNING: Do not edit - generated code. | 1096 // WARNING: Do not edit - generated code. |
710 | 1097 |
711 | 1098 |
712 @DocsEditable() | 1099 @DocsEditable() |
713 @DomName('SVGAnimatedTransformList') | 1100 @DomName('SVGAnimatedTransformList') |
714 @Unstable() | 1101 @Unstable() |
715 class AnimatedTransformList extends NativeFieldWrapperClass2 { | 1102 class AnimatedTransformList extends NativeFieldWrapperClass2 { |
716 // To suppress missing implicit constructor warnings. | 1103 // To suppress missing implicit constructor warnings. |
717 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported"
); } | 1104 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported"
); } |
718 | 1105 |
| 1106 static AnimatedTransformList internalCreateAnimatedTransformList() { |
| 1107 return new AnimatedTransformList._internalWrap(); |
| 1108 } |
| 1109 |
| 1110 js.JsObject blink_jsObject; |
| 1111 |
| 1112 factory AnimatedTransformList._internalWrap() { |
| 1113 return new AnimatedTransformList.internal_(); |
| 1114 } |
| 1115 |
| 1116 AnimatedTransformList.internal_() { } |
| 1117 |
| 1118 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 1119 int get hashCode => unwrap_jso(this).hashCode; |
| 1120 |
719 @DomName('SVGAnimatedTransformList.animVal') | 1121 @DomName('SVGAnimatedTransformList.animVal') |
720 @DocsEditable() | 1122 @DocsEditable() |
721 TransformList get animVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.animVal_Getter_(unwrap_jso(this))); | 1123 TransformList get animVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.animVal_Getter_(unwrap_jso(this))); |
722 | 1124 |
723 @DomName('SVGAnimatedTransformList.baseVal') | 1125 @DomName('SVGAnimatedTransformList.baseVal') |
724 @DocsEditable() | 1126 @DocsEditable() |
725 TransformList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.baseVal_Getter_(unwrap_jso(this))); | 1127 TransformList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.baseVal_Getter_(unwrap_jso(this))); |
726 | 1128 |
727 } | 1129 } |
728 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1130 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
729 // for details. All rights reserved. Use of this source code is governed by a | 1131 // for details. All rights reserved. Use of this source code is governed by a |
730 // BSD-style license that can be found in the LICENSE file. | 1132 // BSD-style license that can be found in the LICENSE file. |
731 | 1133 |
732 // WARNING: Do not edit - generated code. | 1134 // WARNING: Do not edit - generated code. |
733 | 1135 |
734 | 1136 |
735 @DocsEditable() | 1137 @DocsEditable() |
736 @DomName('SVGAnimationElement') | 1138 @DomName('SVGAnimationElement') |
737 @Unstable() | 1139 @Unstable() |
738 class AnimationElement extends SvgElement implements Tests { | 1140 class AnimationElement extends SvgElement implements Tests { |
739 // To suppress missing implicit constructor warnings. | 1141 // To suppress missing implicit constructor warnings. |
740 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } | 1142 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } |
741 | 1143 |
742 @DomName('SVGAnimationElement.SVGAnimationElement') | 1144 @DomName('SVGAnimationElement.SVGAnimationElement') |
743 @DocsEditable() | 1145 @DocsEditable() |
744 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"animation"); | 1146 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"animation"); |
| 1147 |
| 1148 |
| 1149 static AnimationElement internalCreateAnimationElement() { |
| 1150 return new AnimationElement._internalWrap(); |
| 1151 } |
| 1152 |
| 1153 factory AnimationElement._internalWrap() { |
| 1154 return new AnimationElement.internal_(); |
| 1155 } |
| 1156 |
| 1157 AnimationElement.internal_() : super.internal_(); |
| 1158 |
745 /** | 1159 /** |
746 * Constructor instantiated by the DOM when a custom element has been created. | 1160 * Constructor instantiated by the DOM when a custom element has been created. |
747 * | 1161 * |
748 * This can only be called by subclasses from their created constructor. | 1162 * This can only be called by subclasses from their created constructor. |
749 */ | 1163 */ |
750 AnimationElement.created() : super.created(); | 1164 AnimationElement.created() : super.created(); |
751 | 1165 |
752 @DomName('SVGAnimationElement.targetElement') | 1166 @DomName('SVGAnimationElement.targetElement') |
753 @DocsEditable() | 1167 @DocsEditable() |
754 SvgElement get targetElement => wrap_jso(_blink.BlinkSVGAnimationElement.insta
nce.targetElement_Getter_(unwrap_jso(this))); | 1168 SvgElement get targetElement => wrap_jso(_blink.BlinkSVGAnimationElement.insta
nce.targetElement_Getter_(unwrap_jso(this))); |
755 | 1169 |
756 @DomName('SVGAnimationElement.beginElement') | 1170 @DomName('SVGAnimationElement.beginElement') |
757 @DocsEditable() | 1171 @DocsEditable() |
758 void beginElement() => _blink.BlinkSVGAnimationElement.instance.beginElement_C
allback_0_(unwrap_jso(this)); | 1172 void beginElement() => _blink.BlinkSVGAnimationElement.instance.beginElement_C
allback_0_(unwrap_jso(this)); |
759 | 1173 |
760 @DomName('SVGAnimationElement.beginElementAt') | 1174 @DomName('SVGAnimationElement.beginElementAt') |
761 @DocsEditable() | 1175 @DocsEditable() |
762 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.be
ginElementAt_Callback_1_(unwrap_jso(this), offset); | 1176 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.be
ginElementAt_Callback_1_(unwrap_jso(this), offset); |
763 | 1177 |
764 @DomName('SVGAnimationElement.endElement') | 1178 @DomName('SVGAnimationElement.endElement') |
765 @DocsEditable() | 1179 @DocsEditable() |
766 void endElement() => _blink.BlinkSVGAnimationElement.instance.endElement_Callb
ack_0_(unwrap_jso(this)); | 1180 void endElement() => _blink.BlinkSVGAnimationElement.instance.endElement_Callb
ack_0_(unwrap_jso(this)); |
767 | 1181 |
768 @DomName('SVGAnimationElement.endElementAt') | 1182 @DomName('SVGAnimationElement.endElementAt') |
769 @DocsEditable() | 1183 @DocsEditable() |
770 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.endE
lementAt_Callback_1_(unwrap_jso(this), offset); | 1184 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.endE
lementAt_Callback_1_(unwrap_jso(this), offset); |
771 | 1185 |
772 @DomName('SVGAnimationElement.getCurrentTime') | 1186 @DomName('SVGAnimationElement.getCurrentTime') |
773 @DocsEditable() | 1187 @DocsEditable() |
774 double getCurrentTime() => _blink.BlinkSVGAnimationElement.instance.getCurrent
Time_Callback_0_(unwrap_jso(this)); | 1188 num getCurrentTime() => _blink.BlinkSVGAnimationElement.instance.getCurrentTim
e_Callback_0_(unwrap_jso(this)); |
775 | 1189 |
776 @DomName('SVGAnimationElement.getSimpleDuration') | 1190 @DomName('SVGAnimationElement.getSimpleDuration') |
777 @DocsEditable() | 1191 @DocsEditable() |
778 double getSimpleDuration() => _blink.BlinkSVGAnimationElement.instance.getSimp
leDuration_Callback_0_(unwrap_jso(this)); | 1192 num getSimpleDuration() => _blink.BlinkSVGAnimationElement.instance.getSimpleD
uration_Callback_0_(unwrap_jso(this)); |
779 | 1193 |
780 @DomName('SVGAnimationElement.getStartTime') | 1194 @DomName('SVGAnimationElement.getStartTime') |
781 @DocsEditable() | 1195 @DocsEditable() |
782 double getStartTime() => _blink.BlinkSVGAnimationElement.instance.getStartTime
_Callback_0_(unwrap_jso(this)); | 1196 num getStartTime() => _blink.BlinkSVGAnimationElement.instance.getStartTime_Ca
llback_0_(unwrap_jso(this)); |
783 | 1197 |
784 @DomName('SVGAnimationElement.requiredExtensions') | 1198 @DomName('SVGAnimationElement.requiredExtensions') |
785 @DocsEditable() | 1199 @DocsEditable() |
786 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGAnimationElement.
instance.requiredExtensions_Getter_(unwrap_jso(this))); | 1200 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGAnimationElement.
instance.requiredExtensions_Getter_(unwrap_jso(this))); |
787 | 1201 |
788 @DomName('SVGAnimationElement.requiredFeatures') | 1202 @DomName('SVGAnimationElement.requiredFeatures') |
789 @DocsEditable() | 1203 @DocsEditable() |
790 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGAnimationElement.in
stance.requiredFeatures_Getter_(unwrap_jso(this))); | 1204 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGAnimationElement.in
stance.requiredFeatures_Getter_(unwrap_jso(this))); |
791 | 1205 |
792 @DomName('SVGAnimationElement.systemLanguage') | 1206 @DomName('SVGAnimationElement.systemLanguage') |
(...skipping 15 matching lines...) Expand all Loading... |
808 @DocsEditable() | 1222 @DocsEditable() |
809 @DomName('SVGCircleElement') | 1223 @DomName('SVGCircleElement') |
810 @Unstable() | 1224 @Unstable() |
811 class CircleElement extends GeometryElement { | 1225 class CircleElement extends GeometryElement { |
812 // To suppress missing implicit constructor warnings. | 1226 // To suppress missing implicit constructor warnings. |
813 factory CircleElement._() { throw new UnsupportedError("Not supported"); } | 1227 factory CircleElement._() { throw new UnsupportedError("Not supported"); } |
814 | 1228 |
815 @DomName('SVGCircleElement.SVGCircleElement') | 1229 @DomName('SVGCircleElement.SVGCircleElement') |
816 @DocsEditable() | 1230 @DocsEditable() |
817 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci
rcle"); | 1231 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci
rcle"); |
| 1232 |
| 1233 |
| 1234 static CircleElement internalCreateCircleElement() { |
| 1235 return new CircleElement._internalWrap(); |
| 1236 } |
| 1237 |
| 1238 factory CircleElement._internalWrap() { |
| 1239 return new CircleElement.internal_(); |
| 1240 } |
| 1241 |
| 1242 CircleElement.internal_() : super.internal_(); |
| 1243 |
818 /** | 1244 /** |
819 * Constructor instantiated by the DOM when a custom element has been created. | 1245 * Constructor instantiated by the DOM when a custom element has been created. |
820 * | 1246 * |
821 * This can only be called by subclasses from their created constructor. | 1247 * This can only be called by subclasses from their created constructor. |
822 */ | 1248 */ |
823 CircleElement.created() : super.created(); | 1249 CircleElement.created() : super.created(); |
824 | 1250 |
825 @DomName('SVGCircleElement.cx') | 1251 @DomName('SVGCircleElement.cx') |
826 @DocsEditable() | 1252 @DocsEditable() |
827 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGCircleElement.instance.cx_Get
ter_(unwrap_jso(this))); | 1253 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGCircleElement.instance.cx_Get
ter_(unwrap_jso(this))); |
(...skipping 17 matching lines...) Expand all Loading... |
845 @DocsEditable() | 1271 @DocsEditable() |
846 @DomName('SVGClipPathElement') | 1272 @DomName('SVGClipPathElement') |
847 @Unstable() | 1273 @Unstable() |
848 class ClipPathElement extends GraphicsElement { | 1274 class ClipPathElement extends GraphicsElement { |
849 // To suppress missing implicit constructor warnings. | 1275 // To suppress missing implicit constructor warnings. |
850 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } | 1276 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } |
851 | 1277 |
852 @DomName('SVGClipPathElement.SVGClipPathElement') | 1278 @DomName('SVGClipPathElement.SVGClipPathElement') |
853 @DocsEditable() | 1279 @DocsEditable() |
854 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("
clipPath"); | 1280 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("
clipPath"); |
| 1281 |
| 1282 |
| 1283 static ClipPathElement internalCreateClipPathElement() { |
| 1284 return new ClipPathElement._internalWrap(); |
| 1285 } |
| 1286 |
| 1287 factory ClipPathElement._internalWrap() { |
| 1288 return new ClipPathElement.internal_(); |
| 1289 } |
| 1290 |
| 1291 ClipPathElement.internal_() : super.internal_(); |
| 1292 |
855 /** | 1293 /** |
856 * Constructor instantiated by the DOM when a custom element has been created. | 1294 * Constructor instantiated by the DOM when a custom element has been created. |
857 * | 1295 * |
858 * This can only be called by subclasses from their created constructor. | 1296 * This can only be called by subclasses from their created constructor. |
859 */ | 1297 */ |
860 ClipPathElement.created() : super.created(); | 1298 ClipPathElement.created() : super.created(); |
861 | 1299 |
862 @DomName('SVGClipPathElement.clipPathUnits') | 1300 @DomName('SVGClipPathElement.clipPathUnits') |
863 @DocsEditable() | 1301 @DocsEditable() |
864 AnimatedEnumeration get clipPathUnits => wrap_jso(_blink.BlinkSVGClipPathEleme
nt.instance.clipPathUnits_Getter_(unwrap_jso(this))); | 1302 AnimatedEnumeration get clipPathUnits => wrap_jso(_blink.BlinkSVGClipPathEleme
nt.instance.clipPathUnits_Getter_(unwrap_jso(this))); |
865 | 1303 |
866 } | 1304 } |
867 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1305 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
868 // for details. All rights reserved. Use of this source code is governed by a | 1306 // for details. All rights reserved. Use of this source code is governed by a |
869 // BSD-style license that can be found in the LICENSE file. | 1307 // BSD-style license that can be found in the LICENSE file. |
870 | 1308 |
871 // WARNING: Do not edit - generated code. | 1309 // WARNING: Do not edit - generated code. |
872 | 1310 |
873 | 1311 |
874 @DocsEditable() | 1312 @DocsEditable() |
875 @DomName('SVGDefsElement') | 1313 @DomName('SVGDefsElement') |
876 @Unstable() | 1314 @Unstable() |
877 class DefsElement extends GraphicsElement { | 1315 class DefsElement extends GraphicsElement { |
878 // To suppress missing implicit constructor warnings. | 1316 // To suppress missing implicit constructor warnings. |
879 factory DefsElement._() { throw new UnsupportedError("Not supported"); } | 1317 factory DefsElement._() { throw new UnsupportedError("Not supported"); } |
880 | 1318 |
881 @DomName('SVGDefsElement.SVGDefsElement') | 1319 @DomName('SVGDefsElement.SVGDefsElement') |
882 @DocsEditable() | 1320 @DocsEditable() |
883 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs
"); | 1321 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs
"); |
| 1322 |
| 1323 |
| 1324 static DefsElement internalCreateDefsElement() { |
| 1325 return new DefsElement._internalWrap(); |
| 1326 } |
| 1327 |
| 1328 factory DefsElement._internalWrap() { |
| 1329 return new DefsElement.internal_(); |
| 1330 } |
| 1331 |
| 1332 DefsElement.internal_() : super.internal_(); |
| 1333 |
884 /** | 1334 /** |
885 * Constructor instantiated by the DOM when a custom element has been created. | 1335 * Constructor instantiated by the DOM when a custom element has been created. |
886 * | 1336 * |
887 * This can only be called by subclasses from their created constructor. | 1337 * This can only be called by subclasses from their created constructor. |
888 */ | 1338 */ |
889 DefsElement.created() : super.created(); | 1339 DefsElement.created() : super.created(); |
890 | 1340 |
891 } | 1341 } |
892 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1342 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
893 // for details. All rights reserved. Use of this source code is governed by a | 1343 // for details. All rights reserved. Use of this source code is governed by a |
894 // BSD-style license that can be found in the LICENSE file. | 1344 // BSD-style license that can be found in the LICENSE file. |
895 | 1345 |
896 // WARNING: Do not edit - generated code. | 1346 // WARNING: Do not edit - generated code. |
897 | 1347 |
898 | 1348 |
899 @DocsEditable() | 1349 @DocsEditable() |
900 @DomName('SVGDescElement') | 1350 @DomName('SVGDescElement') |
901 @Unstable() | 1351 @Unstable() |
902 class DescElement extends SvgElement { | 1352 class DescElement extends SvgElement { |
903 // To suppress missing implicit constructor warnings. | 1353 // To suppress missing implicit constructor warnings. |
904 factory DescElement._() { throw new UnsupportedError("Not supported"); } | 1354 factory DescElement._() { throw new UnsupportedError("Not supported"); } |
905 | 1355 |
906 @DomName('SVGDescElement.SVGDescElement') | 1356 @DomName('SVGDescElement.SVGDescElement') |
907 @DocsEditable() | 1357 @DocsEditable() |
908 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc
"); | 1358 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc
"); |
| 1359 |
| 1360 |
| 1361 static DescElement internalCreateDescElement() { |
| 1362 return new DescElement._internalWrap(); |
| 1363 } |
| 1364 |
| 1365 factory DescElement._internalWrap() { |
| 1366 return new DescElement.internal_(); |
| 1367 } |
| 1368 |
| 1369 DescElement.internal_() : super.internal_(); |
| 1370 |
909 /** | 1371 /** |
910 * Constructor instantiated by the DOM when a custom element has been created. | 1372 * Constructor instantiated by the DOM when a custom element has been created. |
911 * | 1373 * |
912 * This can only be called by subclasses from their created constructor. | 1374 * This can only be called by subclasses from their created constructor. |
913 */ | 1375 */ |
914 DescElement.created() : super.created(); | 1376 DescElement.created() : super.created(); |
915 | 1377 |
916 } | 1378 } |
917 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1379 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
918 // for details. All rights reserved. Use of this source code is governed by a | 1380 // for details. All rights reserved. Use of this source code is governed by a |
919 // BSD-style license that can be found in the LICENSE file. | 1381 // BSD-style license that can be found in the LICENSE file. |
920 | 1382 |
921 // WARNING: Do not edit - generated code. | 1383 // WARNING: Do not edit - generated code. |
922 | 1384 |
923 | 1385 |
924 @DocsEditable() | 1386 @DocsEditable() |
925 @DomName('SVGDiscardElement') | 1387 @DomName('SVGDiscardElement') |
926 @Experimental() // untriaged | 1388 @Experimental() // untriaged |
927 class DiscardElement extends SvgElement { | 1389 class DiscardElement extends SvgElement { |
928 // To suppress missing implicit constructor warnings. | 1390 // To suppress missing implicit constructor warnings. |
929 factory DiscardElement._() { throw new UnsupportedError("Not supported"); } | 1391 factory DiscardElement._() { throw new UnsupportedError("Not supported"); } |
| 1392 |
| 1393 |
| 1394 static DiscardElement internalCreateDiscardElement() { |
| 1395 return new DiscardElement._internalWrap(); |
| 1396 } |
| 1397 |
| 1398 factory DiscardElement._internalWrap() { |
| 1399 return new DiscardElement.internal_(); |
| 1400 } |
| 1401 |
| 1402 DiscardElement.internal_() : super.internal_(); |
| 1403 |
930 /** | 1404 /** |
931 * Constructor instantiated by the DOM when a custom element has been created. | 1405 * Constructor instantiated by the DOM when a custom element has been created. |
932 * | 1406 * |
933 * This can only be called by subclasses from their created constructor. | 1407 * This can only be called by subclasses from their created constructor. |
934 */ | 1408 */ |
935 DiscardElement.created() : super.created(); | 1409 DiscardElement.created() : super.created(); |
936 | 1410 |
937 } | 1411 } |
938 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1412 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
939 // for details. All rights reserved. Use of this source code is governed by a | 1413 // for details. All rights reserved. Use of this source code is governed by a |
940 // BSD-style license that can be found in the LICENSE file. | 1414 // BSD-style license that can be found in the LICENSE file. |
941 | 1415 |
942 // WARNING: Do not edit - generated code. | 1416 // WARNING: Do not edit - generated code. |
943 | 1417 |
944 | 1418 |
945 @DocsEditable() | 1419 @DocsEditable() |
946 @DomName('SVGEllipseElement') | 1420 @DomName('SVGEllipseElement') |
947 @Unstable() | 1421 @Unstable() |
948 class EllipseElement extends GeometryElement { | 1422 class EllipseElement extends GeometryElement { |
949 // To suppress missing implicit constructor warnings. | 1423 // To suppress missing implicit constructor warnings. |
950 factory EllipseElement._() { throw new UnsupportedError("Not supported"); } | 1424 factory EllipseElement._() { throw new UnsupportedError("Not supported"); } |
951 | 1425 |
952 @DomName('SVGEllipseElement.SVGEllipseElement') | 1426 @DomName('SVGEllipseElement.SVGEllipseElement') |
953 @DocsEditable() | 1427 @DocsEditable() |
954 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e
llipse"); | 1428 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e
llipse"); |
| 1429 |
| 1430 |
| 1431 static EllipseElement internalCreateEllipseElement() { |
| 1432 return new EllipseElement._internalWrap(); |
| 1433 } |
| 1434 |
| 1435 factory EllipseElement._internalWrap() { |
| 1436 return new EllipseElement.internal_(); |
| 1437 } |
| 1438 |
| 1439 EllipseElement.internal_() : super.internal_(); |
| 1440 |
955 /** | 1441 /** |
956 * Constructor instantiated by the DOM when a custom element has been created. | 1442 * Constructor instantiated by the DOM when a custom element has been created. |
957 * | 1443 * |
958 * This can only be called by subclasses from their created constructor. | 1444 * This can only be called by subclasses from their created constructor. |
959 */ | 1445 */ |
960 EllipseElement.created() : super.created(); | 1446 EllipseElement.created() : super.created(); |
961 | 1447 |
962 @DomName('SVGEllipseElement.cx') | 1448 @DomName('SVGEllipseElement.cx') |
963 @DocsEditable() | 1449 @DocsEditable() |
964 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGEllipseElement.instance.cx_Ge
tter_(unwrap_jso(this))); | 1450 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGEllipseElement.instance.cx_Ge
tter_(unwrap_jso(this))); |
(...skipping 25 matching lines...) Expand all Loading... |
990 @SupportedBrowser(SupportedBrowser.IE, '10') | 1476 @SupportedBrowser(SupportedBrowser.IE, '10') |
991 @SupportedBrowser(SupportedBrowser.SAFARI) | 1477 @SupportedBrowser(SupportedBrowser.SAFARI) |
992 @Unstable() | 1478 @Unstable() |
993 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 1479 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
994 // To suppress missing implicit constructor warnings. | 1480 // To suppress missing implicit constructor warnings. |
995 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); } | 1481 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); } |
996 | 1482 |
997 @DomName('SVGFEBlendElement.SVGFEBlendElement') | 1483 @DomName('SVGFEBlendElement.SVGFEBlendElement') |
998 @DocsEditable() | 1484 @DocsEditable() |
999 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eBlend"); | 1485 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eBlend"); |
| 1486 |
| 1487 |
| 1488 static FEBlendElement internalCreateFEBlendElement() { |
| 1489 return new FEBlendElement._internalWrap(); |
| 1490 } |
| 1491 |
| 1492 factory FEBlendElement._internalWrap() { |
| 1493 return new FEBlendElement.internal_(); |
| 1494 } |
| 1495 |
| 1496 FEBlendElement.internal_() : super.internal_(); |
| 1497 |
1000 /** | 1498 /** |
1001 * Constructor instantiated by the DOM when a custom element has been created. | 1499 * Constructor instantiated by the DOM when a custom element has been created. |
1002 * | 1500 * |
1003 * This can only be called by subclasses from their created constructor. | 1501 * This can only be called by subclasses from their created constructor. |
1004 */ | 1502 */ |
1005 FEBlendElement.created() : super.created(); | 1503 FEBlendElement.created() : super.created(); |
1006 | 1504 |
1007 /// Checks if this type is supported on the current platform. | 1505 /// Checks if this type is supported on the current platform. |
1008 static bool get supported => true; | 1506 static bool get supported => true; |
1009 | 1507 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1078 @SupportedBrowser(SupportedBrowser.IE, '10') | 1576 @SupportedBrowser(SupportedBrowser.IE, '10') |
1079 @SupportedBrowser(SupportedBrowser.SAFARI) | 1577 @SupportedBrowser(SupportedBrowser.SAFARI) |
1080 @Unstable() | 1578 @Unstable() |
1081 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard
Attributes { | 1579 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard
Attributes { |
1082 // To suppress missing implicit constructor warnings. | 1580 // To suppress missing implicit constructor warnings. |
1083 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported")
; } | 1581 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported")
; } |
1084 | 1582 |
1085 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') | 1583 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') |
1086 @DocsEditable() | 1584 @DocsEditable() |
1087 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_
tag("feColorMatrix"); | 1585 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_
tag("feColorMatrix"); |
| 1586 |
| 1587 |
| 1588 static FEColorMatrixElement internalCreateFEColorMatrixElement() { |
| 1589 return new FEColorMatrixElement._internalWrap(); |
| 1590 } |
| 1591 |
| 1592 factory FEColorMatrixElement._internalWrap() { |
| 1593 return new FEColorMatrixElement.internal_(); |
| 1594 } |
| 1595 |
| 1596 FEColorMatrixElement.internal_() : super.internal_(); |
| 1597 |
1088 /** | 1598 /** |
1089 * Constructor instantiated by the DOM when a custom element has been created. | 1599 * Constructor instantiated by the DOM when a custom element has been created. |
1090 * | 1600 * |
1091 * This can only be called by subclasses from their created constructor. | 1601 * This can only be called by subclasses from their created constructor. |
1092 */ | 1602 */ |
1093 FEColorMatrixElement.created() : super.created(); | 1603 FEColorMatrixElement.created() : super.created(); |
1094 | 1604 |
1095 /// Checks if this type is supported on the current platform. | 1605 /// Checks if this type is supported on the current platform. |
1096 static bool get supported => true; | 1606 static bool get supported => true; |
1097 | 1607 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1162 @SupportedBrowser(SupportedBrowser.IE, '10') | 1672 @SupportedBrowser(SupportedBrowser.IE, '10') |
1163 @SupportedBrowser(SupportedBrowser.SAFARI) | 1673 @SupportedBrowser(SupportedBrowser.SAFARI) |
1164 @Unstable() | 1674 @Unstable() |
1165 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt
andardAttributes { | 1675 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt
andardAttributes { |
1166 // To suppress missing implicit constructor warnings. | 1676 // To suppress missing implicit constructor warnings. |
1167 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo
rted"); } | 1677 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo
rted"); } |
1168 | 1678 |
1169 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') | 1679 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') |
1170 @DocsEditable() | 1680 @DocsEditable() |
1171 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl
ement_tag("feComponentTransfer"); | 1681 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl
ement_tag("feComponentTransfer"); |
| 1682 |
| 1683 |
| 1684 static FEComponentTransferElement internalCreateFEComponentTransferElement() { |
| 1685 return new FEComponentTransferElement._internalWrap(); |
| 1686 } |
| 1687 |
| 1688 factory FEComponentTransferElement._internalWrap() { |
| 1689 return new FEComponentTransferElement.internal_(); |
| 1690 } |
| 1691 |
| 1692 FEComponentTransferElement.internal_() : super.internal_(); |
| 1693 |
1172 /** | 1694 /** |
1173 * Constructor instantiated by the DOM when a custom element has been created. | 1695 * Constructor instantiated by the DOM when a custom element has been created. |
1174 * | 1696 * |
1175 * This can only be called by subclasses from their created constructor. | 1697 * This can only be called by subclasses from their created constructor. |
1176 */ | 1698 */ |
1177 FEComponentTransferElement.created() : super.created(); | 1699 FEComponentTransferElement.created() : super.created(); |
1178 | 1700 |
1179 /// Checks if this type is supported on the current platform. | 1701 /// Checks if this type is supported on the current platform. |
1180 static bool get supported => true; | 1702 static bool get supported => true; |
1181 | 1703 |
(...skipping 28 matching lines...) Expand all Loading... |
1210 | 1732 |
1211 // WARNING: Do not edit - generated code. | 1733 // WARNING: Do not edit - generated code. |
1212 | 1734 |
1213 | 1735 |
1214 @DocsEditable() | 1736 @DocsEditable() |
1215 @DomName('SVGFECompositeElement') | 1737 @DomName('SVGFECompositeElement') |
1216 @Unstable() | 1738 @Unstable() |
1217 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt
tributes { | 1739 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt
tributes { |
1218 // To suppress missing implicit constructor warnings. | 1740 // To suppress missing implicit constructor warnings. |
1219 factory FECompositeElement._() { throw new UnsupportedError("Not supported");
} | 1741 factory FECompositeElement._() { throw new UnsupportedError("Not supported");
} |
| 1742 |
| 1743 |
| 1744 static FECompositeElement internalCreateFECompositeElement() { |
| 1745 return new FECompositeElement._internalWrap(); |
| 1746 } |
| 1747 |
| 1748 factory FECompositeElement._internalWrap() { |
| 1749 return new FECompositeElement.internal_(); |
| 1750 } |
| 1751 |
| 1752 FECompositeElement.internal_() : super.internal_(); |
| 1753 |
1220 /** | 1754 /** |
1221 * Constructor instantiated by the DOM when a custom element has been created. | 1755 * Constructor instantiated by the DOM when a custom element has been created. |
1222 * | 1756 * |
1223 * This can only be called by subclasses from their created constructor. | 1757 * This can only be called by subclasses from their created constructor. |
1224 */ | 1758 */ |
1225 FECompositeElement.created() : super.created(); | 1759 FECompositeElement.created() : super.created(); |
1226 | 1760 |
1227 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') | 1761 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') |
1228 @DocsEditable() | 1762 @DocsEditable() |
1229 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; | 1763 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1315 @SupportedBrowser(SupportedBrowser.IE, '10') | 1849 @SupportedBrowser(SupportedBrowser.IE, '10') |
1316 @SupportedBrowser(SupportedBrowser.SAFARI) | 1850 @SupportedBrowser(SupportedBrowser.SAFARI) |
1317 @Unstable() | 1851 @Unstable() |
1318 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { | 1852 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { |
1319 // To suppress missing implicit constructor warnings. | 1853 // To suppress missing implicit constructor warnings. |
1320 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte
d"); } | 1854 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte
d"); } |
1321 | 1855 |
1322 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') | 1856 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') |
1323 @DocsEditable() | 1857 @DocsEditable() |
1324 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("feConvolveMatrix"); | 1858 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("feConvolveMatrix"); |
| 1859 |
| 1860 |
| 1861 static FEConvolveMatrixElement internalCreateFEConvolveMatrixElement() { |
| 1862 return new FEConvolveMatrixElement._internalWrap(); |
| 1863 } |
| 1864 |
| 1865 factory FEConvolveMatrixElement._internalWrap() { |
| 1866 return new FEConvolveMatrixElement.internal_(); |
| 1867 } |
| 1868 |
| 1869 FEConvolveMatrixElement.internal_() : super.internal_(); |
| 1870 |
1325 /** | 1871 /** |
1326 * Constructor instantiated by the DOM when a custom element has been created. | 1872 * Constructor instantiated by the DOM when a custom element has been created. |
1327 * | 1873 * |
1328 * This can only be called by subclasses from their created constructor. | 1874 * This can only be called by subclasses from their created constructor. |
1329 */ | 1875 */ |
1330 FEConvolveMatrixElement.created() : super.created(); | 1876 FEConvolveMatrixElement.created() : super.created(); |
1331 | 1877 |
1332 /// Checks if this type is supported on the current platform. | 1878 /// Checks if this type is supported on the current platform. |
1333 static bool get supported => true; | 1879 static bool get supported => true; |
1334 | 1880 |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1431 @SupportedBrowser(SupportedBrowser.IE, '10') | 1977 @SupportedBrowser(SupportedBrowser.IE, '10') |
1432 @SupportedBrowser(SupportedBrowser.SAFARI) | 1978 @SupportedBrowser(SupportedBrowser.SAFARI) |
1433 @Unstable() | 1979 @Unstable() |
1434 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { | 1980 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { |
1435 // To suppress missing implicit constructor warnings. | 1981 // To suppress missing implicit constructor warnings. |
1436 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support
ed"); } | 1982 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support
ed"); } |
1437 | 1983 |
1438 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') | 1984 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') |
1439 @DocsEditable() | 1985 @DocsEditable() |
1440 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDiffuseLighting"); | 1986 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDiffuseLighting"); |
| 1987 |
| 1988 |
| 1989 static FEDiffuseLightingElement internalCreateFEDiffuseLightingElement() { |
| 1990 return new FEDiffuseLightingElement._internalWrap(); |
| 1991 } |
| 1992 |
| 1993 factory FEDiffuseLightingElement._internalWrap() { |
| 1994 return new FEDiffuseLightingElement.internal_(); |
| 1995 } |
| 1996 |
| 1997 FEDiffuseLightingElement.internal_() : super.internal_(); |
| 1998 |
1441 /** | 1999 /** |
1442 * Constructor instantiated by the DOM when a custom element has been created. | 2000 * Constructor instantiated by the DOM when a custom element has been created. |
1443 * | 2001 * |
1444 * This can only be called by subclasses from their created constructor. | 2002 * This can only be called by subclasses from their created constructor. |
1445 */ | 2003 */ |
1446 FEDiffuseLightingElement.created() : super.created(); | 2004 FEDiffuseLightingElement.created() : super.created(); |
1447 | 2005 |
1448 /// Checks if this type is supported on the current platform. | 2006 /// Checks if this type is supported on the current platform. |
1449 static bool get supported => true; | 2007 static bool get supported => true; |
1450 | 2008 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1503 @SupportedBrowser(SupportedBrowser.IE, '10') | 2061 @SupportedBrowser(SupportedBrowser.IE, '10') |
1504 @SupportedBrowser(SupportedBrowser.SAFARI) | 2062 @SupportedBrowser(SupportedBrowser.SAFARI) |
1505 @Unstable() | 2063 @Unstable() |
1506 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { | 2064 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { |
1507 // To suppress missing implicit constructor warnings. | 2065 // To suppress missing implicit constructor warnings. |
1508 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support
ed"); } | 2066 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support
ed"); } |
1509 | 2067 |
1510 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') | 2068 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') |
1511 @DocsEditable() | 2069 @DocsEditable() |
1512 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDisplacementMap"); | 2070 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDisplacementMap"); |
| 2071 |
| 2072 |
| 2073 static FEDisplacementMapElement internalCreateFEDisplacementMapElement() { |
| 2074 return new FEDisplacementMapElement._internalWrap(); |
| 2075 } |
| 2076 |
| 2077 factory FEDisplacementMapElement._internalWrap() { |
| 2078 return new FEDisplacementMapElement.internal_(); |
| 2079 } |
| 2080 |
| 2081 FEDisplacementMapElement.internal_() : super.internal_(); |
| 2082 |
1513 /** | 2083 /** |
1514 * Constructor instantiated by the DOM when a custom element has been created. | 2084 * Constructor instantiated by the DOM when a custom element has been created. |
1515 * | 2085 * |
1516 * This can only be called by subclasses from their created constructor. | 2086 * This can only be called by subclasses from their created constructor. |
1517 */ | 2087 */ |
1518 FEDisplacementMapElement.created() : super.created(); | 2088 FEDisplacementMapElement.created() : super.created(); |
1519 | 2089 |
1520 /// Checks if this type is supported on the current platform. | 2090 /// Checks if this type is supported on the current platform. |
1521 static bool get supported => true; | 2091 static bool get supported => true; |
1522 | 2092 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1595 @SupportedBrowser(SupportedBrowser.IE, '10') | 2165 @SupportedBrowser(SupportedBrowser.IE, '10') |
1596 @SupportedBrowser(SupportedBrowser.SAFARI) | 2166 @SupportedBrowser(SupportedBrowser.SAFARI) |
1597 @Unstable() | 2167 @Unstable() |
1598 class FEDistantLightElement extends SvgElement { | 2168 class FEDistantLightElement extends SvgElement { |
1599 // To suppress missing implicit constructor warnings. | 2169 // To suppress missing implicit constructor warnings. |
1600 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported"
); } | 2170 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported"
); } |
1601 | 2171 |
1602 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') | 2172 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') |
1603 @DocsEditable() | 2173 @DocsEditable() |
1604 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feDistantLight"); | 2174 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feDistantLight"); |
| 2175 |
| 2176 |
| 2177 static FEDistantLightElement internalCreateFEDistantLightElement() { |
| 2178 return new FEDistantLightElement._internalWrap(); |
| 2179 } |
| 2180 |
| 2181 factory FEDistantLightElement._internalWrap() { |
| 2182 return new FEDistantLightElement.internal_(); |
| 2183 } |
| 2184 |
| 2185 FEDistantLightElement.internal_() : super.internal_(); |
| 2186 |
1605 /** | 2187 /** |
1606 * Constructor instantiated by the DOM when a custom element has been created. | 2188 * Constructor instantiated by the DOM when a custom element has been created. |
1607 * | 2189 * |
1608 * This can only be called by subclasses from their created constructor. | 2190 * This can only be called by subclasses from their created constructor. |
1609 */ | 2191 */ |
1610 FEDistantLightElement.created() : super.created(); | 2192 FEDistantLightElement.created() : super.created(); |
1611 | 2193 |
1612 /// Checks if this type is supported on the current platform. | 2194 /// Checks if this type is supported on the current platform. |
1613 static bool get supported => true; | 2195 static bool get supported => true; |
1614 | 2196 |
(...skipping 20 matching lines...) Expand all Loading... |
1635 @SupportedBrowser(SupportedBrowser.IE, '10') | 2217 @SupportedBrowser(SupportedBrowser.IE, '10') |
1636 @SupportedBrowser(SupportedBrowser.SAFARI) | 2218 @SupportedBrowser(SupportedBrowser.SAFARI) |
1637 @Unstable() | 2219 @Unstable() |
1638 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 2220 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
1639 // To suppress missing implicit constructor warnings. | 2221 // To suppress missing implicit constructor warnings. |
1640 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); } | 2222 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); } |
1641 | 2223 |
1642 @DomName('SVGFEFloodElement.SVGFEFloodElement') | 2224 @DomName('SVGFEFloodElement.SVGFEFloodElement') |
1643 @DocsEditable() | 2225 @DocsEditable() |
1644 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFlood"); | 2226 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFlood"); |
| 2227 |
| 2228 |
| 2229 static FEFloodElement internalCreateFEFloodElement() { |
| 2230 return new FEFloodElement._internalWrap(); |
| 2231 } |
| 2232 |
| 2233 factory FEFloodElement._internalWrap() { |
| 2234 return new FEFloodElement.internal_(); |
| 2235 } |
| 2236 |
| 2237 FEFloodElement.internal_() : super.internal_(); |
| 2238 |
1645 /** | 2239 /** |
1646 * Constructor instantiated by the DOM when a custom element has been created. | 2240 * Constructor instantiated by the DOM when a custom element has been created. |
1647 * | 2241 * |
1648 * This can only be called by subclasses from their created constructor. | 2242 * This can only be called by subclasses from their created constructor. |
1649 */ | 2243 */ |
1650 FEFloodElement.created() : super.created(); | 2244 FEFloodElement.created() : super.created(); |
1651 | 2245 |
1652 /// Checks if this type is supported on the current platform. | 2246 /// Checks if this type is supported on the current platform. |
1653 static bool get supported => true; | 2247 static bool get supported => true; |
1654 | 2248 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1687 @SupportedBrowser(SupportedBrowser.IE, '10') | 2281 @SupportedBrowser(SupportedBrowser.IE, '10') |
1688 @SupportedBrowser(SupportedBrowser.SAFARI) | 2282 @SupportedBrowser(SupportedBrowser.SAFARI) |
1689 @Unstable() | 2283 @Unstable() |
1690 class FEFuncAElement extends _SVGComponentTransferFunctionElement { | 2284 class FEFuncAElement extends _SVGComponentTransferFunctionElement { |
1691 // To suppress missing implicit constructor warnings. | 2285 // To suppress missing implicit constructor warnings. |
1692 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); } | 2286 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); } |
1693 | 2287 |
1694 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') | 2288 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') |
1695 @DocsEditable() | 2289 @DocsEditable() |
1696 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncA"); | 2290 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncA"); |
| 2291 |
| 2292 |
| 2293 static FEFuncAElement internalCreateFEFuncAElement() { |
| 2294 return new FEFuncAElement._internalWrap(); |
| 2295 } |
| 2296 |
| 2297 factory FEFuncAElement._internalWrap() { |
| 2298 return new FEFuncAElement.internal_(); |
| 2299 } |
| 2300 |
| 2301 FEFuncAElement.internal_() : super.internal_(); |
| 2302 |
1697 /** | 2303 /** |
1698 * Constructor instantiated by the DOM when a custom element has been created. | 2304 * Constructor instantiated by the DOM when a custom element has been created. |
1699 * | 2305 * |
1700 * This can only be called by subclasses from their created constructor. | 2306 * This can only be called by subclasses from their created constructor. |
1701 */ | 2307 */ |
1702 FEFuncAElement.created() : super.created(); | 2308 FEFuncAElement.created() : super.created(); |
1703 | 2309 |
1704 /// Checks if this type is supported on the current platform. | 2310 /// Checks if this type is supported on the current platform. |
1705 static bool get supported => true; | 2311 static bool get supported => true; |
1706 | 2312 |
(...skipping 12 matching lines...) Expand all Loading... |
1719 @SupportedBrowser(SupportedBrowser.IE, '10') | 2325 @SupportedBrowser(SupportedBrowser.IE, '10') |
1720 @SupportedBrowser(SupportedBrowser.SAFARI) | 2326 @SupportedBrowser(SupportedBrowser.SAFARI) |
1721 @Unstable() | 2327 @Unstable() |
1722 class FEFuncBElement extends _SVGComponentTransferFunctionElement { | 2328 class FEFuncBElement extends _SVGComponentTransferFunctionElement { |
1723 // To suppress missing implicit constructor warnings. | 2329 // To suppress missing implicit constructor warnings. |
1724 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); } | 2330 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); } |
1725 | 2331 |
1726 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') | 2332 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') |
1727 @DocsEditable() | 2333 @DocsEditable() |
1728 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncB"); | 2334 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncB"); |
| 2335 |
| 2336 |
| 2337 static FEFuncBElement internalCreateFEFuncBElement() { |
| 2338 return new FEFuncBElement._internalWrap(); |
| 2339 } |
| 2340 |
| 2341 factory FEFuncBElement._internalWrap() { |
| 2342 return new FEFuncBElement.internal_(); |
| 2343 } |
| 2344 |
| 2345 FEFuncBElement.internal_() : super.internal_(); |
| 2346 |
1729 /** | 2347 /** |
1730 * Constructor instantiated by the DOM when a custom element has been created. | 2348 * Constructor instantiated by the DOM when a custom element has been created. |
1731 * | 2349 * |
1732 * This can only be called by subclasses from their created constructor. | 2350 * This can only be called by subclasses from their created constructor. |
1733 */ | 2351 */ |
1734 FEFuncBElement.created() : super.created(); | 2352 FEFuncBElement.created() : super.created(); |
1735 | 2353 |
1736 /// Checks if this type is supported on the current platform. | 2354 /// Checks if this type is supported on the current platform. |
1737 static bool get supported => true; | 2355 static bool get supported => true; |
1738 | 2356 |
(...skipping 12 matching lines...) Expand all Loading... |
1751 @SupportedBrowser(SupportedBrowser.IE, '10') | 2369 @SupportedBrowser(SupportedBrowser.IE, '10') |
1752 @SupportedBrowser(SupportedBrowser.SAFARI) | 2370 @SupportedBrowser(SupportedBrowser.SAFARI) |
1753 @Unstable() | 2371 @Unstable() |
1754 class FEFuncGElement extends _SVGComponentTransferFunctionElement { | 2372 class FEFuncGElement extends _SVGComponentTransferFunctionElement { |
1755 // To suppress missing implicit constructor warnings. | 2373 // To suppress missing implicit constructor warnings. |
1756 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); } | 2374 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); } |
1757 | 2375 |
1758 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') | 2376 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') |
1759 @DocsEditable() | 2377 @DocsEditable() |
1760 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncG"); | 2378 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncG"); |
| 2379 |
| 2380 |
| 2381 static FEFuncGElement internalCreateFEFuncGElement() { |
| 2382 return new FEFuncGElement._internalWrap(); |
| 2383 } |
| 2384 |
| 2385 factory FEFuncGElement._internalWrap() { |
| 2386 return new FEFuncGElement.internal_(); |
| 2387 } |
| 2388 |
| 2389 FEFuncGElement.internal_() : super.internal_(); |
| 2390 |
1761 /** | 2391 /** |
1762 * Constructor instantiated by the DOM when a custom element has been created. | 2392 * Constructor instantiated by the DOM when a custom element has been created. |
1763 * | 2393 * |
1764 * This can only be called by subclasses from their created constructor. | 2394 * This can only be called by subclasses from their created constructor. |
1765 */ | 2395 */ |
1766 FEFuncGElement.created() : super.created(); | 2396 FEFuncGElement.created() : super.created(); |
1767 | 2397 |
1768 /// Checks if this type is supported on the current platform. | 2398 /// Checks if this type is supported on the current platform. |
1769 static bool get supported => true; | 2399 static bool get supported => true; |
1770 | 2400 |
(...skipping 12 matching lines...) Expand all Loading... |
1783 @SupportedBrowser(SupportedBrowser.IE, '10') | 2413 @SupportedBrowser(SupportedBrowser.IE, '10') |
1784 @SupportedBrowser(SupportedBrowser.SAFARI) | 2414 @SupportedBrowser(SupportedBrowser.SAFARI) |
1785 @Unstable() | 2415 @Unstable() |
1786 class FEFuncRElement extends _SVGComponentTransferFunctionElement { | 2416 class FEFuncRElement extends _SVGComponentTransferFunctionElement { |
1787 // To suppress missing implicit constructor warnings. | 2417 // To suppress missing implicit constructor warnings. |
1788 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); } | 2418 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); } |
1789 | 2419 |
1790 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') | 2420 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') |
1791 @DocsEditable() | 2421 @DocsEditable() |
1792 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncR"); | 2422 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncR"); |
| 2423 |
| 2424 |
| 2425 static FEFuncRElement internalCreateFEFuncRElement() { |
| 2426 return new FEFuncRElement._internalWrap(); |
| 2427 } |
| 2428 |
| 2429 factory FEFuncRElement._internalWrap() { |
| 2430 return new FEFuncRElement.internal_(); |
| 2431 } |
| 2432 |
| 2433 FEFuncRElement.internal_() : super.internal_(); |
| 2434 |
1793 /** | 2435 /** |
1794 * Constructor instantiated by the DOM when a custom element has been created. | 2436 * Constructor instantiated by the DOM when a custom element has been created. |
1795 * | 2437 * |
1796 * This can only be called by subclasses from their created constructor. | 2438 * This can only be called by subclasses from their created constructor. |
1797 */ | 2439 */ |
1798 FEFuncRElement.created() : super.created(); | 2440 FEFuncRElement.created() : super.created(); |
1799 | 2441 |
1800 /// Checks if this type is supported on the current platform. | 2442 /// Checks if this type is supported on the current platform. |
1801 static bool get supported => true; | 2443 static bool get supported => true; |
1802 | 2444 |
(...skipping 12 matching lines...) Expand all Loading... |
1815 @SupportedBrowser(SupportedBrowser.IE, '10') | 2457 @SupportedBrowser(SupportedBrowser.IE, '10') |
1816 @SupportedBrowser(SupportedBrowser.SAFARI) | 2458 @SupportedBrowser(SupportedBrowser.SAFARI) |
1817 @Unstable() | 2459 @Unstable() |
1818 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar
dAttributes { | 2460 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar
dAttributes { |
1819 // To suppress missing implicit constructor warnings. | 2461 // To suppress missing implicit constructor warnings. |
1820 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported"
); } | 2462 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported"
); } |
1821 | 2463 |
1822 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') | 2464 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') |
1823 @DocsEditable() | 2465 @DocsEditable() |
1824 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feGaussianBlur"); | 2466 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feGaussianBlur"); |
| 2467 |
| 2468 |
| 2469 static FEGaussianBlurElement internalCreateFEGaussianBlurElement() { |
| 2470 return new FEGaussianBlurElement._internalWrap(); |
| 2471 } |
| 2472 |
| 2473 factory FEGaussianBlurElement._internalWrap() { |
| 2474 return new FEGaussianBlurElement.internal_(); |
| 2475 } |
| 2476 |
| 2477 FEGaussianBlurElement.internal_() : super.internal_(); |
| 2478 |
1825 /** | 2479 /** |
1826 * Constructor instantiated by the DOM when a custom element has been created. | 2480 * Constructor instantiated by the DOM when a custom element has been created. |
1827 * | 2481 * |
1828 * This can only be called by subclasses from their created constructor. | 2482 * This can only be called by subclasses from their created constructor. |
1829 */ | 2483 */ |
1830 FEGaussianBlurElement.created() : super.created(); | 2484 FEGaussianBlurElement.created() : super.created(); |
1831 | 2485 |
1832 /// Checks if this type is supported on the current platform. | 2486 /// Checks if this type is supported on the current platform. |
1833 static bool get supported => true; | 2487 static bool get supported => true; |
1834 | 2488 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1883 @SupportedBrowser(SupportedBrowser.IE, '10') | 2537 @SupportedBrowser(SupportedBrowser.IE, '10') |
1884 @SupportedBrowser(SupportedBrowser.SAFARI) | 2538 @SupportedBrowser(SupportedBrowser.SAFARI) |
1885 @Unstable() | 2539 @Unstable() |
1886 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes, UriReference { | 2540 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes, UriReference { |
1887 // To suppress missing implicit constructor warnings. | 2541 // To suppress missing implicit constructor warnings. |
1888 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } | 2542 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } |
1889 | 2543 |
1890 @DomName('SVGFEImageElement.SVGFEImageElement') | 2544 @DomName('SVGFEImageElement.SVGFEImageElement') |
1891 @DocsEditable() | 2545 @DocsEditable() |
1892 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eImage"); | 2546 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eImage"); |
| 2547 |
| 2548 |
| 2549 static FEImageElement internalCreateFEImageElement() { |
| 2550 return new FEImageElement._internalWrap(); |
| 2551 } |
| 2552 |
| 2553 factory FEImageElement._internalWrap() { |
| 2554 return new FEImageElement.internal_(); |
| 2555 } |
| 2556 |
| 2557 FEImageElement.internal_() : super.internal_(); |
| 2558 |
1893 /** | 2559 /** |
1894 * Constructor instantiated by the DOM when a custom element has been created. | 2560 * Constructor instantiated by the DOM when a custom element has been created. |
1895 * | 2561 * |
1896 * This can only be called by subclasses from their created constructor. | 2562 * This can only be called by subclasses from their created constructor. |
1897 */ | 2563 */ |
1898 FEImageElement.created() : super.created(); | 2564 FEImageElement.created() : super.created(); |
1899 | 2565 |
1900 /// Checks if this type is supported on the current platform. | 2566 /// Checks if this type is supported on the current platform. |
1901 static bool get supported => true; | 2567 static bool get supported => true; |
1902 | 2568 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1943 @SupportedBrowser(SupportedBrowser.IE, '10') | 2609 @SupportedBrowser(SupportedBrowser.IE, '10') |
1944 @SupportedBrowser(SupportedBrowser.SAFARI) | 2610 @SupportedBrowser(SupportedBrowser.SAFARI) |
1945 @Unstable() | 2611 @Unstable() |
1946 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 2612 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
1947 // To suppress missing implicit constructor warnings. | 2613 // To suppress missing implicit constructor warnings. |
1948 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); } | 2614 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); } |
1949 | 2615 |
1950 @DomName('SVGFEMergeElement.SVGFEMergeElement') | 2616 @DomName('SVGFEMergeElement.SVGFEMergeElement') |
1951 @DocsEditable() | 2617 @DocsEditable() |
1952 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eMerge"); | 2618 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eMerge"); |
| 2619 |
| 2620 |
| 2621 static FEMergeElement internalCreateFEMergeElement() { |
| 2622 return new FEMergeElement._internalWrap(); |
| 2623 } |
| 2624 |
| 2625 factory FEMergeElement._internalWrap() { |
| 2626 return new FEMergeElement.internal_(); |
| 2627 } |
| 2628 |
| 2629 FEMergeElement.internal_() : super.internal_(); |
| 2630 |
1953 /** | 2631 /** |
1954 * Constructor instantiated by the DOM when a custom element has been created. | 2632 * Constructor instantiated by the DOM when a custom element has been created. |
1955 * | 2633 * |
1956 * This can only be called by subclasses from their created constructor. | 2634 * This can only be called by subclasses from their created constructor. |
1957 */ | 2635 */ |
1958 FEMergeElement.created() : super.created(); | 2636 FEMergeElement.created() : super.created(); |
1959 | 2637 |
1960 /// Checks if this type is supported on the current platform. | 2638 /// Checks if this type is supported on the current platform. |
1961 static bool get supported => true; | 2639 static bool get supported => true; |
1962 | 2640 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1995 @SupportedBrowser(SupportedBrowser.IE, '10') | 2673 @SupportedBrowser(SupportedBrowser.IE, '10') |
1996 @SupportedBrowser(SupportedBrowser.SAFARI) | 2674 @SupportedBrowser(SupportedBrowser.SAFARI) |
1997 @Unstable() | 2675 @Unstable() |
1998 class FEMergeNodeElement extends SvgElement { | 2676 class FEMergeNodeElement extends SvgElement { |
1999 // To suppress missing implicit constructor warnings. | 2677 // To suppress missing implicit constructor warnings. |
2000 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported");
} | 2678 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported");
} |
2001 | 2679 |
2002 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') | 2680 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') |
2003 @DocsEditable() | 2681 @DocsEditable() |
2004 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feMergeNode"); | 2682 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feMergeNode"); |
| 2683 |
| 2684 |
| 2685 static FEMergeNodeElement internalCreateFEMergeNodeElement() { |
| 2686 return new FEMergeNodeElement._internalWrap(); |
| 2687 } |
| 2688 |
| 2689 factory FEMergeNodeElement._internalWrap() { |
| 2690 return new FEMergeNodeElement.internal_(); |
| 2691 } |
| 2692 |
| 2693 FEMergeNodeElement.internal_() : super.internal_(); |
| 2694 |
2005 /** | 2695 /** |
2006 * Constructor instantiated by the DOM when a custom element has been created. | 2696 * Constructor instantiated by the DOM when a custom element has been created. |
2007 * | 2697 * |
2008 * This can only be called by subclasses from their created constructor. | 2698 * This can only be called by subclasses from their created constructor. |
2009 */ | 2699 */ |
2010 FEMergeNodeElement.created() : super.created(); | 2700 FEMergeNodeElement.created() : super.created(); |
2011 | 2701 |
2012 /// Checks if this type is supported on the current platform. | 2702 /// Checks if this type is supported on the current platform. |
2013 static bool get supported => true; | 2703 static bool get supported => true; |
2014 | 2704 |
(...skipping 12 matching lines...) Expand all Loading... |
2027 @DocsEditable() | 2717 @DocsEditable() |
2028 @DomName('SVGFEMorphologyElement') | 2718 @DomName('SVGFEMorphologyElement') |
2029 @SupportedBrowser(SupportedBrowser.CHROME) | 2719 @SupportedBrowser(SupportedBrowser.CHROME) |
2030 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2720 @SupportedBrowser(SupportedBrowser.FIREFOX) |
2031 @SupportedBrowser(SupportedBrowser.IE, '10') | 2721 @SupportedBrowser(SupportedBrowser.IE, '10') |
2032 @SupportedBrowser(SupportedBrowser.SAFARI) | 2722 @SupportedBrowser(SupportedBrowser.SAFARI) |
2033 @Unstable() | 2723 @Unstable() |
2034 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { | 2724 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { |
2035 // To suppress missing implicit constructor warnings. | 2725 // To suppress missing implicit constructor warnings. |
2036 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported");
} | 2726 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported");
} |
| 2727 |
| 2728 |
| 2729 static FEMorphologyElement internalCreateFEMorphologyElement() { |
| 2730 return new FEMorphologyElement._internalWrap(); |
| 2731 } |
| 2732 |
| 2733 factory FEMorphologyElement._internalWrap() { |
| 2734 return new FEMorphologyElement.internal_(); |
| 2735 } |
| 2736 |
| 2737 FEMorphologyElement.internal_() : super.internal_(); |
| 2738 |
2037 /** | 2739 /** |
2038 * Constructor instantiated by the DOM when a custom element has been created. | 2740 * Constructor instantiated by the DOM when a custom element has been created. |
2039 * | 2741 * |
2040 * This can only be called by subclasses from their created constructor. | 2742 * This can only be called by subclasses from their created constructor. |
2041 */ | 2743 */ |
2042 FEMorphologyElement.created() : super.created(); | 2744 FEMorphologyElement.created() : super.created(); |
2043 | 2745 |
2044 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') | 2746 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') |
2045 @DocsEditable() | 2747 @DocsEditable() |
2046 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; | 2748 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2104 @SupportedBrowser(SupportedBrowser.IE, '10') | 2806 @SupportedBrowser(SupportedBrowser.IE, '10') |
2105 @SupportedBrowser(SupportedBrowser.SAFARI) | 2807 @SupportedBrowser(SupportedBrowser.SAFARI) |
2106 @Unstable() | 2808 @Unstable() |
2107 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri
butes { | 2809 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri
butes { |
2108 // To suppress missing implicit constructor warnings. | 2810 // To suppress missing implicit constructor warnings. |
2109 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); } | 2811 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); } |
2110 | 2812 |
2111 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') | 2813 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') |
2112 @DocsEditable() | 2814 @DocsEditable() |
2113 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag("
feOffset"); | 2815 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag("
feOffset"); |
| 2816 |
| 2817 |
| 2818 static FEOffsetElement internalCreateFEOffsetElement() { |
| 2819 return new FEOffsetElement._internalWrap(); |
| 2820 } |
| 2821 |
| 2822 factory FEOffsetElement._internalWrap() { |
| 2823 return new FEOffsetElement.internal_(); |
| 2824 } |
| 2825 |
| 2826 FEOffsetElement.internal_() : super.internal_(); |
| 2827 |
2114 /** | 2828 /** |
2115 * Constructor instantiated by the DOM when a custom element has been created. | 2829 * Constructor instantiated by the DOM when a custom element has been created. |
2116 * | 2830 * |
2117 * This can only be called by subclasses from their created constructor. | 2831 * This can only be called by subclasses from their created constructor. |
2118 */ | 2832 */ |
2119 FEOffsetElement.created() : super.created(); | 2833 FEOffsetElement.created() : super.created(); |
2120 | 2834 |
2121 /// Checks if this type is supported on the current platform. | 2835 /// Checks if this type is supported on the current platform. |
2122 static bool get supported => true; | 2836 static bool get supported => true; |
2123 | 2837 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2168 @SupportedBrowser(SupportedBrowser.IE, '10') | 2882 @SupportedBrowser(SupportedBrowser.IE, '10') |
2169 @SupportedBrowser(SupportedBrowser.SAFARI) | 2883 @SupportedBrowser(SupportedBrowser.SAFARI) |
2170 @Unstable() | 2884 @Unstable() |
2171 class FEPointLightElement extends SvgElement { | 2885 class FEPointLightElement extends SvgElement { |
2172 // To suppress missing implicit constructor warnings. | 2886 // To suppress missing implicit constructor warnings. |
2173 factory FEPointLightElement._() { throw new UnsupportedError("Not supported");
} | 2887 factory FEPointLightElement._() { throw new UnsupportedError("Not supported");
} |
2174 | 2888 |
2175 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') | 2889 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') |
2176 @DocsEditable() | 2890 @DocsEditable() |
2177 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("fePointLight"); | 2891 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("fePointLight"); |
| 2892 |
| 2893 |
| 2894 static FEPointLightElement internalCreateFEPointLightElement() { |
| 2895 return new FEPointLightElement._internalWrap(); |
| 2896 } |
| 2897 |
| 2898 factory FEPointLightElement._internalWrap() { |
| 2899 return new FEPointLightElement.internal_(); |
| 2900 } |
| 2901 |
| 2902 FEPointLightElement.internal_() : super.internal_(); |
| 2903 |
2178 /** | 2904 /** |
2179 * Constructor instantiated by the DOM when a custom element has been created. | 2905 * Constructor instantiated by the DOM when a custom element has been created. |
2180 * | 2906 * |
2181 * This can only be called by subclasses from their created constructor. | 2907 * This can only be called by subclasses from their created constructor. |
2182 */ | 2908 */ |
2183 FEPointLightElement.created() : super.created(); | 2909 FEPointLightElement.created() : super.created(); |
2184 | 2910 |
2185 /// Checks if this type is supported on the current platform. | 2911 /// Checks if this type is supported on the current platform. |
2186 static bool get supported => true; | 2912 static bool get supported => true; |
2187 | 2913 |
(...skipping 24 matching lines...) Expand all Loading... |
2212 @SupportedBrowser(SupportedBrowser.IE, '10') | 2938 @SupportedBrowser(SupportedBrowser.IE, '10') |
2213 @SupportedBrowser(SupportedBrowser.SAFARI) | 2939 @SupportedBrowser(SupportedBrowser.SAFARI) |
2214 @Unstable() | 2940 @Unstable() |
2215 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta
ndardAttributes { | 2941 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta
ndardAttributes { |
2216 // To suppress missing implicit constructor warnings. | 2942 // To suppress missing implicit constructor warnings. |
2217 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor
ted"); } | 2943 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor
ted"); } |
2218 | 2944 |
2219 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') | 2945 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') |
2220 @DocsEditable() | 2946 @DocsEditable() |
2221 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle
ment_tag("feSpecularLighting"); | 2947 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle
ment_tag("feSpecularLighting"); |
| 2948 |
| 2949 |
| 2950 static FESpecularLightingElement internalCreateFESpecularLightingElement() { |
| 2951 return new FESpecularLightingElement._internalWrap(); |
| 2952 } |
| 2953 |
| 2954 factory FESpecularLightingElement._internalWrap() { |
| 2955 return new FESpecularLightingElement.internal_(); |
| 2956 } |
| 2957 |
| 2958 FESpecularLightingElement.internal_() : super.internal_(); |
| 2959 |
2222 /** | 2960 /** |
2223 * Constructor instantiated by the DOM when a custom element has been created. | 2961 * Constructor instantiated by the DOM when a custom element has been created. |
2224 * | 2962 * |
2225 * This can only be called by subclasses from their created constructor. | 2963 * This can only be called by subclasses from their created constructor. |
2226 */ | 2964 */ |
2227 FESpecularLightingElement.created() : super.created(); | 2965 FESpecularLightingElement.created() : super.created(); |
2228 | 2966 |
2229 /// Checks if this type is supported on the current platform. | 2967 /// Checks if this type is supported on the current platform. |
2230 static bool get supported => true; | 2968 static bool get supported => true; |
2231 | 2969 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2280 @SupportedBrowser(SupportedBrowser.IE, '10') | 3018 @SupportedBrowser(SupportedBrowser.IE, '10') |
2281 @SupportedBrowser(SupportedBrowser.SAFARI) | 3019 @SupportedBrowser(SupportedBrowser.SAFARI) |
2282 @Unstable() | 3020 @Unstable() |
2283 class FESpotLightElement extends SvgElement { | 3021 class FESpotLightElement extends SvgElement { |
2284 // To suppress missing implicit constructor warnings. | 3022 // To suppress missing implicit constructor warnings. |
2285 factory FESpotLightElement._() { throw new UnsupportedError("Not supported");
} | 3023 factory FESpotLightElement._() { throw new UnsupportedError("Not supported");
} |
2286 | 3024 |
2287 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') | 3025 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') |
2288 @DocsEditable() | 3026 @DocsEditable() |
2289 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feSpotLight"); | 3027 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feSpotLight"); |
| 3028 |
| 3029 |
| 3030 static FESpotLightElement internalCreateFESpotLightElement() { |
| 3031 return new FESpotLightElement._internalWrap(); |
| 3032 } |
| 3033 |
| 3034 factory FESpotLightElement._internalWrap() { |
| 3035 return new FESpotLightElement.internal_(); |
| 3036 } |
| 3037 |
| 3038 FESpotLightElement.internal_() : super.internal_(); |
| 3039 |
2290 /** | 3040 /** |
2291 * Constructor instantiated by the DOM when a custom element has been created. | 3041 * Constructor instantiated by the DOM when a custom element has been created. |
2292 * | 3042 * |
2293 * This can only be called by subclasses from their created constructor. | 3043 * This can only be called by subclasses from their created constructor. |
2294 */ | 3044 */ |
2295 FESpotLightElement.created() : super.created(); | 3045 FESpotLightElement.created() : super.created(); |
2296 | 3046 |
2297 /// Checks if this type is supported on the current platform. | 3047 /// Checks if this type is supported on the current platform. |
2298 static bool get supported => true; | 3048 static bool get supported => true; |
2299 | 3049 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2344 @SupportedBrowser(SupportedBrowser.IE, '10') | 3094 @SupportedBrowser(SupportedBrowser.IE, '10') |
2345 @SupportedBrowser(SupportedBrowser.SAFARI) | 3095 @SupportedBrowser(SupportedBrowser.SAFARI) |
2346 @Unstable() | 3096 @Unstable() |
2347 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu
tes { | 3097 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu
tes { |
2348 // To suppress missing implicit constructor warnings. | 3098 // To suppress missing implicit constructor warnings. |
2349 factory FETileElement._() { throw new UnsupportedError("Not supported"); } | 3099 factory FETileElement._() { throw new UnsupportedError("Not supported"); } |
2350 | 3100 |
2351 @DomName('SVGFETileElement.SVGFETileElement') | 3101 @DomName('SVGFETileElement.SVGFETileElement') |
2352 @DocsEditable() | 3102 @DocsEditable() |
2353 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe
Tile"); | 3103 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe
Tile"); |
| 3104 |
| 3105 |
| 3106 static FETileElement internalCreateFETileElement() { |
| 3107 return new FETileElement._internalWrap(); |
| 3108 } |
| 3109 |
| 3110 factory FETileElement._internalWrap() { |
| 3111 return new FETileElement.internal_(); |
| 3112 } |
| 3113 |
| 3114 FETileElement.internal_() : super.internal_(); |
| 3115 |
2354 /** | 3116 /** |
2355 * Constructor instantiated by the DOM when a custom element has been created. | 3117 * Constructor instantiated by the DOM when a custom element has been created. |
2356 * | 3118 * |
2357 * This can only be called by subclasses from their created constructor. | 3119 * This can only be called by subclasses from their created constructor. |
2358 */ | 3120 */ |
2359 FETileElement.created() : super.created(); | 3121 FETileElement.created() : super.created(); |
2360 | 3122 |
2361 /// Checks if this type is supported on the current platform. | 3123 /// Checks if this type is supported on the current platform. |
2362 static bool get supported => true; | 3124 static bool get supported => true; |
2363 | 3125 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2400 @SupportedBrowser(SupportedBrowser.IE, '10') | 3162 @SupportedBrowser(SupportedBrowser.IE, '10') |
2401 @SupportedBrowser(SupportedBrowser.SAFARI) | 3163 @SupportedBrowser(SupportedBrowser.SAFARI) |
2402 @Unstable() | 3164 @Unstable() |
2403 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { | 3165 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { |
2404 // To suppress missing implicit constructor warnings. | 3166 // To suppress missing implicit constructor warnings. |
2405 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported");
} | 3167 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported");
} |
2406 | 3168 |
2407 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') | 3169 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') |
2408 @DocsEditable() | 3170 @DocsEditable() |
2409 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("feTurbulence"); | 3171 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("feTurbulence"); |
| 3172 |
| 3173 |
| 3174 static FETurbulenceElement internalCreateFETurbulenceElement() { |
| 3175 return new FETurbulenceElement._internalWrap(); |
| 3176 } |
| 3177 |
| 3178 factory FETurbulenceElement._internalWrap() { |
| 3179 return new FETurbulenceElement.internal_(); |
| 3180 } |
| 3181 |
| 3182 FETurbulenceElement.internal_() : super.internal_(); |
| 3183 |
2410 /** | 3184 /** |
2411 * Constructor instantiated by the DOM when a custom element has been created. | 3185 * Constructor instantiated by the DOM when a custom element has been created. |
2412 * | 3186 * |
2413 * This can only be called by subclasses from their created constructor. | 3187 * This can only be called by subclasses from their created constructor. |
2414 */ | 3188 */ |
2415 FETurbulenceElement.created() : super.created(); | 3189 FETurbulenceElement.created() : super.created(); |
2416 | 3190 |
2417 /// Checks if this type is supported on the current platform. | 3191 /// Checks if this type is supported on the current platform. |
2418 static bool get supported => true; | 3192 static bool get supported => true; |
2419 | 3193 |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2500 @SupportedBrowser(SupportedBrowser.IE, '10') | 3274 @SupportedBrowser(SupportedBrowser.IE, '10') |
2501 @SupportedBrowser(SupportedBrowser.SAFARI) | 3275 @SupportedBrowser(SupportedBrowser.SAFARI) |
2502 @Unstable() | 3276 @Unstable() |
2503 class FilterElement extends SvgElement implements UriReference { | 3277 class FilterElement extends SvgElement implements UriReference { |
2504 // To suppress missing implicit constructor warnings. | 3278 // To suppress missing implicit constructor warnings. |
2505 factory FilterElement._() { throw new UnsupportedError("Not supported"); } | 3279 factory FilterElement._() { throw new UnsupportedError("Not supported"); } |
2506 | 3280 |
2507 @DomName('SVGFilterElement.SVGFilterElement') | 3281 @DomName('SVGFilterElement.SVGFilterElement') |
2508 @DocsEditable() | 3282 @DocsEditable() |
2509 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi
lter"); | 3283 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi
lter"); |
| 3284 |
| 3285 |
| 3286 static FilterElement internalCreateFilterElement() { |
| 3287 return new FilterElement._internalWrap(); |
| 3288 } |
| 3289 |
| 3290 factory FilterElement._internalWrap() { |
| 3291 return new FilterElement.internal_(); |
| 3292 } |
| 3293 |
| 3294 FilterElement.internal_() : super.internal_(); |
| 3295 |
2510 /** | 3296 /** |
2511 * Constructor instantiated by the DOM when a custom element has been created. | 3297 * Constructor instantiated by the DOM when a custom element has been created. |
2512 * | 3298 * |
2513 * This can only be called by subclasses from their created constructor. | 3299 * This can only be called by subclasses from their created constructor. |
2514 */ | 3300 */ |
2515 FilterElement.created() : super.created(); | 3301 FilterElement.created() : super.created(); |
2516 | 3302 |
2517 /// Checks if this type is supported on the current platform. | 3303 /// Checks if this type is supported on the current platform. |
2518 static bool get supported => true; | 3304 static bool get supported => true; |
2519 | 3305 |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2629 @SupportedBrowser(SupportedBrowser.FIREFOX) | 3415 @SupportedBrowser(SupportedBrowser.FIREFOX) |
2630 @SupportedBrowser(SupportedBrowser.SAFARI) | 3416 @SupportedBrowser(SupportedBrowser.SAFARI) |
2631 @Unstable() | 3417 @Unstable() |
2632 class ForeignObjectElement extends GraphicsElement { | 3418 class ForeignObjectElement extends GraphicsElement { |
2633 // To suppress missing implicit constructor warnings. | 3419 // To suppress missing implicit constructor warnings. |
2634 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported")
; } | 3420 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported")
; } |
2635 | 3421 |
2636 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') | 3422 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') |
2637 @DocsEditable() | 3423 @DocsEditable() |
2638 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_
tag("foreignObject"); | 3424 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_
tag("foreignObject"); |
| 3425 |
| 3426 |
| 3427 static ForeignObjectElement internalCreateForeignObjectElement() { |
| 3428 return new ForeignObjectElement._internalWrap(); |
| 3429 } |
| 3430 |
| 3431 factory ForeignObjectElement._internalWrap() { |
| 3432 return new ForeignObjectElement.internal_(); |
| 3433 } |
| 3434 |
| 3435 ForeignObjectElement.internal_() : super.internal_(); |
| 3436 |
2639 /** | 3437 /** |
2640 * Constructor instantiated by the DOM when a custom element has been created. | 3438 * Constructor instantiated by the DOM when a custom element has been created. |
2641 * | 3439 * |
2642 * This can only be called by subclasses from their created constructor. | 3440 * This can only be called by subclasses from their created constructor. |
2643 */ | 3441 */ |
2644 ForeignObjectElement.created() : super.created(); | 3442 ForeignObjectElement.created() : super.created(); |
2645 | 3443 |
2646 /// Checks if this type is supported on the current platform. | 3444 /// Checks if this type is supported on the current platform. |
2647 static bool get supported => true; | 3445 static bool get supported => true; |
2648 | 3446 |
(...skipping 24 matching lines...) Expand all Loading... |
2673 @DocsEditable() | 3471 @DocsEditable() |
2674 @DomName('SVGGElement') | 3472 @DomName('SVGGElement') |
2675 @Unstable() | 3473 @Unstable() |
2676 class GElement extends GraphicsElement { | 3474 class GElement extends GraphicsElement { |
2677 // To suppress missing implicit constructor warnings. | 3475 // To suppress missing implicit constructor warnings. |
2678 factory GElement._() { throw new UnsupportedError("Not supported"); } | 3476 factory GElement._() { throw new UnsupportedError("Not supported"); } |
2679 | 3477 |
2680 @DomName('SVGGElement.SVGGElement') | 3478 @DomName('SVGGElement.SVGGElement') |
2681 @DocsEditable() | 3479 @DocsEditable() |
2682 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); | 3480 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); |
| 3481 |
| 3482 |
| 3483 static GElement internalCreateGElement() { |
| 3484 return new GElement._internalWrap(); |
| 3485 } |
| 3486 |
| 3487 factory GElement._internalWrap() { |
| 3488 return new GElement.internal_(); |
| 3489 } |
| 3490 |
| 3491 GElement.internal_() : super.internal_(); |
| 3492 |
2683 /** | 3493 /** |
2684 * Constructor instantiated by the DOM when a custom element has been created. | 3494 * Constructor instantiated by the DOM when a custom element has been created. |
2685 * | 3495 * |
2686 * This can only be called by subclasses from their created constructor. | 3496 * This can only be called by subclasses from their created constructor. |
2687 */ | 3497 */ |
2688 GElement.created() : super.created(); | 3498 GElement.created() : super.created(); |
2689 | 3499 |
2690 } | 3500 } |
2691 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3501 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2692 // for details. All rights reserved. Use of this source code is governed by a | 3502 // for details. All rights reserved. Use of this source code is governed by a |
2693 // BSD-style license that can be found in the LICENSE file. | 3503 // BSD-style license that can be found in the LICENSE file. |
2694 | 3504 |
2695 // WARNING: Do not edit - generated code. | 3505 // WARNING: Do not edit - generated code. |
2696 | 3506 |
2697 | 3507 |
2698 @DocsEditable() | 3508 @DocsEditable() |
2699 @DomName('SVGGeometryElement') | 3509 @DomName('SVGGeometryElement') |
2700 @Experimental() // untriaged | 3510 @Experimental() // untriaged |
2701 class GeometryElement extends GraphicsElement { | 3511 class GeometryElement extends GraphicsElement { |
2702 // To suppress missing implicit constructor warnings. | 3512 // To suppress missing implicit constructor warnings. |
2703 factory GeometryElement._() { throw new UnsupportedError("Not supported"); } | 3513 factory GeometryElement._() { throw new UnsupportedError("Not supported"); } |
| 3514 |
| 3515 |
| 3516 static GeometryElement internalCreateGeometryElement() { |
| 3517 return new GeometryElement._internalWrap(); |
| 3518 } |
| 3519 |
| 3520 factory GeometryElement._internalWrap() { |
| 3521 return new GeometryElement.internal_(); |
| 3522 } |
| 3523 |
| 3524 GeometryElement.internal_() : super.internal_(); |
| 3525 |
2704 /** | 3526 /** |
2705 * Constructor instantiated by the DOM when a custom element has been created. | 3527 * Constructor instantiated by the DOM when a custom element has been created. |
2706 * | 3528 * |
2707 * This can only be called by subclasses from their created constructor. | 3529 * This can only be called by subclasses from their created constructor. |
2708 */ | 3530 */ |
2709 GeometryElement.created() : super.created(); | 3531 GeometryElement.created() : super.created(); |
2710 | 3532 |
2711 @DomName('SVGGeometryElement.isPointInFill') | 3533 @DomName('SVGGeometryElement.isPointInFill') |
2712 @DocsEditable() | 3534 @DocsEditable() |
2713 @Experimental() // untriaged | 3535 @Experimental() // untriaged |
(...skipping 11 matching lines...) Expand all Loading... |
2725 | 3547 |
2726 // WARNING: Do not edit - generated code. | 3548 // WARNING: Do not edit - generated code. |
2727 | 3549 |
2728 | 3550 |
2729 @DocsEditable() | 3551 @DocsEditable() |
2730 @DomName('SVGGraphicsElement') | 3552 @DomName('SVGGraphicsElement') |
2731 @Experimental() // untriaged | 3553 @Experimental() // untriaged |
2732 class GraphicsElement extends SvgElement implements Tests { | 3554 class GraphicsElement extends SvgElement implements Tests { |
2733 // To suppress missing implicit constructor warnings. | 3555 // To suppress missing implicit constructor warnings. |
2734 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } | 3556 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } |
| 3557 |
| 3558 |
| 3559 static GraphicsElement internalCreateGraphicsElement() { |
| 3560 return new GraphicsElement._internalWrap(); |
| 3561 } |
| 3562 |
| 3563 factory GraphicsElement._internalWrap() { |
| 3564 return new GraphicsElement.internal_(); |
| 3565 } |
| 3566 |
| 3567 GraphicsElement.internal_() : super.internal_(); |
| 3568 |
2735 /** | 3569 /** |
2736 * Constructor instantiated by the DOM when a custom element has been created. | 3570 * Constructor instantiated by the DOM when a custom element has been created. |
2737 * | 3571 * |
2738 * This can only be called by subclasses from their created constructor. | 3572 * This can only be called by subclasses from their created constructor. |
2739 */ | 3573 */ |
2740 GraphicsElement.created() : super.created(); | 3574 GraphicsElement.created() : super.created(); |
2741 | 3575 |
2742 @DomName('SVGGraphicsElement.farthestViewportElement') | 3576 @DomName('SVGGraphicsElement.farthestViewportElement') |
2743 @DocsEditable() | 3577 @DocsEditable() |
2744 @Experimental() // untriaged | 3578 @Experimental() // untriaged |
(...skipping 10 matching lines...) Expand all Loading... |
2755 AnimatedTransformList get transform => wrap_jso(_blink.BlinkSVGGraphicsElement
.instance.transform_Getter_(unwrap_jso(this))); | 3589 AnimatedTransformList get transform => wrap_jso(_blink.BlinkSVGGraphicsElement
.instance.transform_Getter_(unwrap_jso(this))); |
2756 | 3590 |
2757 @DomName('SVGGraphicsElement.getBBox') | 3591 @DomName('SVGGraphicsElement.getBBox') |
2758 @DocsEditable() | 3592 @DocsEditable() |
2759 @Experimental() // untriaged | 3593 @Experimental() // untriaged |
2760 Rect getBBox() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getBBox_Cal
lback_0_(unwrap_jso(this))); | 3594 Rect getBBox() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getBBox_Cal
lback_0_(unwrap_jso(this))); |
2761 | 3595 |
2762 @DomName('SVGGraphicsElement.getCTM') | 3596 @DomName('SVGGraphicsElement.getCTM') |
2763 @DocsEditable() | 3597 @DocsEditable() |
2764 @Experimental() // untriaged | 3598 @Experimental() // untriaged |
2765 Matrix getCtm() => _blink.BlinkSVGGraphicsElement.instance.getCTM_Callback_0_(
unwrap_jso(this)); | 3599 Matrix getCtm() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getCTM_Cal
lback_0_(unwrap_jso(this))); |
2766 | 3600 |
2767 @DomName('SVGGraphicsElement.getScreenCTM') | 3601 @DomName('SVGGraphicsElement.getScreenCTM') |
2768 @DocsEditable() | 3602 @DocsEditable() |
2769 @Experimental() // untriaged | 3603 @Experimental() // untriaged |
2770 Matrix getScreenCtm() => _blink.BlinkSVGGraphicsElement.instance.getScreenCTM_
Callback_0_(unwrap_jso(this)); | 3604 Matrix getScreenCtm() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getS
creenCTM_Callback_0_(unwrap_jso(this))); |
2771 | 3605 |
2772 @DomName('SVGGraphicsElement.getTransformToElement') | 3606 @DomName('SVGGraphicsElement.getTransformToElement') |
2773 @DocsEditable() | 3607 @DocsEditable() |
2774 @Experimental() // untriaged | 3608 @Experimental() // untriaged |
2775 Matrix getTransformToElement(SvgElement element) => _blink.BlinkSVGGraphicsEle
ment.instance.getTransformToElement_Callback_1_(unwrap_jso(this), unwrap_jso(ele
ment)); | 3609 Matrix getTransformToElement(SvgElement element) => wrap_jso(_blink.BlinkSVGGr
aphicsElement.instance.getTransformToElement_Callback_1_(unwrap_jso(this), unwra
p_jso(element))); |
2776 | 3610 |
2777 @DomName('SVGGraphicsElement.requiredExtensions') | 3611 @DomName('SVGGraphicsElement.requiredExtensions') |
2778 @DocsEditable() | 3612 @DocsEditable() |
2779 @Experimental() // untriaged | 3613 @Experimental() // untriaged |
2780 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGGraphicsElement.i
nstance.requiredExtensions_Getter_(unwrap_jso(this))); | 3614 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGGraphicsElement.i
nstance.requiredExtensions_Getter_(unwrap_jso(this))); |
2781 | 3615 |
2782 @DomName('SVGGraphicsElement.requiredFeatures') | 3616 @DomName('SVGGraphicsElement.requiredFeatures') |
2783 @DocsEditable() | 3617 @DocsEditable() |
2784 @Experimental() // untriaged | 3618 @Experimental() // untriaged |
2785 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGGraphicsElement.ins
tance.requiredFeatures_Getter_(unwrap_jso(this))); | 3619 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGGraphicsElement.ins
tance.requiredFeatures_Getter_(unwrap_jso(this))); |
(...skipping 19 matching lines...) Expand all Loading... |
2805 @DocsEditable() | 3639 @DocsEditable() |
2806 @DomName('SVGImageElement') | 3640 @DomName('SVGImageElement') |
2807 @Unstable() | 3641 @Unstable() |
2808 class ImageElement extends GraphicsElement implements UriReference { | 3642 class ImageElement extends GraphicsElement implements UriReference { |
2809 // To suppress missing implicit constructor warnings. | 3643 // To suppress missing implicit constructor warnings. |
2810 factory ImageElement._() { throw new UnsupportedError("Not supported"); } | 3644 factory ImageElement._() { throw new UnsupportedError("Not supported"); } |
2811 | 3645 |
2812 @DomName('SVGImageElement.SVGImageElement') | 3646 @DomName('SVGImageElement.SVGImageElement') |
2813 @DocsEditable() | 3647 @DocsEditable() |
2814 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima
ge"); | 3648 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima
ge"); |
| 3649 |
| 3650 |
| 3651 static ImageElement internalCreateImageElement() { |
| 3652 return new ImageElement._internalWrap(); |
| 3653 } |
| 3654 |
| 3655 factory ImageElement._internalWrap() { |
| 3656 return new ImageElement.internal_(); |
| 3657 } |
| 3658 |
| 3659 ImageElement.internal_() : super.internal_(); |
| 3660 |
2815 /** | 3661 /** |
2816 * Constructor instantiated by the DOM when a custom element has been created. | 3662 * Constructor instantiated by the DOM when a custom element has been created. |
2817 * | 3663 * |
2818 * This can only be called by subclasses from their created constructor. | 3664 * This can only be called by subclasses from their created constructor. |
2819 */ | 3665 */ |
2820 ImageElement.created() : super.created(); | 3666 ImageElement.created() : super.created(); |
2821 | 3667 |
2822 @DomName('SVGImageElement.height') | 3668 @DomName('SVGImageElement.height') |
2823 @DocsEditable() | 3669 @DocsEditable() |
2824 AnimatedLength get height => wrap_jso(_blink.BlinkSVGImageElement.instance.hei
ght_Getter_(unwrap_jso(this))); | 3670 AnimatedLength get height => wrap_jso(_blink.BlinkSVGImageElement.instance.hei
ght_Getter_(unwrap_jso(this))); |
(...skipping 26 matching lines...) Expand all Loading... |
2851 // WARNING: Do not edit - generated code. | 3697 // WARNING: Do not edit - generated code. |
2852 | 3698 |
2853 | 3699 |
2854 @DocsEditable() | 3700 @DocsEditable() |
2855 @DomName('SVGLength') | 3701 @DomName('SVGLength') |
2856 @Unstable() | 3702 @Unstable() |
2857 class Length extends NativeFieldWrapperClass2 { | 3703 class Length extends NativeFieldWrapperClass2 { |
2858 // To suppress missing implicit constructor warnings. | 3704 // To suppress missing implicit constructor warnings. |
2859 factory Length._() { throw new UnsupportedError("Not supported"); } | 3705 factory Length._() { throw new UnsupportedError("Not supported"); } |
2860 | 3706 |
| 3707 static Length internalCreateLength() { |
| 3708 return new Length._internalWrap(); |
| 3709 } |
| 3710 |
| 3711 js.JsObject blink_jsObject; |
| 3712 |
| 3713 factory Length._internalWrap() { |
| 3714 return new Length.internal_(); |
| 3715 } |
| 3716 |
| 3717 Length.internal_() { } |
| 3718 |
| 3719 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 3720 int get hashCode => unwrap_jso(this).hashCode; |
| 3721 |
2861 @DomName('SVGLength.SVG_LENGTHTYPE_CM') | 3722 @DomName('SVGLength.SVG_LENGTHTYPE_CM') |
2862 @DocsEditable() | 3723 @DocsEditable() |
2863 static const int SVG_LENGTHTYPE_CM = 6; | 3724 static const int SVG_LENGTHTYPE_CM = 6; |
2864 | 3725 |
2865 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') | 3726 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') |
2866 @DocsEditable() | 3727 @DocsEditable() |
2867 static const int SVG_LENGTHTYPE_EMS = 3; | 3728 static const int SVG_LENGTHTYPE_EMS = 3; |
2868 | 3729 |
2869 @DomName('SVGLength.SVG_LENGTHTYPE_EXS') | 3730 @DomName('SVGLength.SVG_LENGTHTYPE_EXS') |
2870 @DocsEditable() | 3731 @DocsEditable() |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2905 @DomName('SVGLength.unitType') | 3766 @DomName('SVGLength.unitType') |
2906 @DocsEditable() | 3767 @DocsEditable() |
2907 int get unitType => _blink.BlinkSVGLength.instance.unitType_Getter_(unwrap_jso
(this)); | 3768 int get unitType => _blink.BlinkSVGLength.instance.unitType_Getter_(unwrap_jso
(this)); |
2908 | 3769 |
2909 @DomName('SVGLength.value') | 3770 @DomName('SVGLength.value') |
2910 @DocsEditable() | 3771 @DocsEditable() |
2911 num get value => _blink.BlinkSVGLength.instance.value_Getter_(unwrap_jso(this)
); | 3772 num get value => _blink.BlinkSVGLength.instance.value_Getter_(unwrap_jso(this)
); |
2912 | 3773 |
2913 @DomName('SVGLength.value') | 3774 @DomName('SVGLength.value') |
2914 @DocsEditable() | 3775 @DocsEditable() |
2915 void set value(num value) => _blink.BlinkSVGLength.instance.value_Setter_(unwr
ap_jso(this), value); | 3776 set value(num value) => _blink.BlinkSVGLength.instance.value_Setter_(unwrap_js
o(this), value); |
2916 | 3777 |
2917 @DomName('SVGLength.valueAsString') | 3778 @DomName('SVGLength.valueAsString') |
2918 @DocsEditable() | 3779 @DocsEditable() |
2919 String get valueAsString => _blink.BlinkSVGLength.instance.valueAsString_Gette
r_(unwrap_jso(this)); | 3780 String get valueAsString => _blink.BlinkSVGLength.instance.valueAsString_Gette
r_(unwrap_jso(this)); |
2920 | 3781 |
2921 @DomName('SVGLength.valueAsString') | 3782 @DomName('SVGLength.valueAsString') |
2922 @DocsEditable() | 3783 @DocsEditable() |
2923 void set valueAsString(String value) => _blink.BlinkSVGLength.instance.valueAs
String_Setter_(unwrap_jso(this), value); | 3784 set valueAsString(String value) => _blink.BlinkSVGLength.instance.valueAsStrin
g_Setter_(unwrap_jso(this), value); |
2924 | 3785 |
2925 @DomName('SVGLength.valueInSpecifiedUnits') | 3786 @DomName('SVGLength.valueInSpecifiedUnits') |
2926 @DocsEditable() | 3787 @DocsEditable() |
2927 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.instance.valueInSpecifi
edUnits_Getter_(unwrap_jso(this)); | 3788 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.instance.valueInSpecifi
edUnits_Getter_(unwrap_jso(this)); |
2928 | 3789 |
2929 @DomName('SVGLength.valueInSpecifiedUnits') | 3790 @DomName('SVGLength.valueInSpecifiedUnits') |
2930 @DocsEditable() | 3791 @DocsEditable() |
2931 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.instance.va
lueInSpecifiedUnits_Setter_(unwrap_jso(this), value); | 3792 set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.instance.valueIn
SpecifiedUnits_Setter_(unwrap_jso(this), value); |
2932 | 3793 |
2933 @DomName('SVGLength.convertToSpecifiedUnits') | 3794 @DomName('SVGLength.convertToSpecifiedUnits') |
2934 @DocsEditable() | 3795 @DocsEditable() |
2935 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.instance.c
onvertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType); | 3796 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.instance.c
onvertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType); |
2936 | 3797 |
2937 @DomName('SVGLength.newValueSpecifiedUnits') | 3798 @DomName('SVGLength.newValueSpecifiedUnits') |
2938 @DocsEditable() | 3799 @DocsEditable() |
2939 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGLength.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), un
itType, valueInSpecifiedUnits); | 3800 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGLength.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), un
itType, valueInSpecifiedUnits); |
2940 | 3801 |
2941 } | 3802 } |
2942 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3803 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2943 // for details. All rights reserved. Use of this source code is governed by a | 3804 // for details. All rights reserved. Use of this source code is governed by a |
2944 // BSD-style license that can be found in the LICENSE file. | 3805 // BSD-style license that can be found in the LICENSE file. |
2945 | 3806 |
2946 // WARNING: Do not edit - generated code. | 3807 // WARNING: Do not edit - generated code. |
2947 | 3808 |
2948 | 3809 |
2949 @DocsEditable() | 3810 @DocsEditable() |
2950 @DomName('SVGLengthList') | 3811 @DomName('SVGLengthList') |
2951 @Unstable() | 3812 @Unstable() |
2952 class LengthList extends NativeFieldWrapperClass2 with ListMixin<Length>, Immuta
bleListMixin<Length> implements List<Length> { | 3813 class LengthList extends JsoNativeFieldWrapper with ListMixin<Length>, Immutable
ListMixin<Length> implements List<Length> { |
2953 // To suppress missing implicit constructor warnings. | 3814 // To suppress missing implicit constructor warnings. |
2954 factory LengthList._() { throw new UnsupportedError("Not supported"); } | 3815 factory LengthList._() { throw new UnsupportedError("Not supported"); } |
2955 | 3816 |
| 3817 static LengthList internalCreateLengthList() { |
| 3818 return new LengthList._internalWrap(); |
| 3819 } |
| 3820 |
| 3821 js.JsObject blink_jsObject; |
| 3822 |
| 3823 factory LengthList._internalWrap() { |
| 3824 return new LengthList.internal_(); |
| 3825 } |
| 3826 |
| 3827 LengthList.internal_() { } |
| 3828 |
| 3829 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 3830 int get hashCode => unwrap_jso(this).hashCode; |
| 3831 |
2956 @DomName('SVGLengthList.length') | 3832 @DomName('SVGLengthList.length') |
2957 @DocsEditable() | 3833 @DocsEditable() |
2958 @Experimental() // untriaged | 3834 @Experimental() // untriaged |
2959 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(unwrap_jso
(this)); | 3835 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(unwrap_jso
(this)); |
2960 | 3836 |
2961 @DomName('SVGLengthList.numberOfItems') | 3837 @DomName('SVGLengthList.numberOfItems') |
2962 @DocsEditable() | 3838 @DocsEditable() |
2963 int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); | 3839 int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); |
2964 | 3840 |
2965 Length operator[](int index) { | 3841 Length operator[](int index) { |
2966 if (index < 0 || index >= length) | 3842 if (index < 0 || index >= length) |
2967 throw new RangeError.index(index, this); | 3843 throw new RangeError.index(index, this); |
2968 return getItem(index); | 3844 return getItem(index); |
2969 } | 3845 } |
2970 | 3846 |
2971 void operator[]=(int index, Length value) { | 3847 void operator[]=(int index, Length value) { |
2972 throw new UnsupportedError("Cannot assign element of immutable List."); | 3848 throw new UnsupportedError("Cannot assign element of immutable List."); |
2973 } | 3849 } |
2974 // -- start List<Length> mixins. | 3850 // -- start List<Length> mixins. |
2975 // Length is the element type. | 3851 // Length is the element type. |
2976 | 3852 |
2977 | 3853 |
2978 void set length(int value) { | 3854 set length(int value) { |
2979 throw new UnsupportedError("Cannot resize immutable List."); | 3855 throw new UnsupportedError("Cannot resize immutable List."); |
2980 } | 3856 } |
2981 | 3857 |
2982 Length get first { | 3858 Length get first { |
2983 if (this.length > 0) { | 3859 if (this.length > 0) { |
2984 return getItem(0); | 3860 return getItem(0); |
2985 } | 3861 } |
2986 throw new StateError("No elements"); | 3862 throw new StateError("No elements"); |
2987 } | 3863 } |
2988 | 3864 |
(...skipping 17 matching lines...) Expand all Loading... |
3006 Length elementAt(int index) => this[index]; | 3882 Length elementAt(int index) => this[index]; |
3007 // -- end List<Length> mixins. | 3883 // -- end List<Length> mixins. |
3008 | 3884 |
3009 @DomName('SVGLengthList.__setter__') | 3885 @DomName('SVGLengthList.__setter__') |
3010 @DocsEditable() | 3886 @DocsEditable() |
3011 @Experimental() // untriaged | 3887 @Experimental() // untriaged |
3012 void __setter__(int index, Length value) => _blink.BlinkSVGLengthList.instance
.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); | 3888 void __setter__(int index, Length value) => _blink.BlinkSVGLengthList.instance
.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
3013 | 3889 |
3014 @DomName('SVGLengthList.appendItem') | 3890 @DomName('SVGLengthList.appendItem') |
3015 @DocsEditable() | 3891 @DocsEditable() |
3016 Length appendItem(Length item) => _blink.BlinkSVGLengthList.instance.appendIte
m_Callback_1_(unwrap_jso(this), unwrap_jso(item)); | 3892 Length appendItem(Length item) => wrap_jso(_blink.BlinkSVGLengthList.instance.
appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(item))); |
3017 | 3893 |
3018 @DomName('SVGLengthList.clear') | 3894 @DomName('SVGLengthList.clear') |
3019 @DocsEditable() | 3895 @DocsEditable() |
3020 void clear() => _blink.BlinkSVGLengthList.instance.clear_Callback_0_(unwrap_js
o(this)); | 3896 void clear() => _blink.BlinkSVGLengthList.instance.clear_Callback_0_(unwrap_js
o(this)); |
3021 | 3897 |
3022 @DomName('SVGLengthList.getItem') | 3898 @DomName('SVGLengthList.getItem') |
3023 @DocsEditable() | 3899 @DocsEditable() |
3024 Length getItem(int index) => _blink.BlinkSVGLengthList.instance.getItem_Callba
ck_1_(unwrap_jso(this), index); | 3900 Length getItem(int index) => wrap_jso(_blink.BlinkSVGLengthList.instance.getIt
em_Callback_1_(unwrap_jso(this), index)); |
3025 | 3901 |
3026 @DomName('SVGLengthList.initialize') | 3902 @DomName('SVGLengthList.initialize') |
3027 @DocsEditable() | 3903 @DocsEditable() |
3028 Length initialize(Length item) => _blink.BlinkSVGLengthList.instance.initializ
e_Callback_1_(unwrap_jso(this), unwrap_jso(item)); | 3904 Length initialize(Length item) => wrap_jso(_blink.BlinkSVGLengthList.instance.
initialize_Callback_1_(unwrap_jso(this), unwrap_jso(item))); |
3029 | 3905 |
3030 @DomName('SVGLengthList.insertItemBefore') | 3906 @DomName('SVGLengthList.insertItemBefore') |
3031 @DocsEditable() | 3907 @DocsEditable() |
3032 Length insertItemBefore(Length item, int index) => _blink.BlinkSVGLengthList.i
nstance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); | 3908 Length insertItemBefore(Length item, int index) => wrap_jso(_blink.BlinkSVGLen
gthList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item)
, index)); |
3033 | 3909 |
3034 @DomName('SVGLengthList.removeItem') | 3910 @DomName('SVGLengthList.removeItem') |
3035 @DocsEditable() | 3911 @DocsEditable() |
3036 Length removeItem(int index) => _blink.BlinkSVGLengthList.instance.removeItem_
Callback_1_(unwrap_jso(this), index); | 3912 Length removeItem(int index) => wrap_jso(_blink.BlinkSVGLengthList.instance.re
moveItem_Callback_1_(unwrap_jso(this), index)); |
3037 | 3913 |
3038 @DomName('SVGLengthList.replaceItem') | 3914 @DomName('SVGLengthList.replaceItem') |
3039 @DocsEditable() | 3915 @DocsEditable() |
3040 Length replaceItem(Length item, int index) => _blink.BlinkSVGLengthList.instan
ce.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); | 3916 Length replaceItem(Length item, int index) => wrap_jso(_blink.BlinkSVGLengthLi
st.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index)); |
3041 | 3917 |
3042 } | 3918 } |
3043 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3919 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3044 // for details. All rights reserved. Use of this source code is governed by a | 3920 // for details. All rights reserved. Use of this source code is governed by a |
3045 // BSD-style license that can be found in the LICENSE file. | 3921 // BSD-style license that can be found in the LICENSE file. |
3046 | 3922 |
3047 // WARNING: Do not edit - generated code. | 3923 // WARNING: Do not edit - generated code. |
3048 | 3924 |
3049 | 3925 |
3050 @DocsEditable() | 3926 @DocsEditable() |
3051 @DomName('SVGLineElement') | 3927 @DomName('SVGLineElement') |
3052 @Unstable() | 3928 @Unstable() |
3053 class LineElement extends GeometryElement { | 3929 class LineElement extends GeometryElement { |
3054 // To suppress missing implicit constructor warnings. | 3930 // To suppress missing implicit constructor warnings. |
3055 factory LineElement._() { throw new UnsupportedError("Not supported"); } | 3931 factory LineElement._() { throw new UnsupportedError("Not supported"); } |
3056 | 3932 |
3057 @DomName('SVGLineElement.SVGLineElement') | 3933 @DomName('SVGLineElement.SVGLineElement') |
3058 @DocsEditable() | 3934 @DocsEditable() |
3059 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line
"); | 3935 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line
"); |
| 3936 |
| 3937 |
| 3938 static LineElement internalCreateLineElement() { |
| 3939 return new LineElement._internalWrap(); |
| 3940 } |
| 3941 |
| 3942 factory LineElement._internalWrap() { |
| 3943 return new LineElement.internal_(); |
| 3944 } |
| 3945 |
| 3946 LineElement.internal_() : super.internal_(); |
| 3947 |
3060 /** | 3948 /** |
3061 * Constructor instantiated by the DOM when a custom element has been created. | 3949 * Constructor instantiated by the DOM when a custom element has been created. |
3062 * | 3950 * |
3063 * This can only be called by subclasses from their created constructor. | 3951 * This can only be called by subclasses from their created constructor. |
3064 */ | 3952 */ |
3065 LineElement.created() : super.created(); | 3953 LineElement.created() : super.created(); |
3066 | 3954 |
3067 @DomName('SVGLineElement.x1') | 3955 @DomName('SVGLineElement.x1') |
3068 @DocsEditable() | 3956 @DocsEditable() |
3069 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLineElement.instance.x1_Gette
r_(unwrap_jso(this))); | 3957 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLineElement.instance.x1_Gette
r_(unwrap_jso(this))); |
(...skipping 21 matching lines...) Expand all Loading... |
3091 @DocsEditable() | 3979 @DocsEditable() |
3092 @DomName('SVGLinearGradientElement') | 3980 @DomName('SVGLinearGradientElement') |
3093 @Unstable() | 3981 @Unstable() |
3094 class LinearGradientElement extends _GradientElement { | 3982 class LinearGradientElement extends _GradientElement { |
3095 // To suppress missing implicit constructor warnings. | 3983 // To suppress missing implicit constructor warnings. |
3096 factory LinearGradientElement._() { throw new UnsupportedError("Not supported"
); } | 3984 factory LinearGradientElement._() { throw new UnsupportedError("Not supported"
); } |
3097 | 3985 |
3098 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') | 3986 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') |
3099 @DocsEditable() | 3987 @DocsEditable() |
3100 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("linearGradient"); | 3988 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("linearGradient"); |
| 3989 |
| 3990 |
| 3991 static LinearGradientElement internalCreateLinearGradientElement() { |
| 3992 return new LinearGradientElement._internalWrap(); |
| 3993 } |
| 3994 |
| 3995 factory LinearGradientElement._internalWrap() { |
| 3996 return new LinearGradientElement.internal_(); |
| 3997 } |
| 3998 |
| 3999 LinearGradientElement.internal_() : super.internal_(); |
| 4000 |
3101 /** | 4001 /** |
3102 * Constructor instantiated by the DOM when a custom element has been created. | 4002 * Constructor instantiated by the DOM when a custom element has been created. |
3103 * | 4003 * |
3104 * This can only be called by subclasses from their created constructor. | 4004 * This can only be called by subclasses from their created constructor. |
3105 */ | 4005 */ |
3106 LinearGradientElement.created() : super.created(); | 4006 LinearGradientElement.created() : super.created(); |
3107 | 4007 |
3108 @DomName('SVGLinearGradientElement.x1') | 4008 @DomName('SVGLinearGradientElement.x1') |
3109 @DocsEditable() | 4009 @DocsEditable() |
3110 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc
e.x1_Getter_(unwrap_jso(this))); | 4010 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc
e.x1_Getter_(unwrap_jso(this))); |
(...skipping 21 matching lines...) Expand all Loading... |
3132 @DocsEditable() | 4032 @DocsEditable() |
3133 @DomName('SVGMarkerElement') | 4033 @DomName('SVGMarkerElement') |
3134 @Unstable() | 4034 @Unstable() |
3135 class MarkerElement extends SvgElement implements FitToViewBox { | 4035 class MarkerElement extends SvgElement implements FitToViewBox { |
3136 // To suppress missing implicit constructor warnings. | 4036 // To suppress missing implicit constructor warnings. |
3137 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } | 4037 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } |
3138 | 4038 |
3139 @DomName('SVGMarkerElement.SVGMarkerElement') | 4039 @DomName('SVGMarkerElement.SVGMarkerElement') |
3140 @DocsEditable() | 4040 @DocsEditable() |
3141 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma
rker"); | 4041 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma
rker"); |
| 4042 |
| 4043 |
| 4044 static MarkerElement internalCreateMarkerElement() { |
| 4045 return new MarkerElement._internalWrap(); |
| 4046 } |
| 4047 |
| 4048 factory MarkerElement._internalWrap() { |
| 4049 return new MarkerElement.internal_(); |
| 4050 } |
| 4051 |
| 4052 MarkerElement.internal_() : super.internal_(); |
| 4053 |
3142 /** | 4054 /** |
3143 * Constructor instantiated by the DOM when a custom element has been created. | 4055 * Constructor instantiated by the DOM when a custom element has been created. |
3144 * | 4056 * |
3145 * This can only be called by subclasses from their created constructor. | 4057 * This can only be called by subclasses from their created constructor. |
3146 */ | 4058 */ |
3147 MarkerElement.created() : super.created(); | 4059 MarkerElement.created() : super.created(); |
3148 | 4060 |
3149 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') | 4061 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') |
3150 @DocsEditable() | 4062 @DocsEditable() |
3151 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; | 4063 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3225 @DocsEditable() | 4137 @DocsEditable() |
3226 @DomName('SVGMaskElement') | 4138 @DomName('SVGMaskElement') |
3227 @Unstable() | 4139 @Unstable() |
3228 class MaskElement extends SvgElement implements Tests { | 4140 class MaskElement extends SvgElement implements Tests { |
3229 // To suppress missing implicit constructor warnings. | 4141 // To suppress missing implicit constructor warnings. |
3230 factory MaskElement._() { throw new UnsupportedError("Not supported"); } | 4142 factory MaskElement._() { throw new UnsupportedError("Not supported"); } |
3231 | 4143 |
3232 @DomName('SVGMaskElement.SVGMaskElement') | 4144 @DomName('SVGMaskElement.SVGMaskElement') |
3233 @DocsEditable() | 4145 @DocsEditable() |
3234 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask
"); | 4146 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask
"); |
| 4147 |
| 4148 |
| 4149 static MaskElement internalCreateMaskElement() { |
| 4150 return new MaskElement._internalWrap(); |
| 4151 } |
| 4152 |
| 4153 factory MaskElement._internalWrap() { |
| 4154 return new MaskElement.internal_(); |
| 4155 } |
| 4156 |
| 4157 MaskElement.internal_() : super.internal_(); |
| 4158 |
3235 /** | 4159 /** |
3236 * Constructor instantiated by the DOM when a custom element has been created. | 4160 * Constructor instantiated by the DOM when a custom element has been created. |
3237 * | 4161 * |
3238 * This can only be called by subclasses from their created constructor. | 4162 * This can only be called by subclasses from their created constructor. |
3239 */ | 4163 */ |
3240 MaskElement.created() : super.created(); | 4164 MaskElement.created() : super.created(); |
3241 | 4165 |
3242 @DomName('SVGMaskElement.height') | 4166 @DomName('SVGMaskElement.height') |
3243 @DocsEditable() | 4167 @DocsEditable() |
3244 AnimatedLength get height => wrap_jso(_blink.BlinkSVGMaskElement.instance.heig
ht_Getter_(unwrap_jso(this))); | 4168 AnimatedLength get height => wrap_jso(_blink.BlinkSVGMaskElement.instance.heig
ht_Getter_(unwrap_jso(this))); |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3287 // WARNING: Do not edit - generated code. | 4211 // WARNING: Do not edit - generated code. |
3288 | 4212 |
3289 | 4213 |
3290 @DocsEditable() | 4214 @DocsEditable() |
3291 @DomName('SVGMatrix') | 4215 @DomName('SVGMatrix') |
3292 @Unstable() | 4216 @Unstable() |
3293 class Matrix extends NativeFieldWrapperClass2 { | 4217 class Matrix extends NativeFieldWrapperClass2 { |
3294 // To suppress missing implicit constructor warnings. | 4218 // To suppress missing implicit constructor warnings. |
3295 factory Matrix._() { throw new UnsupportedError("Not supported"); } | 4219 factory Matrix._() { throw new UnsupportedError("Not supported"); } |
3296 | 4220 |
| 4221 static Matrix internalCreateMatrix() { |
| 4222 return new Matrix._internalWrap(); |
| 4223 } |
| 4224 |
| 4225 js.JsObject blink_jsObject; |
| 4226 |
| 4227 factory Matrix._internalWrap() { |
| 4228 return new Matrix.internal_(); |
| 4229 } |
| 4230 |
| 4231 Matrix.internal_() { } |
| 4232 |
| 4233 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 4234 int get hashCode => unwrap_jso(this).hashCode; |
| 4235 |
3297 @DomName('SVGMatrix.a') | 4236 @DomName('SVGMatrix.a') |
3298 @DocsEditable() | 4237 @DocsEditable() |
3299 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(unwrap_jso(this)); | 4238 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(unwrap_jso(this)); |
3300 | 4239 |
3301 @DomName('SVGMatrix.a') | 4240 @DomName('SVGMatrix.a') |
3302 @DocsEditable() | 4241 @DocsEditable() |
3303 void set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(unwrap_jso(t
his), value); | 4242 set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(unwrap_jso(this),
value); |
3304 | 4243 |
3305 @DomName('SVGMatrix.b') | 4244 @DomName('SVGMatrix.b') |
3306 @DocsEditable() | 4245 @DocsEditable() |
3307 num get b => _blink.BlinkSVGMatrix.instance.b_Getter_(unwrap_jso(this)); | 4246 num get b => _blink.BlinkSVGMatrix.instance.b_Getter_(unwrap_jso(this)); |
3308 | 4247 |
3309 @DomName('SVGMatrix.b') | 4248 @DomName('SVGMatrix.b') |
3310 @DocsEditable() | 4249 @DocsEditable() |
3311 void set b(num value) => _blink.BlinkSVGMatrix.instance.b_Setter_(unwrap_jso(t
his), value); | 4250 set b(num value) => _blink.BlinkSVGMatrix.instance.b_Setter_(unwrap_jso(this),
value); |
3312 | 4251 |
3313 @DomName('SVGMatrix.c') | 4252 @DomName('SVGMatrix.c') |
3314 @DocsEditable() | 4253 @DocsEditable() |
3315 num get c => _blink.BlinkSVGMatrix.instance.c_Getter_(unwrap_jso(this)); | 4254 num get c => _blink.BlinkSVGMatrix.instance.c_Getter_(unwrap_jso(this)); |
3316 | 4255 |
3317 @DomName('SVGMatrix.c') | 4256 @DomName('SVGMatrix.c') |
3318 @DocsEditable() | 4257 @DocsEditable() |
3319 void set c(num value) => _blink.BlinkSVGMatrix.instance.c_Setter_(unwrap_jso(t
his), value); | 4258 set c(num value) => _blink.BlinkSVGMatrix.instance.c_Setter_(unwrap_jso(this),
value); |
3320 | 4259 |
3321 @DomName('SVGMatrix.d') | 4260 @DomName('SVGMatrix.d') |
3322 @DocsEditable() | 4261 @DocsEditable() |
3323 num get d => _blink.BlinkSVGMatrix.instance.d_Getter_(unwrap_jso(this)); | 4262 num get d => _blink.BlinkSVGMatrix.instance.d_Getter_(unwrap_jso(this)); |
3324 | 4263 |
3325 @DomName('SVGMatrix.d') | 4264 @DomName('SVGMatrix.d') |
3326 @DocsEditable() | 4265 @DocsEditable() |
3327 void set d(num value) => _blink.BlinkSVGMatrix.instance.d_Setter_(unwrap_jso(t
his), value); | 4266 set d(num value) => _blink.BlinkSVGMatrix.instance.d_Setter_(unwrap_jso(this),
value); |
3328 | 4267 |
3329 @DomName('SVGMatrix.e') | 4268 @DomName('SVGMatrix.e') |
3330 @DocsEditable() | 4269 @DocsEditable() |
3331 num get e => _blink.BlinkSVGMatrix.instance.e_Getter_(unwrap_jso(this)); | 4270 num get e => _blink.BlinkSVGMatrix.instance.e_Getter_(unwrap_jso(this)); |
3332 | 4271 |
3333 @DomName('SVGMatrix.e') | 4272 @DomName('SVGMatrix.e') |
3334 @DocsEditable() | 4273 @DocsEditable() |
3335 void set e(num value) => _blink.BlinkSVGMatrix.instance.e_Setter_(unwrap_jso(t
his), value); | 4274 set e(num value) => _blink.BlinkSVGMatrix.instance.e_Setter_(unwrap_jso(this),
value); |
3336 | 4275 |
3337 @DomName('SVGMatrix.f') | 4276 @DomName('SVGMatrix.f') |
3338 @DocsEditable() | 4277 @DocsEditable() |
3339 num get f => _blink.BlinkSVGMatrix.instance.f_Getter_(unwrap_jso(this)); | 4278 num get f => _blink.BlinkSVGMatrix.instance.f_Getter_(unwrap_jso(this)); |
3340 | 4279 |
3341 @DomName('SVGMatrix.f') | 4280 @DomName('SVGMatrix.f') |
3342 @DocsEditable() | 4281 @DocsEditable() |
3343 void set f(num value) => _blink.BlinkSVGMatrix.instance.f_Setter_(unwrap_jso(t
his), value); | 4282 set f(num value) => _blink.BlinkSVGMatrix.instance.f_Setter_(unwrap_jso(this),
value); |
3344 | 4283 |
3345 @DomName('SVGMatrix.flipX') | 4284 @DomName('SVGMatrix.flipX') |
3346 @DocsEditable() | 4285 @DocsEditable() |
3347 Matrix flipX() => _blink.BlinkSVGMatrix.instance.flipX_Callback_0_(unwrap_jso(
this)); | 4286 Matrix flipX() => wrap_jso(_blink.BlinkSVGMatrix.instance.flipX_Callback_0_(un
wrap_jso(this))); |
3348 | 4287 |
3349 @DomName('SVGMatrix.flipY') | 4288 @DomName('SVGMatrix.flipY') |
3350 @DocsEditable() | 4289 @DocsEditable() |
3351 Matrix flipY() => _blink.BlinkSVGMatrix.instance.flipY_Callback_0_(unwrap_jso(
this)); | 4290 Matrix flipY() => wrap_jso(_blink.BlinkSVGMatrix.instance.flipY_Callback_0_(un
wrap_jso(this))); |
3352 | 4291 |
3353 @DomName('SVGMatrix.inverse') | 4292 @DomName('SVGMatrix.inverse') |
3354 @DocsEditable() | 4293 @DocsEditable() |
3355 Matrix inverse() => _blink.BlinkSVGMatrix.instance.inverse_Callback_0_(unwrap_
jso(this)); | 4294 Matrix inverse() => wrap_jso(_blink.BlinkSVGMatrix.instance.inverse_Callback_0
_(unwrap_jso(this))); |
3356 | 4295 |
3357 @DomName('SVGMatrix.multiply') | 4296 @DomName('SVGMatrix.multiply') |
3358 @DocsEditable() | 4297 @DocsEditable() |
3359 Matrix multiply(Matrix secondMatrix) => _blink.BlinkSVGMatrix.instance.multipl
y_Callback_1_(unwrap_jso(this), unwrap_jso(secondMatrix)); | 4298 Matrix multiply(Matrix secondMatrix) => wrap_jso(_blink.BlinkSVGMatrix.instanc
e.multiply_Callback_1_(unwrap_jso(this), unwrap_jso(secondMatrix))); |
3360 | 4299 |
3361 @DomName('SVGMatrix.rotate') | 4300 @DomName('SVGMatrix.rotate') |
3362 @DocsEditable() | 4301 @DocsEditable() |
3363 Matrix rotate(num angle) => _blink.BlinkSVGMatrix.instance.rotate_Callback_1_(
unwrap_jso(this), angle); | 4302 Matrix rotate(num angle) => wrap_jso(_blink.BlinkSVGMatrix.instance.rotate_Cal
lback_1_(unwrap_jso(this), angle)); |
3364 | 4303 |
3365 @DomName('SVGMatrix.rotateFromVector') | 4304 @DomName('SVGMatrix.rotateFromVector') |
3366 @DocsEditable() | 4305 @DocsEditable() |
3367 Matrix rotateFromVector(num x, num y) => _blink.BlinkSVGMatrix.instance.rotate
FromVector_Callback_2_(unwrap_jso(this), x, y); | 4306 Matrix rotateFromVector(num x, num y) => wrap_jso(_blink.BlinkSVGMatrix.instan
ce.rotateFromVector_Callback_2_(unwrap_jso(this), x, y)); |
3368 | 4307 |
3369 @DomName('SVGMatrix.scale') | 4308 @DomName('SVGMatrix.scale') |
3370 @DocsEditable() | 4309 @DocsEditable() |
3371 Matrix scale(num scaleFactor) => _blink.BlinkSVGMatrix.instance.scale_Callback
_1_(unwrap_jso(this), scaleFactor); | 4310 Matrix scale(num scaleFactor) => wrap_jso(_blink.BlinkSVGMatrix.instance.scale
_Callback_1_(unwrap_jso(this), scaleFactor)); |
3372 | 4311 |
3373 @DomName('SVGMatrix.scaleNonUniform') | 4312 @DomName('SVGMatrix.scaleNonUniform') |
3374 @DocsEditable() | 4313 @DocsEditable() |
3375 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.BlinkSVGM
atrix.instance.scaleNonUniform_Callback_2_(unwrap_jso(this), scaleFactorX, scale
FactorY); | 4314 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => wrap_jso(_blink.
BlinkSVGMatrix.instance.scaleNonUniform_Callback_2_(unwrap_jso(this), scaleFacto
rX, scaleFactorY)); |
3376 | 4315 |
3377 @DomName('SVGMatrix.skewX') | 4316 @DomName('SVGMatrix.skewX') |
3378 @DocsEditable() | 4317 @DocsEditable() |
3379 Matrix skewX(num angle) => _blink.BlinkSVGMatrix.instance.skewX_Callback_1_(un
wrap_jso(this), angle); | 4318 Matrix skewX(num angle) => wrap_jso(_blink.BlinkSVGMatrix.instance.skewX_Callb
ack_1_(unwrap_jso(this), angle)); |
3380 | 4319 |
3381 @DomName('SVGMatrix.skewY') | 4320 @DomName('SVGMatrix.skewY') |
3382 @DocsEditable() | 4321 @DocsEditable() |
3383 Matrix skewY(num angle) => _blink.BlinkSVGMatrix.instance.skewY_Callback_1_(un
wrap_jso(this), angle); | 4322 Matrix skewY(num angle) => wrap_jso(_blink.BlinkSVGMatrix.instance.skewY_Callb
ack_1_(unwrap_jso(this), angle)); |
3384 | 4323 |
3385 @DomName('SVGMatrix.translate') | 4324 @DomName('SVGMatrix.translate') |
3386 @DocsEditable() | 4325 @DocsEditable() |
3387 Matrix translate(num x, num y) => _blink.BlinkSVGMatrix.instance.translate_Cal
lback_2_(unwrap_jso(this), x, y); | 4326 Matrix translate(num x, num y) => wrap_jso(_blink.BlinkSVGMatrix.instance.tran
slate_Callback_2_(unwrap_jso(this), x, y)); |
3388 | 4327 |
3389 } | 4328 } |
3390 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4329 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3391 // for details. All rights reserved. Use of this source code is governed by a | 4330 // for details. All rights reserved. Use of this source code is governed by a |
3392 // BSD-style license that can be found in the LICENSE file. | 4331 // BSD-style license that can be found in the LICENSE file. |
3393 | 4332 |
3394 // WARNING: Do not edit - generated code. | 4333 // WARNING: Do not edit - generated code. |
3395 | 4334 |
3396 | 4335 |
3397 @DocsEditable() | 4336 @DocsEditable() |
3398 @DomName('SVGMetadataElement') | 4337 @DomName('SVGMetadataElement') |
3399 @Unstable() | 4338 @Unstable() |
3400 class MetadataElement extends SvgElement { | 4339 class MetadataElement extends SvgElement { |
3401 // To suppress missing implicit constructor warnings. | 4340 // To suppress missing implicit constructor warnings. |
3402 factory MetadataElement._() { throw new UnsupportedError("Not supported"); } | 4341 factory MetadataElement._() { throw new UnsupportedError("Not supported"); } |
| 4342 |
| 4343 |
| 4344 static MetadataElement internalCreateMetadataElement() { |
| 4345 return new MetadataElement._internalWrap(); |
| 4346 } |
| 4347 |
| 4348 factory MetadataElement._internalWrap() { |
| 4349 return new MetadataElement.internal_(); |
| 4350 } |
| 4351 |
| 4352 MetadataElement.internal_() : super.internal_(); |
| 4353 |
3403 /** | 4354 /** |
3404 * Constructor instantiated by the DOM when a custom element has been created. | 4355 * Constructor instantiated by the DOM when a custom element has been created. |
3405 * | 4356 * |
3406 * This can only be called by subclasses from their created constructor. | 4357 * This can only be called by subclasses from their created constructor. |
3407 */ | 4358 */ |
3408 MetadataElement.created() : super.created(); | 4359 MetadataElement.created() : super.created(); |
3409 | 4360 |
3410 } | 4361 } |
3411 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4362 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3412 // for details. All rights reserved. Use of this source code is governed by a | 4363 // for details. All rights reserved. Use of this source code is governed by a |
3413 // BSD-style license that can be found in the LICENSE file. | 4364 // BSD-style license that can be found in the LICENSE file. |
3414 | 4365 |
3415 // WARNING: Do not edit - generated code. | 4366 // WARNING: Do not edit - generated code. |
3416 | 4367 |
3417 | 4368 |
3418 @DocsEditable() | 4369 @DocsEditable() |
3419 @DomName('SVGNumber') | 4370 @DomName('SVGNumber') |
3420 @Unstable() | 4371 @Unstable() |
3421 class Number extends NativeFieldWrapperClass2 { | 4372 class Number extends NativeFieldWrapperClass2 { |
3422 // To suppress missing implicit constructor warnings. | 4373 // To suppress missing implicit constructor warnings. |
3423 factory Number._() { throw new UnsupportedError("Not supported"); } | 4374 factory Number._() { throw new UnsupportedError("Not supported"); } |
3424 | 4375 |
| 4376 static Number internalCreateNumber() { |
| 4377 return new Number._internalWrap(); |
| 4378 } |
| 4379 |
| 4380 js.JsObject blink_jsObject; |
| 4381 |
| 4382 factory Number._internalWrap() { |
| 4383 return new Number.internal_(); |
| 4384 } |
| 4385 |
| 4386 Number.internal_() { } |
| 4387 |
| 4388 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 4389 int get hashCode => unwrap_jso(this).hashCode; |
| 4390 |
3425 @DomName('SVGNumber.value') | 4391 @DomName('SVGNumber.value') |
3426 @DocsEditable() | 4392 @DocsEditable() |
3427 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this)
); | 4393 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this)
); |
3428 | 4394 |
3429 @DomName('SVGNumber.value') | 4395 @DomName('SVGNumber.value') |
3430 @DocsEditable() | 4396 @DocsEditable() |
3431 void set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(unwr
ap_jso(this), value); | 4397 set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(unwrap_js
o(this), value); |
3432 | 4398 |
3433 } | 4399 } |
3434 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4400 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3435 // for details. All rights reserved. Use of this source code is governed by a | 4401 // for details. All rights reserved. Use of this source code is governed by a |
3436 // BSD-style license that can be found in the LICENSE file. | 4402 // BSD-style license that can be found in the LICENSE file. |
3437 | 4403 |
3438 // WARNING: Do not edit - generated code. | 4404 // WARNING: Do not edit - generated code. |
3439 | 4405 |
3440 | 4406 |
3441 @DocsEditable() | 4407 @DocsEditable() |
3442 @DomName('SVGNumberList') | 4408 @DomName('SVGNumberList') |
3443 @Unstable() | 4409 @Unstable() |
3444 class NumberList extends NativeFieldWrapperClass2 with ListMixin<Number>, Immuta
bleListMixin<Number> implements List<Number> { | 4410 class NumberList extends JsoNativeFieldWrapper with ListMixin<Number>, Immutable
ListMixin<Number> implements List<Number> { |
3445 // To suppress missing implicit constructor warnings. | 4411 // To suppress missing implicit constructor warnings. |
3446 factory NumberList._() { throw new UnsupportedError("Not supported"); } | 4412 factory NumberList._() { throw new UnsupportedError("Not supported"); } |
3447 | 4413 |
| 4414 static NumberList internalCreateNumberList() { |
| 4415 return new NumberList._internalWrap(); |
| 4416 } |
| 4417 |
| 4418 js.JsObject blink_jsObject; |
| 4419 |
| 4420 factory NumberList._internalWrap() { |
| 4421 return new NumberList.internal_(); |
| 4422 } |
| 4423 |
| 4424 NumberList.internal_() { } |
| 4425 |
| 4426 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 4427 int get hashCode => unwrap_jso(this).hashCode; |
| 4428 |
3448 @DomName('SVGNumberList.length') | 4429 @DomName('SVGNumberList.length') |
3449 @DocsEditable() | 4430 @DocsEditable() |
3450 @Experimental() // untriaged | 4431 @Experimental() // untriaged |
3451 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(unwrap_jso
(this)); | 4432 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(unwrap_jso
(this)); |
3452 | 4433 |
3453 @DomName('SVGNumberList.numberOfItems') | 4434 @DomName('SVGNumberList.numberOfItems') |
3454 @DocsEditable() | 4435 @DocsEditable() |
3455 int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); | 4436 int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); |
3456 | 4437 |
3457 Number operator[](int index) { | 4438 Number operator[](int index) { |
3458 if (index < 0 || index >= length) | 4439 if (index < 0 || index >= length) |
3459 throw new RangeError.index(index, this); | 4440 throw new RangeError.index(index, this); |
3460 return getItem(index); | 4441 return getItem(index); |
3461 } | 4442 } |
3462 | 4443 |
3463 void operator[]=(int index, Number value) { | 4444 void operator[]=(int index, Number value) { |
3464 throw new UnsupportedError("Cannot assign element of immutable List."); | 4445 throw new UnsupportedError("Cannot assign element of immutable List."); |
3465 } | 4446 } |
3466 // -- start List<Number> mixins. | 4447 // -- start List<Number> mixins. |
3467 // Number is the element type. | 4448 // Number is the element type. |
3468 | 4449 |
3469 | 4450 |
3470 void set length(int value) { | 4451 set length(int value) { |
3471 throw new UnsupportedError("Cannot resize immutable List."); | 4452 throw new UnsupportedError("Cannot resize immutable List."); |
3472 } | 4453 } |
3473 | 4454 |
3474 Number get first { | 4455 Number get first { |
3475 if (this.length > 0) { | 4456 if (this.length > 0) { |
3476 return getItem(0); | 4457 return getItem(0); |
3477 } | 4458 } |
3478 throw new StateError("No elements"); | 4459 throw new StateError("No elements"); |
3479 } | 4460 } |
3480 | 4461 |
(...skipping 17 matching lines...) Expand all Loading... |
3498 Number elementAt(int index) => this[index]; | 4479 Number elementAt(int index) => this[index]; |
3499 // -- end List<Number> mixins. | 4480 // -- end List<Number> mixins. |
3500 | 4481 |
3501 @DomName('SVGNumberList.__setter__') | 4482 @DomName('SVGNumberList.__setter__') |
3502 @DocsEditable() | 4483 @DocsEditable() |
3503 @Experimental() // untriaged | 4484 @Experimental() // untriaged |
3504 void __setter__(int index, Number value) => _blink.BlinkSVGNumberList.instance
.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); | 4485 void __setter__(int index, Number value) => _blink.BlinkSVGNumberList.instance
.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
3505 | 4486 |
3506 @DomName('SVGNumberList.appendItem') | 4487 @DomName('SVGNumberList.appendItem') |
3507 @DocsEditable() | 4488 @DocsEditable() |
3508 Number appendItem(Number item) => _blink.BlinkSVGNumberList.instance.appendIte
m_Callback_1_(unwrap_jso(this), unwrap_jso(item)); | 4489 Number appendItem(Number item) => wrap_jso(_blink.BlinkSVGNumberList.instance.
appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(item))); |
3509 | 4490 |
3510 @DomName('SVGNumberList.clear') | 4491 @DomName('SVGNumberList.clear') |
3511 @DocsEditable() | 4492 @DocsEditable() |
3512 void clear() => _blink.BlinkSVGNumberList.instance.clear_Callback_0_(unwrap_js
o(this)); | 4493 void clear() => _blink.BlinkSVGNumberList.instance.clear_Callback_0_(unwrap_js
o(this)); |
3513 | 4494 |
3514 @DomName('SVGNumberList.getItem') | 4495 @DomName('SVGNumberList.getItem') |
3515 @DocsEditable() | 4496 @DocsEditable() |
3516 Number getItem(int index) => _blink.BlinkSVGNumberList.instance.getItem_Callba
ck_1_(unwrap_jso(this), index); | 4497 Number getItem(int index) => wrap_jso(_blink.BlinkSVGNumberList.instance.getIt
em_Callback_1_(unwrap_jso(this), index)); |
3517 | 4498 |
3518 @DomName('SVGNumberList.initialize') | 4499 @DomName('SVGNumberList.initialize') |
3519 @DocsEditable() | 4500 @DocsEditable() |
3520 Number initialize(Number item) => _blink.BlinkSVGNumberList.instance.initializ
e_Callback_1_(unwrap_jso(this), unwrap_jso(item)); | 4501 Number initialize(Number item) => wrap_jso(_blink.BlinkSVGNumberList.instance.
initialize_Callback_1_(unwrap_jso(this), unwrap_jso(item))); |
3521 | 4502 |
3522 @DomName('SVGNumberList.insertItemBefore') | 4503 @DomName('SVGNumberList.insertItemBefore') |
3523 @DocsEditable() | 4504 @DocsEditable() |
3524 Number insertItemBefore(Number item, int index) => _blink.BlinkSVGNumberList.i
nstance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); | 4505 Number insertItemBefore(Number item, int index) => wrap_jso(_blink.BlinkSVGNum
berList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item)
, index)); |
3525 | 4506 |
3526 @DomName('SVGNumberList.removeItem') | 4507 @DomName('SVGNumberList.removeItem') |
3527 @DocsEditable() | 4508 @DocsEditable() |
3528 Number removeItem(int index) => _blink.BlinkSVGNumberList.instance.removeItem_
Callback_1_(unwrap_jso(this), index); | 4509 Number removeItem(int index) => wrap_jso(_blink.BlinkSVGNumberList.instance.re
moveItem_Callback_1_(unwrap_jso(this), index)); |
3529 | 4510 |
3530 @DomName('SVGNumberList.replaceItem') | 4511 @DomName('SVGNumberList.replaceItem') |
3531 @DocsEditable() | 4512 @DocsEditable() |
3532 Number replaceItem(Number item, int index) => _blink.BlinkSVGNumberList.instan
ce.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); | 4513 Number replaceItem(Number item, int index) => wrap_jso(_blink.BlinkSVGNumberLi
st.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index)); |
3533 | 4514 |
3534 } | 4515 } |
3535 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4516 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3536 // for details. All rights reserved. Use of this source code is governed by a | 4517 // for details. All rights reserved. Use of this source code is governed by a |
3537 // BSD-style license that can be found in the LICENSE file. | 4518 // BSD-style license that can be found in the LICENSE file. |
3538 | 4519 |
3539 // WARNING: Do not edit - generated code. | 4520 // WARNING: Do not edit - generated code. |
3540 | 4521 |
3541 | 4522 |
3542 @DocsEditable() | 4523 @DocsEditable() |
3543 @DomName('SVGPathElement') | 4524 @DomName('SVGPathElement') |
3544 @Unstable() | 4525 @Unstable() |
3545 class PathElement extends GeometryElement { | 4526 class PathElement extends GeometryElement { |
3546 // To suppress missing implicit constructor warnings. | 4527 // To suppress missing implicit constructor warnings. |
3547 factory PathElement._() { throw new UnsupportedError("Not supported"); } | 4528 factory PathElement._() { throw new UnsupportedError("Not supported"); } |
3548 | 4529 |
3549 @DomName('SVGPathElement.SVGPathElement') | 4530 @DomName('SVGPathElement.SVGPathElement') |
3550 @DocsEditable() | 4531 @DocsEditable() |
3551 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path
"); | 4532 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path
"); |
| 4533 |
| 4534 |
| 4535 static PathElement internalCreatePathElement() { |
| 4536 return new PathElement._internalWrap(); |
| 4537 } |
| 4538 |
| 4539 factory PathElement._internalWrap() { |
| 4540 return new PathElement.internal_(); |
| 4541 } |
| 4542 |
| 4543 PathElement.internal_() : super.internal_(); |
| 4544 |
3552 /** | 4545 /** |
3553 * Constructor instantiated by the DOM when a custom element has been created. | 4546 * Constructor instantiated by the DOM when a custom element has been created. |
3554 * | 4547 * |
3555 * This can only be called by subclasses from their created constructor. | 4548 * This can only be called by subclasses from their created constructor. |
3556 */ | 4549 */ |
3557 PathElement.created() : super.created(); | 4550 PathElement.created() : super.created(); |
3558 | 4551 |
3559 @DomName('SVGPathElement.animatedNormalizedPathSegList') | 4552 @DomName('SVGPathElement.animatedNormalizedPathSegList') |
3560 @DocsEditable() | 4553 @DocsEditable() |
3561 PathSegList get animatedNormalizedPathSegList => wrap_jso(_blink.BlinkSVGPathE
lement.instance.animatedNormalizedPathSegList_Getter_(unwrap_jso(this))); | 4554 PathSegList get animatedNormalizedPathSegList => wrap_jso(_blink.BlinkSVGPathE
lement.instance.animatedNormalizedPathSegList_Getter_(unwrap_jso(this))); |
3562 | 4555 |
3563 @DomName('SVGPathElement.animatedPathSegList') | 4556 @DomName('SVGPathElement.animatedPathSegList') |
3564 @DocsEditable() | 4557 @DocsEditable() |
3565 PathSegList get animatedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.ins
tance.animatedPathSegList_Getter_(unwrap_jso(this))); | 4558 PathSegList get animatedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.ins
tance.animatedPathSegList_Getter_(unwrap_jso(this))); |
3566 | 4559 |
3567 @DomName('SVGPathElement.normalizedPathSegList') | 4560 @DomName('SVGPathElement.normalizedPathSegList') |
3568 @DocsEditable() | 4561 @DocsEditable() |
3569 PathSegList get normalizedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.i
nstance.normalizedPathSegList_Getter_(unwrap_jso(this))); | 4562 PathSegList get normalizedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.i
nstance.normalizedPathSegList_Getter_(unwrap_jso(this))); |
3570 | 4563 |
3571 @DomName('SVGPathElement.pathLength') | 4564 @DomName('SVGPathElement.pathLength') |
3572 @DocsEditable() | 4565 @DocsEditable() |
3573 AnimatedNumber get pathLength => wrap_jso(_blink.BlinkSVGPathElement.instance.
pathLength_Getter_(unwrap_jso(this))); | 4566 AnimatedNumber get pathLength => wrap_jso(_blink.BlinkSVGPathElement.instance.
pathLength_Getter_(unwrap_jso(this))); |
3574 | 4567 |
3575 @DomName('SVGPathElement.pathSegList') | 4568 @DomName('SVGPathElement.pathSegList') |
3576 @DocsEditable() | 4569 @DocsEditable() |
3577 PathSegList get pathSegList => wrap_jso(_blink.BlinkSVGPathElement.instance.pa
thSegList_Getter_(unwrap_jso(this))); | 4570 PathSegList get pathSegList => wrap_jso(_blink.BlinkSVGPathElement.instance.pa
thSegList_Getter_(unwrap_jso(this))); |
3578 | 4571 |
3579 @DomName('SVGPathElement.createSVGPathSegArcAbs') | 4572 @DomName('SVGPathElement.createSVGPathSegArcAbs') |
3580 @DocsEditable() | 4573 @DocsEditable() |
3581 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.instance.create
SVGPathSegArcAbs_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, largeArcFlag
, sweepFlag); | 4574 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => wrap_jso(_blink.BlinkSVGPathElement.instan
ce.createSVGPathSegArcAbs_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, lar
geArcFlag, sweepFlag)); |
3582 | 4575 |
3583 @DomName('SVGPathElement.createSVGPathSegArcRel') | 4576 @DomName('SVGPathElement.createSVGPathSegArcRel') |
3584 @DocsEditable() | 4577 @DocsEditable() |
3585 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.instance.create
SVGPathSegArcRel_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, largeArcFlag
, sweepFlag); | 4578 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => wrap_jso(_blink.BlinkSVGPathElement.instan
ce.createSVGPathSegArcRel_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, lar
geArcFlag, sweepFlag)); |
3586 | 4579 |
3587 @DomName('SVGPathElement.createSVGPathSegClosePath') | 4580 @DomName('SVGPathElement.createSVGPathSegClosePath') |
3588 @DocsEditable() | 4581 @DocsEditable() |
3589 PathSegClosePath createSvgPathSegClosePath() => _blink.BlinkSVGPathElement.ins
tance.createSVGPathSegClosePath_Callback_0_(unwrap_jso(this)); | 4582 PathSegClosePath createSvgPathSegClosePath() => wrap_jso(_blink.BlinkSVGPathEl
ement.instance.createSVGPathSegClosePath_Callback_0_(unwrap_jso(this))); |
3590 | 4583 |
3591 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs') | 4584 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs') |
3592 @DocsEditable() | 4585 @DocsEditable() |
3593 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n
um y1, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCu
rvetoCubicAbs_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2); | 4586 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n
um y1, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVG
PathSegCurvetoCubicAbs_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2)); |
3594 | 4587 |
3595 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel') | 4588 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel') |
3596 @DocsEditable() | 4589 @DocsEditable() |
3597 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n
um y1, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCu
rvetoCubicRel_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2); | 4590 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n
um y1, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVG
PathSegCurvetoCubicRel_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2)); |
3598 | 4591 |
3599 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs') | 4592 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs') |
3600 @DocsEditable() | 4593 @DocsEditable() |
3601 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num
y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvet
oCubicSmoothAbs_Callback_4_(unwrap_jso(this), x, y, x2, y2); | 4594 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num
y, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPath
SegCurvetoCubicSmoothAbs_Callback_4_(unwrap_jso(this), x, y, x2, y2)); |
3602 | 4595 |
3603 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel') | 4596 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel') |
3604 @DocsEditable() | 4597 @DocsEditable() |
3605 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num
y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvet
oCubicSmoothRel_Callback_4_(unwrap_jso(this), x, y, x2, y2); | 4598 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num
y, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPath
SegCurvetoCubicSmoothRel_Callback_4_(unwrap_jso(this), x, y, x2, y2)); |
3606 | 4599 |
3607 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs') | 4600 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs') |
3608 @DocsEditable() | 4601 @DocsEditable() |
3609 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n
um x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQua
draticAbs_Callback_4_(unwrap_jso(this), x, y, x1, y1); | 4602 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n
um x1, num y1) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegC
urvetoQuadraticAbs_Callback_4_(unwrap_jso(this), x, y, x1, y1)); |
3610 | 4603 |
3611 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel') | 4604 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel') |
3612 @DocsEditable() | 4605 @DocsEditable() |
3613 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n
um x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQua
draticRel_Callback_4_(unwrap_jso(this), x, y, x1, y1); | 4606 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n
um x1, num y1) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegC
urvetoQuadraticRel_Callback_4_(unwrap_jso(this), x, y, x1, y1)); |
3614 | 4607 |
3615 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs') | 4608 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs') |
3616 @DocsEditable() | 4609 @DocsEditable() |
3617 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num
x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadrat
icSmoothAbs_Callback_2_(unwrap_jso(this), x, y); | 4610 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num
x, num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurve
toQuadraticSmoothAbs_Callback_2_(unwrap_jso(this), x, y)); |
3618 | 4611 |
3619 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel') | 4612 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel') |
3620 @DocsEditable() | 4613 @DocsEditable() |
3621 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num
x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadrat
icSmoothRel_Callback_2_(unwrap_jso(this), x, y); | 4614 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num
x, num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurve
toQuadraticSmoothRel_Callback_2_(unwrap_jso(this), x, y)); |
3622 | 4615 |
3623 @DomName('SVGPathElement.createSVGPathSegLinetoAbs') | 4616 @DomName('SVGPathElement.createSVGPathSegLinetoAbs') |
3624 @DocsEditable() | 4617 @DocsEditable() |
3625 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegLinetoAbs_Callback_2_(unwrap_jso(this), x, y); | 4618 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => wrap_jso(_blink.Bl
inkSVGPathElement.instance.createSVGPathSegLinetoAbs_Callback_2_(unwrap_jso(this
), x, y)); |
3626 | 4619 |
3627 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs') | 4620 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs') |
3628 @DocsEditable() | 4621 @DocsEditable() |
3629 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blin
k.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalAbs_Callback_1_(u
nwrap_jso(this), x); | 4622 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => wrap_
jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalAbs_Call
back_1_(unwrap_jso(this), x)); |
3630 | 4623 |
3631 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel') | 4624 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel') |
3632 @DocsEditable() | 4625 @DocsEditable() |
3633 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blin
k.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalRel_Callback_1_(u
nwrap_jso(this), x); | 4626 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => wrap_
jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalRel_Call
back_1_(unwrap_jso(this), x)); |
3634 | 4627 |
3635 @DomName('SVGPathElement.createSVGPathSegLinetoRel') | 4628 @DomName('SVGPathElement.createSVGPathSegLinetoRel') |
3636 @DocsEditable() | 4629 @DocsEditable() |
3637 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegLinetoRel_Callback_2_(unwrap_jso(this), x, y); | 4630 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => wrap_jso(_blink.Bl
inkSVGPathElement.instance.createSVGPathSegLinetoRel_Callback_2_(unwrap_jso(this
), x, y)); |
3638 | 4631 |
3639 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs') | 4632 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs') |
3640 @DocsEditable() | 4633 @DocsEditable() |
3641 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.Bl
inkSVGPathElement.instance.createSVGPathSegLinetoVerticalAbs_Callback_1_(unwrap_
jso(this), y); | 4634 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => wrap_jso(
_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoVerticalAbs_Callback_1
_(unwrap_jso(this), y)); |
3642 | 4635 |
3643 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel') | 4636 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel') |
3644 @DocsEditable() | 4637 @DocsEditable() |
3645 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.Bl
inkSVGPathElement.instance.createSVGPathSegLinetoVerticalRel_Callback_1_(unwrap_
jso(this), y); | 4638 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => wrap_jso(
_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoVerticalRel_Callback_1
_(unwrap_jso(this), y)); |
3646 | 4639 |
3647 @DomName('SVGPathElement.createSVGPathSegMovetoAbs') | 4640 @DomName('SVGPathElement.createSVGPathSegMovetoAbs') |
3648 @DocsEditable() | 4641 @DocsEditable() |
3649 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegMovetoAbs_Callback_2_(unwrap_jso(this), x, y); | 4642 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => wrap_jso(_blink.Bl
inkSVGPathElement.instance.createSVGPathSegMovetoAbs_Callback_2_(unwrap_jso(this
), x, y)); |
3650 | 4643 |
3651 @DomName('SVGPathElement.createSVGPathSegMovetoRel') | 4644 @DomName('SVGPathElement.createSVGPathSegMovetoRel') |
3652 @DocsEditable() | 4645 @DocsEditable() |
3653 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegMovetoRel_Callback_2_(unwrap_jso(this), x, y); | 4646 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => wrap_jso(_blink.Bl
inkSVGPathElement.instance.createSVGPathSegMovetoRel_Callback_2_(unwrap_jso(this
), x, y)); |
3654 | 4647 |
3655 @DomName('SVGPathElement.getPathSegAtLength') | 4648 @DomName('SVGPathElement.getPathSegAtLength') |
3656 @DocsEditable() | 4649 @DocsEditable() |
3657 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge
tPathSegAtLength_Callback_1_(unwrap_jso(this), distance); | 4650 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge
tPathSegAtLength_Callback_1_(unwrap_jso(this), distance); |
3658 | 4651 |
3659 @DomName('SVGPathElement.getPointAtLength') | 4652 @DomName('SVGPathElement.getPointAtLength') |
3660 @DocsEditable() | 4653 @DocsEditable() |
3661 Point getPointAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge
tPointAtLength_Callback_1_(unwrap_jso(this), distance); | 4654 Point getPointAtLength(num distance) => wrap_jso(_blink.BlinkSVGPathElement.in
stance.getPointAtLength_Callback_1_(unwrap_jso(this), distance)); |
3662 | 4655 |
3663 @DomName('SVGPathElement.getTotalLength') | 4656 @DomName('SVGPathElement.getTotalLength') |
3664 @DocsEditable() | 4657 @DocsEditable() |
3665 double getTotalLength() => _blink.BlinkSVGPathElement.instance.getTotalLength_
Callback_0_(unwrap_jso(this)); | 4658 num getTotalLength() => _blink.BlinkSVGPathElement.instance.getTotalLength_Cal
lback_0_(unwrap_jso(this)); |
3666 | 4659 |
3667 } | 4660 } |
3668 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4661 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3669 // for details. All rights reserved. Use of this source code is governed by a | 4662 // for details. All rights reserved. Use of this source code is governed by a |
3670 // BSD-style license that can be found in the LICENSE file. | 4663 // BSD-style license that can be found in the LICENSE file. |
3671 | 4664 |
3672 // WARNING: Do not edit - generated code. | 4665 // WARNING: Do not edit - generated code. |
3673 | 4666 |
3674 | 4667 |
3675 @DocsEditable() | 4668 @DocsEditable() |
3676 @DomName('SVGPathSeg') | 4669 @DomName('SVGPathSeg') |
3677 @Unstable() | 4670 @Unstable() |
3678 class PathSeg extends NativeFieldWrapperClass2 { | 4671 class PathSeg extends NativeFieldWrapperClass2 { |
3679 // To suppress missing implicit constructor warnings. | 4672 // To suppress missing implicit constructor warnings. |
3680 factory PathSeg._() { throw new UnsupportedError("Not supported"); } | 4673 factory PathSeg._() { throw new UnsupportedError("Not supported"); } |
3681 | 4674 |
| 4675 static PathSeg internalCreatePathSeg() { |
| 4676 return new PathSeg._internalWrap(); |
| 4677 } |
| 4678 |
| 4679 js.JsObject blink_jsObject; |
| 4680 |
| 4681 factory PathSeg._internalWrap() { |
| 4682 return new PathSeg.internal_(); |
| 4683 } |
| 4684 |
| 4685 PathSeg.internal_() { } |
| 4686 |
| 4687 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 4688 int get hashCode => unwrap_jso(this).hashCode; |
| 4689 |
3682 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') | 4690 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') |
3683 @DocsEditable() | 4691 @DocsEditable() |
3684 static const int PATHSEG_ARC_ABS = 10; | 4692 static const int PATHSEG_ARC_ABS = 10; |
3685 | 4693 |
3686 @DomName('SVGPathSeg.PATHSEG_ARC_REL') | 4694 @DomName('SVGPathSeg.PATHSEG_ARC_REL') |
3687 @DocsEditable() | 4695 @DocsEditable() |
3688 static const int PATHSEG_ARC_REL = 11; | 4696 static const int PATHSEG_ARC_REL = 11; |
3689 | 4697 |
3690 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH') | 4698 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH') |
3691 @DocsEditable() | 4699 @DocsEditable() |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3775 // WARNING: Do not edit - generated code. | 4783 // WARNING: Do not edit - generated code. |
3776 | 4784 |
3777 | 4785 |
3778 @DocsEditable() | 4786 @DocsEditable() |
3779 @DomName('SVGPathSegArcAbs') | 4787 @DomName('SVGPathSegArcAbs') |
3780 @Unstable() | 4788 @Unstable() |
3781 class PathSegArcAbs extends PathSeg { | 4789 class PathSegArcAbs extends PathSeg { |
3782 // To suppress missing implicit constructor warnings. | 4790 // To suppress missing implicit constructor warnings. |
3783 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } | 4791 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } |
3784 | 4792 |
| 4793 |
| 4794 static PathSegArcAbs internalCreatePathSegArcAbs() { |
| 4795 return new PathSegArcAbs._internalWrap(); |
| 4796 } |
| 4797 |
| 4798 factory PathSegArcAbs._internalWrap() { |
| 4799 return new PathSegArcAbs.internal_(); |
| 4800 } |
| 4801 |
| 4802 PathSegArcAbs.internal_() : super.internal_(); |
| 4803 |
| 4804 |
3785 @DomName('SVGPathSegArcAbs.angle') | 4805 @DomName('SVGPathSegArcAbs.angle') |
3786 @DocsEditable() | 4806 @DocsEditable() |
3787 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(unwrap_js
o(this)); | 4807 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(unwrap_js
o(this)); |
3788 | 4808 |
3789 @DomName('SVGPathSegArcAbs.angle') | 4809 @DomName('SVGPathSegArcAbs.angle') |
3790 @DocsEditable() | 4810 @DocsEditable() |
3791 void set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Sette
r_(unwrap_jso(this), value); | 4811 set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Setter_(un
wrap_jso(this), value); |
3792 | 4812 |
3793 @DomName('SVGPathSegArcAbs.largeArcFlag') | 4813 @DomName('SVGPathSegArcAbs.largeArcFlag') |
3794 @DocsEditable() | 4814 @DocsEditable() |
3795 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.instance.largeArcFlag_Ge
tter_(unwrap_jso(this)); | 4815 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.instance.largeArcFlag_Ge
tter_(unwrap_jso(this)); |
3796 | 4816 |
3797 @DomName('SVGPathSegArcAbs.largeArcFlag') | 4817 @DomName('SVGPathSegArcAbs.largeArcFlag') |
3798 @DocsEditable() | 4818 @DocsEditable() |
3799 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.lar
geArcFlag_Setter_(unwrap_jso(this), value); | 4819 set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.largeArc
Flag_Setter_(unwrap_jso(this), value); |
3800 | 4820 |
3801 @DomName('SVGPathSegArcAbs.r1') | 4821 @DomName('SVGPathSegArcAbs.r1') |
3802 @DocsEditable() | 4822 @DocsEditable() |
3803 num get r1 => _blink.BlinkSVGPathSegArcAbs.instance.r1_Getter_(unwrap_jso(this
)); | 4823 num get r1 => _blink.BlinkSVGPathSegArcAbs.instance.r1_Getter_(unwrap_jso(this
)); |
3804 | 4824 |
3805 @DomName('SVGPathSegArcAbs.r1') | 4825 @DomName('SVGPathSegArcAbs.r1') |
3806 @DocsEditable() | 4826 @DocsEditable() |
3807 void set r1(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r1_Setter_(unw
rap_jso(this), value); | 4827 set r1(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r1_Setter_(unwrap_j
so(this), value); |
3808 | 4828 |
3809 @DomName('SVGPathSegArcAbs.r2') | 4829 @DomName('SVGPathSegArcAbs.r2') |
3810 @DocsEditable() | 4830 @DocsEditable() |
3811 num get r2 => _blink.BlinkSVGPathSegArcAbs.instance.r2_Getter_(unwrap_jso(this
)); | 4831 num get r2 => _blink.BlinkSVGPathSegArcAbs.instance.r2_Getter_(unwrap_jso(this
)); |
3812 | 4832 |
3813 @DomName('SVGPathSegArcAbs.r2') | 4833 @DomName('SVGPathSegArcAbs.r2') |
3814 @DocsEditable() | 4834 @DocsEditable() |
3815 void set r2(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r2_Setter_(unw
rap_jso(this), value); | 4835 set r2(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r2_Setter_(unwrap_j
so(this), value); |
3816 | 4836 |
3817 @DomName('SVGPathSegArcAbs.sweepFlag') | 4837 @DomName('SVGPathSegArcAbs.sweepFlag') |
3818 @DocsEditable() | 4838 @DocsEditable() |
3819 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_Getter_(
unwrap_jso(this)); | 4839 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_Getter_(
unwrap_jso(this)); |
3820 | 4840 |
3821 @DomName('SVGPathSegArcAbs.sweepFlag') | 4841 @DomName('SVGPathSegArcAbs.sweepFlag') |
3822 @DocsEditable() | 4842 @DocsEditable() |
3823 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.sweepF
lag_Setter_(unwrap_jso(this), value); | 4843 set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_S
etter_(unwrap_jso(this), value); |
3824 | 4844 |
3825 @DomName('SVGPathSegArcAbs.x') | 4845 @DomName('SVGPathSegArcAbs.x') |
3826 @DocsEditable() | 4846 @DocsEditable() |
3827 num get x => _blink.BlinkSVGPathSegArcAbs.instance.x_Getter_(unwrap_jso(this))
; | 4847 num get x => _blink.BlinkSVGPathSegArcAbs.instance.x_Getter_(unwrap_jso(this))
; |
3828 | 4848 |
3829 @DomName('SVGPathSegArcAbs.x') | 4849 @DomName('SVGPathSegArcAbs.x') |
3830 @DocsEditable() | 4850 @DocsEditable() |
3831 void set x(num value) => _blink.BlinkSVGPathSegArcAbs.instance.x_Setter_(unwra
p_jso(this), value); | 4851 set x(num value) => _blink.BlinkSVGPathSegArcAbs.instance.x_Setter_(unwrap_jso
(this), value); |
3832 | 4852 |
3833 @DomName('SVGPathSegArcAbs.y') | 4853 @DomName('SVGPathSegArcAbs.y') |
3834 @DocsEditable() | 4854 @DocsEditable() |
3835 num get y => _blink.BlinkSVGPathSegArcAbs.instance.y_Getter_(unwrap_jso(this))
; | 4855 num get y => _blink.BlinkSVGPathSegArcAbs.instance.y_Getter_(unwrap_jso(this))
; |
3836 | 4856 |
3837 @DomName('SVGPathSegArcAbs.y') | 4857 @DomName('SVGPathSegArcAbs.y') |
3838 @DocsEditable() | 4858 @DocsEditable() |
3839 void set y(num value) => _blink.BlinkSVGPathSegArcAbs.instance.y_Setter_(unwra
p_jso(this), value); | 4859 set y(num value) => _blink.BlinkSVGPathSegArcAbs.instance.y_Setter_(unwrap_jso
(this), value); |
3840 | 4860 |
3841 } | 4861 } |
3842 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4862 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3843 // for details. All rights reserved. Use of this source code is governed by a | 4863 // for details. All rights reserved. Use of this source code is governed by a |
3844 // BSD-style license that can be found in the LICENSE file. | 4864 // BSD-style license that can be found in the LICENSE file. |
3845 | 4865 |
3846 // WARNING: Do not edit - generated code. | 4866 // WARNING: Do not edit - generated code. |
3847 | 4867 |
3848 | 4868 |
3849 @DocsEditable() | 4869 @DocsEditable() |
3850 @DomName('SVGPathSegArcRel') | 4870 @DomName('SVGPathSegArcRel') |
3851 @Unstable() | 4871 @Unstable() |
3852 class PathSegArcRel extends PathSeg { | 4872 class PathSegArcRel extends PathSeg { |
3853 // To suppress missing implicit constructor warnings. | 4873 // To suppress missing implicit constructor warnings. |
3854 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } | 4874 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } |
3855 | 4875 |
| 4876 |
| 4877 static PathSegArcRel internalCreatePathSegArcRel() { |
| 4878 return new PathSegArcRel._internalWrap(); |
| 4879 } |
| 4880 |
| 4881 factory PathSegArcRel._internalWrap() { |
| 4882 return new PathSegArcRel.internal_(); |
| 4883 } |
| 4884 |
| 4885 PathSegArcRel.internal_() : super.internal_(); |
| 4886 |
| 4887 |
3856 @DomName('SVGPathSegArcRel.angle') | 4888 @DomName('SVGPathSegArcRel.angle') |
3857 @DocsEditable() | 4889 @DocsEditable() |
3858 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(unwrap_js
o(this)); | 4890 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(unwrap_js
o(this)); |
3859 | 4891 |
3860 @DomName('SVGPathSegArcRel.angle') | 4892 @DomName('SVGPathSegArcRel.angle') |
3861 @DocsEditable() | 4893 @DocsEditable() |
3862 void set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Sette
r_(unwrap_jso(this), value); | 4894 set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Setter_(un
wrap_jso(this), value); |
3863 | 4895 |
3864 @DomName('SVGPathSegArcRel.largeArcFlag') | 4896 @DomName('SVGPathSegArcRel.largeArcFlag') |
3865 @DocsEditable() | 4897 @DocsEditable() |
3866 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.instance.largeArcFlag_Ge
tter_(unwrap_jso(this)); | 4898 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.instance.largeArcFlag_Ge
tter_(unwrap_jso(this)); |
3867 | 4899 |
3868 @DomName('SVGPathSegArcRel.largeArcFlag') | 4900 @DomName('SVGPathSegArcRel.largeArcFlag') |
3869 @DocsEditable() | 4901 @DocsEditable() |
3870 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.lar
geArcFlag_Setter_(unwrap_jso(this), value); | 4902 set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.largeArc
Flag_Setter_(unwrap_jso(this), value); |
3871 | 4903 |
3872 @DomName('SVGPathSegArcRel.r1') | 4904 @DomName('SVGPathSegArcRel.r1') |
3873 @DocsEditable() | 4905 @DocsEditable() |
3874 num get r1 => _blink.BlinkSVGPathSegArcRel.instance.r1_Getter_(unwrap_jso(this
)); | 4906 num get r1 => _blink.BlinkSVGPathSegArcRel.instance.r1_Getter_(unwrap_jso(this
)); |
3875 | 4907 |
3876 @DomName('SVGPathSegArcRel.r1') | 4908 @DomName('SVGPathSegArcRel.r1') |
3877 @DocsEditable() | 4909 @DocsEditable() |
3878 void set r1(num value) => _blink.BlinkSVGPathSegArcRel.instance.r1_Setter_(unw
rap_jso(this), value); | 4910 set r1(num value) => _blink.BlinkSVGPathSegArcRel.instance.r1_Setter_(unwrap_j
so(this), value); |
3879 | 4911 |
3880 @DomName('SVGPathSegArcRel.r2') | 4912 @DomName('SVGPathSegArcRel.r2') |
3881 @DocsEditable() | 4913 @DocsEditable() |
3882 num get r2 => _blink.BlinkSVGPathSegArcRel.instance.r2_Getter_(unwrap_jso(this
)); | 4914 num get r2 => _blink.BlinkSVGPathSegArcRel.instance.r2_Getter_(unwrap_jso(this
)); |
3883 | 4915 |
3884 @DomName('SVGPathSegArcRel.r2') | 4916 @DomName('SVGPathSegArcRel.r2') |
3885 @DocsEditable() | 4917 @DocsEditable() |
3886 void set r2(num value) => _blink.BlinkSVGPathSegArcRel.instance.r2_Setter_(unw
rap_jso(this), value); | 4918 set r2(num value) => _blink.BlinkSVGPathSegArcRel.instance.r2_Setter_(unwrap_j
so(this), value); |
3887 | 4919 |
3888 @DomName('SVGPathSegArcRel.sweepFlag') | 4920 @DomName('SVGPathSegArcRel.sweepFlag') |
3889 @DocsEditable() | 4921 @DocsEditable() |
3890 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_Getter_(
unwrap_jso(this)); | 4922 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_Getter_(
unwrap_jso(this)); |
3891 | 4923 |
3892 @DomName('SVGPathSegArcRel.sweepFlag') | 4924 @DomName('SVGPathSegArcRel.sweepFlag') |
3893 @DocsEditable() | 4925 @DocsEditable() |
3894 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.sweepF
lag_Setter_(unwrap_jso(this), value); | 4926 set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_S
etter_(unwrap_jso(this), value); |
3895 | 4927 |
3896 @DomName('SVGPathSegArcRel.x') | 4928 @DomName('SVGPathSegArcRel.x') |
3897 @DocsEditable() | 4929 @DocsEditable() |
3898 num get x => _blink.BlinkSVGPathSegArcRel.instance.x_Getter_(unwrap_jso(this))
; | 4930 num get x => _blink.BlinkSVGPathSegArcRel.instance.x_Getter_(unwrap_jso(this))
; |
3899 | 4931 |
3900 @DomName('SVGPathSegArcRel.x') | 4932 @DomName('SVGPathSegArcRel.x') |
3901 @DocsEditable() | 4933 @DocsEditable() |
3902 void set x(num value) => _blink.BlinkSVGPathSegArcRel.instance.x_Setter_(unwra
p_jso(this), value); | 4934 set x(num value) => _blink.BlinkSVGPathSegArcRel.instance.x_Setter_(unwrap_jso
(this), value); |
3903 | 4935 |
3904 @DomName('SVGPathSegArcRel.y') | 4936 @DomName('SVGPathSegArcRel.y') |
3905 @DocsEditable() | 4937 @DocsEditable() |
3906 num get y => _blink.BlinkSVGPathSegArcRel.instance.y_Getter_(unwrap_jso(this))
; | 4938 num get y => _blink.BlinkSVGPathSegArcRel.instance.y_Getter_(unwrap_jso(this))
; |
3907 | 4939 |
3908 @DomName('SVGPathSegArcRel.y') | 4940 @DomName('SVGPathSegArcRel.y') |
3909 @DocsEditable() | 4941 @DocsEditable() |
3910 void set y(num value) => _blink.BlinkSVGPathSegArcRel.instance.y_Setter_(unwra
p_jso(this), value); | 4942 set y(num value) => _blink.BlinkSVGPathSegArcRel.instance.y_Setter_(unwrap_jso
(this), value); |
3911 | 4943 |
3912 } | 4944 } |
3913 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4945 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3914 // for details. All rights reserved. Use of this source code is governed by a | 4946 // for details. All rights reserved. Use of this source code is governed by a |
3915 // BSD-style license that can be found in the LICENSE file. | 4947 // BSD-style license that can be found in the LICENSE file. |
3916 | 4948 |
3917 // WARNING: Do not edit - generated code. | 4949 // WARNING: Do not edit - generated code. |
3918 | 4950 |
3919 | 4951 |
3920 @DocsEditable() | 4952 @DocsEditable() |
3921 @DomName('SVGPathSegClosePath') | 4953 @DomName('SVGPathSegClosePath') |
3922 @Unstable() | 4954 @Unstable() |
3923 class PathSegClosePath extends PathSeg { | 4955 class PathSegClosePath extends PathSeg { |
3924 // To suppress missing implicit constructor warnings. | 4956 // To suppress missing implicit constructor warnings. |
3925 factory PathSegClosePath._() { throw new UnsupportedError("Not supported"); } | 4957 factory PathSegClosePath._() { throw new UnsupportedError("Not supported"); } |
3926 | 4958 |
| 4959 |
| 4960 static PathSegClosePath internalCreatePathSegClosePath() { |
| 4961 return new PathSegClosePath._internalWrap(); |
| 4962 } |
| 4963 |
| 4964 factory PathSegClosePath._internalWrap() { |
| 4965 return new PathSegClosePath.internal_(); |
| 4966 } |
| 4967 |
| 4968 PathSegClosePath.internal_() : super.internal_(); |
| 4969 |
| 4970 |
3927 } | 4971 } |
3928 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4972 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3929 // for details. All rights reserved. Use of this source code is governed by a | 4973 // for details. All rights reserved. Use of this source code is governed by a |
3930 // BSD-style license that can be found in the LICENSE file. | 4974 // BSD-style license that can be found in the LICENSE file. |
3931 | 4975 |
3932 // WARNING: Do not edit - generated code. | 4976 // WARNING: Do not edit - generated code. |
3933 | 4977 |
3934 | 4978 |
3935 @DocsEditable() | 4979 @DocsEditable() |
3936 @DomName('SVGPathSegCurvetoCubicAbs') | 4980 @DomName('SVGPathSegCurvetoCubicAbs') |
3937 @Unstable() | 4981 @Unstable() |
3938 class PathSegCurvetoCubicAbs extends PathSeg { | 4982 class PathSegCurvetoCubicAbs extends PathSeg { |
3939 // To suppress missing implicit constructor warnings. | 4983 // To suppress missing implicit constructor warnings. |
3940 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } | 4984 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } |
3941 | 4985 |
| 4986 |
| 4987 static PathSegCurvetoCubicAbs internalCreatePathSegCurvetoCubicAbs() { |
| 4988 return new PathSegCurvetoCubicAbs._internalWrap(); |
| 4989 } |
| 4990 |
| 4991 factory PathSegCurvetoCubicAbs._internalWrap() { |
| 4992 return new PathSegCurvetoCubicAbs.internal_(); |
| 4993 } |
| 4994 |
| 4995 PathSegCurvetoCubicAbs.internal_() : super.internal_(); |
| 4996 |
| 4997 |
3942 @DomName('SVGPathSegCurvetoCubicAbs.x') | 4998 @DomName('SVGPathSegCurvetoCubicAbs.x') |
3943 @DocsEditable() | 4999 @DocsEditable() |
3944 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(unwrap_j
so(this)); | 5000 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(unwrap_j
so(this)); |
3945 | 5001 |
3946 @DomName('SVGPathSegCurvetoCubicAbs.x') | 5002 @DomName('SVGPathSegCurvetoCubicAbs.x') |
3947 @DocsEditable() | 5003 @DocsEditable() |
3948 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Sett
er_(unwrap_jso(this), value); | 5004 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Setter_(u
nwrap_jso(this), value); |
3949 | 5005 |
3950 @DomName('SVGPathSegCurvetoCubicAbs.x1') | 5006 @DomName('SVGPathSegCurvetoCubicAbs.x1') |
3951 @DocsEditable() | 5007 @DocsEditable() |
3952 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Getter_(unwrap
_jso(this)); | 5008 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Getter_(unwrap
_jso(this)); |
3953 | 5009 |
3954 @DomName('SVGPathSegCurvetoCubicAbs.x1') | 5010 @DomName('SVGPathSegCurvetoCubicAbs.x1') |
3955 @DocsEditable() | 5011 @DocsEditable() |
3956 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Se
tter_(unwrap_jso(this), value); | 5012 set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Setter_
(unwrap_jso(this), value); |
3957 | 5013 |
3958 @DomName('SVGPathSegCurvetoCubicAbs.x2') | 5014 @DomName('SVGPathSegCurvetoCubicAbs.x2') |
3959 @DocsEditable() | 5015 @DocsEditable() |
3960 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Getter_(unwrap
_jso(this)); | 5016 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Getter_(unwrap
_jso(this)); |
3961 | 5017 |
3962 @DomName('SVGPathSegCurvetoCubicAbs.x2') | 5018 @DomName('SVGPathSegCurvetoCubicAbs.x2') |
3963 @DocsEditable() | 5019 @DocsEditable() |
3964 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Se
tter_(unwrap_jso(this), value); | 5020 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Setter_
(unwrap_jso(this), value); |
3965 | 5021 |
3966 @DomName('SVGPathSegCurvetoCubicAbs.y') | 5022 @DomName('SVGPathSegCurvetoCubicAbs.y') |
3967 @DocsEditable() | 5023 @DocsEditable() |
3968 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Getter_(unwrap_j
so(this)); | 5024 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Getter_(unwrap_j
so(this)); |
3969 | 5025 |
3970 @DomName('SVGPathSegCurvetoCubicAbs.y') | 5026 @DomName('SVGPathSegCurvetoCubicAbs.y') |
3971 @DocsEditable() | 5027 @DocsEditable() |
3972 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Sett
er_(unwrap_jso(this), value); | 5028 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Setter_(u
nwrap_jso(this), value); |
3973 | 5029 |
3974 @DomName('SVGPathSegCurvetoCubicAbs.y1') | 5030 @DomName('SVGPathSegCurvetoCubicAbs.y1') |
3975 @DocsEditable() | 5031 @DocsEditable() |
3976 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Getter_(unwrap
_jso(this)); | 5032 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Getter_(unwrap
_jso(this)); |
3977 | 5033 |
3978 @DomName('SVGPathSegCurvetoCubicAbs.y1') | 5034 @DomName('SVGPathSegCurvetoCubicAbs.y1') |
3979 @DocsEditable() | 5035 @DocsEditable() |
3980 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Se
tter_(unwrap_jso(this), value); | 5036 set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Setter_
(unwrap_jso(this), value); |
3981 | 5037 |
3982 @DomName('SVGPathSegCurvetoCubicAbs.y2') | 5038 @DomName('SVGPathSegCurvetoCubicAbs.y2') |
3983 @DocsEditable() | 5039 @DocsEditable() |
3984 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Getter_(unwrap
_jso(this)); | 5040 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Getter_(unwrap
_jso(this)); |
3985 | 5041 |
3986 @DomName('SVGPathSegCurvetoCubicAbs.y2') | 5042 @DomName('SVGPathSegCurvetoCubicAbs.y2') |
3987 @DocsEditable() | 5043 @DocsEditable() |
3988 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Se
tter_(unwrap_jso(this), value); | 5044 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Setter_
(unwrap_jso(this), value); |
3989 | 5045 |
3990 } | 5046 } |
3991 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5047 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3992 // for details. All rights reserved. Use of this source code is governed by a | 5048 // for details. All rights reserved. Use of this source code is governed by a |
3993 // BSD-style license that can be found in the LICENSE file. | 5049 // BSD-style license that can be found in the LICENSE file. |
3994 | 5050 |
3995 // WARNING: Do not edit - generated code. | 5051 // WARNING: Do not edit - generated code. |
3996 | 5052 |
3997 | 5053 |
3998 @DocsEditable() | 5054 @DocsEditable() |
3999 @DomName('SVGPathSegCurvetoCubicRel') | 5055 @DomName('SVGPathSegCurvetoCubicRel') |
4000 @Unstable() | 5056 @Unstable() |
4001 class PathSegCurvetoCubicRel extends PathSeg { | 5057 class PathSegCurvetoCubicRel extends PathSeg { |
4002 // To suppress missing implicit constructor warnings. | 5058 // To suppress missing implicit constructor warnings. |
4003 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported
"); } | 5059 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported
"); } |
4004 | 5060 |
| 5061 |
| 5062 static PathSegCurvetoCubicRel internalCreatePathSegCurvetoCubicRel() { |
| 5063 return new PathSegCurvetoCubicRel._internalWrap(); |
| 5064 } |
| 5065 |
| 5066 factory PathSegCurvetoCubicRel._internalWrap() { |
| 5067 return new PathSegCurvetoCubicRel.internal_(); |
| 5068 } |
| 5069 |
| 5070 PathSegCurvetoCubicRel.internal_() : super.internal_(); |
| 5071 |
| 5072 |
4005 @DomName('SVGPathSegCurvetoCubicRel.x') | 5073 @DomName('SVGPathSegCurvetoCubicRel.x') |
4006 @DocsEditable() | 5074 @DocsEditable() |
4007 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(unwrap_j
so(this)); | 5075 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(unwrap_j
so(this)); |
4008 | 5076 |
4009 @DomName('SVGPathSegCurvetoCubicRel.x') | 5077 @DomName('SVGPathSegCurvetoCubicRel.x') |
4010 @DocsEditable() | 5078 @DocsEditable() |
4011 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Sett
er_(unwrap_jso(this), value); | 5079 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Setter_(u
nwrap_jso(this), value); |
4012 | 5080 |
4013 @DomName('SVGPathSegCurvetoCubicRel.x1') | 5081 @DomName('SVGPathSegCurvetoCubicRel.x1') |
4014 @DocsEditable() | 5082 @DocsEditable() |
4015 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Getter_(unwrap
_jso(this)); | 5083 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Getter_(unwrap
_jso(this)); |
4016 | 5084 |
4017 @DomName('SVGPathSegCurvetoCubicRel.x1') | 5085 @DomName('SVGPathSegCurvetoCubicRel.x1') |
4018 @DocsEditable() | 5086 @DocsEditable() |
4019 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Se
tter_(unwrap_jso(this), value); | 5087 set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Setter_
(unwrap_jso(this), value); |
4020 | 5088 |
4021 @DomName('SVGPathSegCurvetoCubicRel.x2') | 5089 @DomName('SVGPathSegCurvetoCubicRel.x2') |
4022 @DocsEditable() | 5090 @DocsEditable() |
4023 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Getter_(unwrap
_jso(this)); | 5091 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Getter_(unwrap
_jso(this)); |
4024 | 5092 |
4025 @DomName('SVGPathSegCurvetoCubicRel.x2') | 5093 @DomName('SVGPathSegCurvetoCubicRel.x2') |
4026 @DocsEditable() | 5094 @DocsEditable() |
4027 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Se
tter_(unwrap_jso(this), value); | 5095 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Setter_
(unwrap_jso(this), value); |
4028 | 5096 |
4029 @DomName('SVGPathSegCurvetoCubicRel.y') | 5097 @DomName('SVGPathSegCurvetoCubicRel.y') |
4030 @DocsEditable() | 5098 @DocsEditable() |
4031 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Getter_(unwrap_j
so(this)); | 5099 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Getter_(unwrap_j
so(this)); |
4032 | 5100 |
4033 @DomName('SVGPathSegCurvetoCubicRel.y') | 5101 @DomName('SVGPathSegCurvetoCubicRel.y') |
4034 @DocsEditable() | 5102 @DocsEditable() |
4035 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Sett
er_(unwrap_jso(this), value); | 5103 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Setter_(u
nwrap_jso(this), value); |
4036 | 5104 |
4037 @DomName('SVGPathSegCurvetoCubicRel.y1') | 5105 @DomName('SVGPathSegCurvetoCubicRel.y1') |
4038 @DocsEditable() | 5106 @DocsEditable() |
4039 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Getter_(unwrap
_jso(this)); | 5107 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Getter_(unwrap
_jso(this)); |
4040 | 5108 |
4041 @DomName('SVGPathSegCurvetoCubicRel.y1') | 5109 @DomName('SVGPathSegCurvetoCubicRel.y1') |
4042 @DocsEditable() | 5110 @DocsEditable() |
4043 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Se
tter_(unwrap_jso(this), value); | 5111 set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Setter_
(unwrap_jso(this), value); |
4044 | 5112 |
4045 @DomName('SVGPathSegCurvetoCubicRel.y2') | 5113 @DomName('SVGPathSegCurvetoCubicRel.y2') |
4046 @DocsEditable() | 5114 @DocsEditable() |
4047 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Getter_(unwrap
_jso(this)); | 5115 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Getter_(unwrap
_jso(this)); |
4048 | 5116 |
4049 @DomName('SVGPathSegCurvetoCubicRel.y2') | 5117 @DomName('SVGPathSegCurvetoCubicRel.y2') |
4050 @DocsEditable() | 5118 @DocsEditable() |
4051 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Se
tter_(unwrap_jso(this), value); | 5119 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Setter_
(unwrap_jso(this), value); |
4052 | 5120 |
4053 } | 5121 } |
4054 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5122 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4055 // for details. All rights reserved. Use of this source code is governed by a | 5123 // for details. All rights reserved. Use of this source code is governed by a |
4056 // BSD-style license that can be found in the LICENSE file. | 5124 // BSD-style license that can be found in the LICENSE file. |
4057 | 5125 |
4058 // WARNING: Do not edit - generated code. | 5126 // WARNING: Do not edit - generated code. |
4059 | 5127 |
4060 | 5128 |
4061 @DocsEditable() | 5129 @DocsEditable() |
4062 @DomName('SVGPathSegCurvetoCubicSmoothAbs') | 5130 @DomName('SVGPathSegCurvetoCubicSmoothAbs') |
4063 @Unstable() | 5131 @Unstable() |
4064 class PathSegCurvetoCubicSmoothAbs extends PathSeg { | 5132 class PathSegCurvetoCubicSmoothAbs extends PathSeg { |
4065 // To suppress missing implicit constructor warnings. | 5133 // To suppress missing implicit constructor warnings. |
4066 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup
ported"); } | 5134 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup
ported"); } |
4067 | 5135 |
| 5136 |
| 5137 static PathSegCurvetoCubicSmoothAbs internalCreatePathSegCurvetoCubicSmoothAbs
() { |
| 5138 return new PathSegCurvetoCubicSmoothAbs._internalWrap(); |
| 5139 } |
| 5140 |
| 5141 factory PathSegCurvetoCubicSmoothAbs._internalWrap() { |
| 5142 return new PathSegCurvetoCubicSmoothAbs.internal_(); |
| 5143 } |
| 5144 |
| 5145 PathSegCurvetoCubicSmoothAbs.internal_() : super.internal_(); |
| 5146 |
| 5147 |
4068 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') | 5148 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') |
4069 @DocsEditable() | 5149 @DocsEditable() |
4070 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(un
wrap_jso(this)); | 5150 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(un
wrap_jso(this)); |
4071 | 5151 |
4072 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') | 5152 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') |
4073 @DocsEditable() | 5153 @DocsEditable() |
4074 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.
x_Setter_(unwrap_jso(this), value); | 5154 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Set
ter_(unwrap_jso(this), value); |
4075 | 5155 |
4076 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') | 5156 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') |
4077 @DocsEditable() | 5157 @DocsEditable() |
4078 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_Getter_(
unwrap_jso(this)); | 5158 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_Getter_(
unwrap_jso(this)); |
4079 | 5159 |
4080 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') | 5160 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') |
4081 @DocsEditable() | 5161 @DocsEditable() |
4082 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance
.x2_Setter_(unwrap_jso(this), value); | 5162 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_S
etter_(unwrap_jso(this), value); |
4083 | 5163 |
4084 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') | 5164 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') |
4085 @DocsEditable() | 5165 @DocsEditable() |
4086 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Getter_(un
wrap_jso(this)); | 5166 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Getter_(un
wrap_jso(this)); |
4087 | 5167 |
4088 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') | 5168 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') |
4089 @DocsEditable() | 5169 @DocsEditable() |
4090 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.
y_Setter_(unwrap_jso(this), value); | 5170 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Set
ter_(unwrap_jso(this), value); |
4091 | 5171 |
4092 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') | 5172 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') |
4093 @DocsEditable() | 5173 @DocsEditable() |
4094 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_Getter_(
unwrap_jso(this)); | 5174 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_Getter_(
unwrap_jso(this)); |
4095 | 5175 |
4096 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') | 5176 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') |
4097 @DocsEditable() | 5177 @DocsEditable() |
4098 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance
.y2_Setter_(unwrap_jso(this), value); | 5178 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_S
etter_(unwrap_jso(this), value); |
4099 | 5179 |
4100 } | 5180 } |
4101 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5181 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4102 // for details. All rights reserved. Use of this source code is governed by a | 5182 // for details. All rights reserved. Use of this source code is governed by a |
4103 // BSD-style license that can be found in the LICENSE file. | 5183 // BSD-style license that can be found in the LICENSE file. |
4104 | 5184 |
4105 // WARNING: Do not edit - generated code. | 5185 // WARNING: Do not edit - generated code. |
4106 | 5186 |
4107 | 5187 |
4108 @DocsEditable() | 5188 @DocsEditable() |
4109 @DomName('SVGPathSegCurvetoCubicSmoothRel') | 5189 @DomName('SVGPathSegCurvetoCubicSmoothRel') |
4110 @Unstable() | 5190 @Unstable() |
4111 class PathSegCurvetoCubicSmoothRel extends PathSeg { | 5191 class PathSegCurvetoCubicSmoothRel extends PathSeg { |
4112 // To suppress missing implicit constructor warnings. | 5192 // To suppress missing implicit constructor warnings. |
4113 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup
ported"); } | 5193 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup
ported"); } |
4114 | 5194 |
| 5195 |
| 5196 static PathSegCurvetoCubicSmoothRel internalCreatePathSegCurvetoCubicSmoothRel
() { |
| 5197 return new PathSegCurvetoCubicSmoothRel._internalWrap(); |
| 5198 } |
| 5199 |
| 5200 factory PathSegCurvetoCubicSmoothRel._internalWrap() { |
| 5201 return new PathSegCurvetoCubicSmoothRel.internal_(); |
| 5202 } |
| 5203 |
| 5204 PathSegCurvetoCubicSmoothRel.internal_() : super.internal_(); |
| 5205 |
| 5206 |
4115 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') | 5207 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') |
4116 @DocsEditable() | 5208 @DocsEditable() |
4117 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(un
wrap_jso(this)); | 5209 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(un
wrap_jso(this)); |
4118 | 5210 |
4119 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') | 5211 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') |
4120 @DocsEditable() | 5212 @DocsEditable() |
4121 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.
x_Setter_(unwrap_jso(this), value); | 5213 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Set
ter_(unwrap_jso(this), value); |
4122 | 5214 |
4123 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') | 5215 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') |
4124 @DocsEditable() | 5216 @DocsEditable() |
4125 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_Getter_(
unwrap_jso(this)); | 5217 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_Getter_(
unwrap_jso(this)); |
4126 | 5218 |
4127 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') | 5219 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') |
4128 @DocsEditable() | 5220 @DocsEditable() |
4129 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance
.x2_Setter_(unwrap_jso(this), value); | 5221 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_S
etter_(unwrap_jso(this), value); |
4130 | 5222 |
4131 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') | 5223 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') |
4132 @DocsEditable() | 5224 @DocsEditable() |
4133 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Getter_(un
wrap_jso(this)); | 5225 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Getter_(un
wrap_jso(this)); |
4134 | 5226 |
4135 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') | 5227 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') |
4136 @DocsEditable() | 5228 @DocsEditable() |
4137 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.
y_Setter_(unwrap_jso(this), value); | 5229 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Set
ter_(unwrap_jso(this), value); |
4138 | 5230 |
4139 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') | 5231 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') |
4140 @DocsEditable() | 5232 @DocsEditable() |
4141 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_Getter_(
unwrap_jso(this)); | 5233 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_Getter_(
unwrap_jso(this)); |
4142 | 5234 |
4143 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') | 5235 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') |
4144 @DocsEditable() | 5236 @DocsEditable() |
4145 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance
.y2_Setter_(unwrap_jso(this), value); | 5237 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_S
etter_(unwrap_jso(this), value); |
4146 | 5238 |
4147 } | 5239 } |
4148 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5240 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4149 // for details. All rights reserved. Use of this source code is governed by a | 5241 // for details. All rights reserved. Use of this source code is governed by a |
4150 // BSD-style license that can be found in the LICENSE file. | 5242 // BSD-style license that can be found in the LICENSE file. |
4151 | 5243 |
4152 // WARNING: Do not edit - generated code. | 5244 // WARNING: Do not edit - generated code. |
4153 | 5245 |
4154 | 5246 |
4155 @DocsEditable() | 5247 @DocsEditable() |
4156 @DomName('SVGPathSegCurvetoQuadraticAbs') | 5248 @DomName('SVGPathSegCurvetoQuadraticAbs') |
4157 @Unstable() | 5249 @Unstable() |
4158 class PathSegCurvetoQuadraticAbs extends PathSeg { | 5250 class PathSegCurvetoQuadraticAbs extends PathSeg { |
4159 // To suppress missing implicit constructor warnings. | 5251 // To suppress missing implicit constructor warnings. |
4160 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo
rted"); } | 5252 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo
rted"); } |
4161 | 5253 |
| 5254 |
| 5255 static PathSegCurvetoQuadraticAbs internalCreatePathSegCurvetoQuadraticAbs() { |
| 5256 return new PathSegCurvetoQuadraticAbs._internalWrap(); |
| 5257 } |
| 5258 |
| 5259 factory PathSegCurvetoQuadraticAbs._internalWrap() { |
| 5260 return new PathSegCurvetoQuadraticAbs.internal_(); |
| 5261 } |
| 5262 |
| 5263 PathSegCurvetoQuadraticAbs.internal_() : super.internal_(); |
| 5264 |
| 5265 |
4162 @DomName('SVGPathSegCurvetoQuadraticAbs.x') | 5266 @DomName('SVGPathSegCurvetoQuadraticAbs.x') |
4163 @DocsEditable() | 5267 @DocsEditable() |
4164 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(unwr
ap_jso(this)); | 5268 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(unwr
ap_jso(this)); |
4165 | 5269 |
4166 @DomName('SVGPathSegCurvetoQuadraticAbs.x') | 5270 @DomName('SVGPathSegCurvetoQuadraticAbs.x') |
4167 @DocsEditable() | 5271 @DocsEditable() |
4168 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_
Setter_(unwrap_jso(this), value); | 5272 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Sette
r_(unwrap_jso(this), value); |
4169 | 5273 |
4170 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') | 5274 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') |
4171 @DocsEditable() | 5275 @DocsEditable() |
4172 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Getter_(un
wrap_jso(this)); | 5276 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Getter_(un
wrap_jso(this)); |
4173 | 5277 |
4174 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') | 5278 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') |
4175 @DocsEditable() | 5279 @DocsEditable() |
4176 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x
1_Setter_(unwrap_jso(this), value); | 5280 set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Set
ter_(unwrap_jso(this), value); |
4177 | 5281 |
4178 @DomName('SVGPathSegCurvetoQuadraticAbs.y') | 5282 @DomName('SVGPathSegCurvetoQuadraticAbs.y') |
4179 @DocsEditable() | 5283 @DocsEditable() |
4180 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Getter_(unwr
ap_jso(this)); | 5284 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Getter_(unwr
ap_jso(this)); |
4181 | 5285 |
4182 @DomName('SVGPathSegCurvetoQuadraticAbs.y') | 5286 @DomName('SVGPathSegCurvetoQuadraticAbs.y') |
4183 @DocsEditable() | 5287 @DocsEditable() |
4184 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_
Setter_(unwrap_jso(this), value); | 5288 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Sette
r_(unwrap_jso(this), value); |
4185 | 5289 |
4186 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') | 5290 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') |
4187 @DocsEditable() | 5291 @DocsEditable() |
4188 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Getter_(un
wrap_jso(this)); | 5292 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Getter_(un
wrap_jso(this)); |
4189 | 5293 |
4190 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') | 5294 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') |
4191 @DocsEditable() | 5295 @DocsEditable() |
4192 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y
1_Setter_(unwrap_jso(this), value); | 5296 set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Set
ter_(unwrap_jso(this), value); |
4193 | 5297 |
4194 } | 5298 } |
4195 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5299 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4196 // for details. All rights reserved. Use of this source code is governed by a | 5300 // for details. All rights reserved. Use of this source code is governed by a |
4197 // BSD-style license that can be found in the LICENSE file. | 5301 // BSD-style license that can be found in the LICENSE file. |
4198 | 5302 |
4199 // WARNING: Do not edit - generated code. | 5303 // WARNING: Do not edit - generated code. |
4200 | 5304 |
4201 | 5305 |
4202 @DocsEditable() | 5306 @DocsEditable() |
4203 @DomName('SVGPathSegCurvetoQuadraticRel') | 5307 @DomName('SVGPathSegCurvetoQuadraticRel') |
4204 @Unstable() | 5308 @Unstable() |
4205 class PathSegCurvetoQuadraticRel extends PathSeg { | 5309 class PathSegCurvetoQuadraticRel extends PathSeg { |
4206 // To suppress missing implicit constructor warnings. | 5310 // To suppress missing implicit constructor warnings. |
4207 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo
rted"); } | 5311 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo
rted"); } |
4208 | 5312 |
| 5313 |
| 5314 static PathSegCurvetoQuadraticRel internalCreatePathSegCurvetoQuadraticRel() { |
| 5315 return new PathSegCurvetoQuadraticRel._internalWrap(); |
| 5316 } |
| 5317 |
| 5318 factory PathSegCurvetoQuadraticRel._internalWrap() { |
| 5319 return new PathSegCurvetoQuadraticRel.internal_(); |
| 5320 } |
| 5321 |
| 5322 PathSegCurvetoQuadraticRel.internal_() : super.internal_(); |
| 5323 |
| 5324 |
4209 @DomName('SVGPathSegCurvetoQuadraticRel.x') | 5325 @DomName('SVGPathSegCurvetoQuadraticRel.x') |
4210 @DocsEditable() | 5326 @DocsEditable() |
4211 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(unwr
ap_jso(this)); | 5327 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(unwr
ap_jso(this)); |
4212 | 5328 |
4213 @DomName('SVGPathSegCurvetoQuadraticRel.x') | 5329 @DomName('SVGPathSegCurvetoQuadraticRel.x') |
4214 @DocsEditable() | 5330 @DocsEditable() |
4215 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_
Setter_(unwrap_jso(this), value); | 5331 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Sette
r_(unwrap_jso(this), value); |
4216 | 5332 |
4217 @DomName('SVGPathSegCurvetoQuadraticRel.x1') | 5333 @DomName('SVGPathSegCurvetoQuadraticRel.x1') |
4218 @DocsEditable() | 5334 @DocsEditable() |
4219 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Getter_(un
wrap_jso(this)); | 5335 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Getter_(un
wrap_jso(this)); |
4220 | 5336 |
4221 @DomName('SVGPathSegCurvetoQuadraticRel.x1') | 5337 @DomName('SVGPathSegCurvetoQuadraticRel.x1') |
4222 @DocsEditable() | 5338 @DocsEditable() |
4223 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x
1_Setter_(unwrap_jso(this), value); | 5339 set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Set
ter_(unwrap_jso(this), value); |
4224 | 5340 |
4225 @DomName('SVGPathSegCurvetoQuadraticRel.y') | 5341 @DomName('SVGPathSegCurvetoQuadraticRel.y') |
4226 @DocsEditable() | 5342 @DocsEditable() |
4227 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Getter_(unwr
ap_jso(this)); | 5343 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Getter_(unwr
ap_jso(this)); |
4228 | 5344 |
4229 @DomName('SVGPathSegCurvetoQuadraticRel.y') | 5345 @DomName('SVGPathSegCurvetoQuadraticRel.y') |
4230 @DocsEditable() | 5346 @DocsEditable() |
4231 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_
Setter_(unwrap_jso(this), value); | 5347 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Sette
r_(unwrap_jso(this), value); |
4232 | 5348 |
4233 @DomName('SVGPathSegCurvetoQuadraticRel.y1') | 5349 @DomName('SVGPathSegCurvetoQuadraticRel.y1') |
4234 @DocsEditable() | 5350 @DocsEditable() |
4235 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Getter_(un
wrap_jso(this)); | 5351 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Getter_(un
wrap_jso(this)); |
4236 | 5352 |
4237 @DomName('SVGPathSegCurvetoQuadraticRel.y1') | 5353 @DomName('SVGPathSegCurvetoQuadraticRel.y1') |
4238 @DocsEditable() | 5354 @DocsEditable() |
4239 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y
1_Setter_(unwrap_jso(this), value); | 5355 set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Set
ter_(unwrap_jso(this), value); |
4240 | 5356 |
4241 } | 5357 } |
4242 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5358 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4243 // for details. All rights reserved. Use of this source code is governed by a | 5359 // for details. All rights reserved. Use of this source code is governed by a |
4244 // BSD-style license that can be found in the LICENSE file. | 5360 // BSD-style license that can be found in the LICENSE file. |
4245 | 5361 |
4246 // WARNING: Do not edit - generated code. | 5362 // WARNING: Do not edit - generated code. |
4247 | 5363 |
4248 | 5364 |
4249 @DocsEditable() | 5365 @DocsEditable() |
4250 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') | 5366 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') |
4251 @Unstable() | 5367 @Unstable() |
4252 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { | 5368 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { |
4253 // To suppress missing implicit constructor warnings. | 5369 // To suppress missing implicit constructor warnings. |
4254 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not
supported"); } | 5370 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not
supported"); } |
4255 | 5371 |
| 5372 |
| 5373 static PathSegCurvetoQuadraticSmoothAbs internalCreatePathSegCurvetoQuadraticS
moothAbs() { |
| 5374 return new PathSegCurvetoQuadraticSmoothAbs._internalWrap(); |
| 5375 } |
| 5376 |
| 5377 factory PathSegCurvetoQuadraticSmoothAbs._internalWrap() { |
| 5378 return new PathSegCurvetoQuadraticSmoothAbs.internal_(); |
| 5379 } |
| 5380 |
| 5381 PathSegCurvetoQuadraticSmoothAbs.internal_() : super.internal_(); |
| 5382 |
| 5383 |
4256 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') | 5384 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') |
4257 @DocsEditable() | 5385 @DocsEditable() |
4258 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter
_(unwrap_jso(this)); | 5386 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter
_(unwrap_jso(this)); |
4259 | 5387 |
4260 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') | 5388 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') |
4261 @DocsEditable() | 5389 @DocsEditable() |
4262 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.insta
nce.x_Setter_(unwrap_jso(this), value); | 5390 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x
_Setter_(unwrap_jso(this), value); |
4263 | 5391 |
4264 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') | 5392 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') |
4265 @DocsEditable() | 5393 @DocsEditable() |
4266 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y_Getter
_(unwrap_jso(this)); | 5394 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y_Getter
_(unwrap_jso(this)); |
4267 | 5395 |
4268 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') | 5396 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') |
4269 @DocsEditable() | 5397 @DocsEditable() |
4270 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.insta
nce.y_Setter_(unwrap_jso(this), value); | 5398 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y
_Setter_(unwrap_jso(this), value); |
4271 | 5399 |
4272 } | 5400 } |
4273 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5401 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4274 // for details. All rights reserved. Use of this source code is governed by a | 5402 // for details. All rights reserved. Use of this source code is governed by a |
4275 // BSD-style license that can be found in the LICENSE file. | 5403 // BSD-style license that can be found in the LICENSE file. |
4276 | 5404 |
4277 // WARNING: Do not edit - generated code. | 5405 // WARNING: Do not edit - generated code. |
4278 | 5406 |
4279 | 5407 |
4280 @DocsEditable() | 5408 @DocsEditable() |
4281 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') | 5409 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') |
4282 @Unstable() | 5410 @Unstable() |
4283 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { | 5411 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { |
4284 // To suppress missing implicit constructor warnings. | 5412 // To suppress missing implicit constructor warnings. |
4285 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not
supported"); } | 5413 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not
supported"); } |
4286 | 5414 |
| 5415 |
| 5416 static PathSegCurvetoQuadraticSmoothRel internalCreatePathSegCurvetoQuadraticS
moothRel() { |
| 5417 return new PathSegCurvetoQuadraticSmoothRel._internalWrap(); |
| 5418 } |
| 5419 |
| 5420 factory PathSegCurvetoQuadraticSmoothRel._internalWrap() { |
| 5421 return new PathSegCurvetoQuadraticSmoothRel.internal_(); |
| 5422 } |
| 5423 |
| 5424 PathSegCurvetoQuadraticSmoothRel.internal_() : super.internal_(); |
| 5425 |
| 5426 |
4287 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') | 5427 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') |
4288 @DocsEditable() | 5428 @DocsEditable() |
4289 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter
_(unwrap_jso(this)); | 5429 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter
_(unwrap_jso(this)); |
4290 | 5430 |
4291 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') | 5431 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') |
4292 @DocsEditable() | 5432 @DocsEditable() |
4293 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.insta
nce.x_Setter_(unwrap_jso(this), value); | 5433 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x
_Setter_(unwrap_jso(this), value); |
4294 | 5434 |
4295 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') | 5435 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') |
4296 @DocsEditable() | 5436 @DocsEditable() |
4297 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y_Getter
_(unwrap_jso(this)); | 5437 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y_Getter
_(unwrap_jso(this)); |
4298 | 5438 |
4299 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') | 5439 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') |
4300 @DocsEditable() | 5440 @DocsEditable() |
4301 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.insta
nce.y_Setter_(unwrap_jso(this), value); | 5441 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y
_Setter_(unwrap_jso(this), value); |
4302 | 5442 |
4303 } | 5443 } |
4304 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5444 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4305 // for details. All rights reserved. Use of this source code is governed by a | 5445 // for details. All rights reserved. Use of this source code is governed by a |
4306 // BSD-style license that can be found in the LICENSE file. | 5446 // BSD-style license that can be found in the LICENSE file. |
4307 | 5447 |
4308 // WARNING: Do not edit - generated code. | 5448 // WARNING: Do not edit - generated code. |
4309 | 5449 |
4310 | 5450 |
4311 @DocsEditable() | 5451 @DocsEditable() |
4312 @DomName('SVGPathSegLinetoAbs') | 5452 @DomName('SVGPathSegLinetoAbs') |
4313 @Unstable() | 5453 @Unstable() |
4314 class PathSegLinetoAbs extends PathSeg { | 5454 class PathSegLinetoAbs extends PathSeg { |
4315 // To suppress missing implicit constructor warnings. | 5455 // To suppress missing implicit constructor warnings. |
4316 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } | 5456 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } |
4317 | 5457 |
| 5458 |
| 5459 static PathSegLinetoAbs internalCreatePathSegLinetoAbs() { |
| 5460 return new PathSegLinetoAbs._internalWrap(); |
| 5461 } |
| 5462 |
| 5463 factory PathSegLinetoAbs._internalWrap() { |
| 5464 return new PathSegLinetoAbs.internal_(); |
| 5465 } |
| 5466 |
| 5467 PathSegLinetoAbs.internal_() : super.internal_(); |
| 5468 |
| 5469 |
4318 @DomName('SVGPathSegLinetoAbs.x') | 5470 @DomName('SVGPathSegLinetoAbs.x') |
4319 @DocsEditable() | 5471 @DocsEditable() |
4320 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); | 5472 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); |
4321 | 5473 |
4322 @DomName('SVGPathSegLinetoAbs.x') | 5474 @DomName('SVGPathSegLinetoAbs.x') |
4323 @DocsEditable() | 5475 @DocsEditable() |
4324 void set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(un
wrap_jso(this), value); | 5476 set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(unwrap_
jso(this), value); |
4325 | 5477 |
4326 @DomName('SVGPathSegLinetoAbs.y') | 5478 @DomName('SVGPathSegLinetoAbs.y') |
4327 @DocsEditable() | 5479 @DocsEditable() |
4328 num get y => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Getter_(unwrap_jso(thi
s)); | 5480 num get y => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Getter_(unwrap_jso(thi
s)); |
4329 | 5481 |
4330 @DomName('SVGPathSegLinetoAbs.y') | 5482 @DomName('SVGPathSegLinetoAbs.y') |
4331 @DocsEditable() | 5483 @DocsEditable() |
4332 void set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Setter_(un
wrap_jso(this), value); | 5484 set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Setter_(unwrap_
jso(this), value); |
4333 | 5485 |
4334 } | 5486 } |
4335 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5487 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4336 // for details. All rights reserved. Use of this source code is governed by a | 5488 // for details. All rights reserved. Use of this source code is governed by a |
4337 // BSD-style license that can be found in the LICENSE file. | 5489 // BSD-style license that can be found in the LICENSE file. |
4338 | 5490 |
4339 // WARNING: Do not edit - generated code. | 5491 // WARNING: Do not edit - generated code. |
4340 | 5492 |
4341 | 5493 |
4342 @DocsEditable() | 5494 @DocsEditable() |
4343 @DomName('SVGPathSegLinetoHorizontalAbs') | 5495 @DomName('SVGPathSegLinetoHorizontalAbs') |
4344 @Unstable() | 5496 @Unstable() |
4345 class PathSegLinetoHorizontalAbs extends PathSeg { | 5497 class PathSegLinetoHorizontalAbs extends PathSeg { |
4346 // To suppress missing implicit constructor warnings. | 5498 // To suppress missing implicit constructor warnings. |
4347 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo
rted"); } | 5499 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo
rted"); } |
4348 | 5500 |
| 5501 |
| 5502 static PathSegLinetoHorizontalAbs internalCreatePathSegLinetoHorizontalAbs() { |
| 5503 return new PathSegLinetoHorizontalAbs._internalWrap(); |
| 5504 } |
| 5505 |
| 5506 factory PathSegLinetoHorizontalAbs._internalWrap() { |
| 5507 return new PathSegLinetoHorizontalAbs.internal_(); |
| 5508 } |
| 5509 |
| 5510 PathSegLinetoHorizontalAbs.internal_() : super.internal_(); |
| 5511 |
| 5512 |
4349 @DomName('SVGPathSegLinetoHorizontalAbs.x') | 5513 @DomName('SVGPathSegLinetoHorizontalAbs.x') |
4350 @DocsEditable() | 5514 @DocsEditable() |
4351 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(unwr
ap_jso(this)); | 5515 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(unwr
ap_jso(this)); |
4352 | 5516 |
4353 @DomName('SVGPathSegLinetoHorizontalAbs.x') | 5517 @DomName('SVGPathSegLinetoHorizontalAbs.x') |
4354 @DocsEditable() | 5518 @DocsEditable() |
4355 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_
Setter_(unwrap_jso(this), value); | 5519 set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Sette
r_(unwrap_jso(this), value); |
4356 | 5520 |
4357 } | 5521 } |
4358 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5522 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4359 // for details. All rights reserved. Use of this source code is governed by a | 5523 // for details. All rights reserved. Use of this source code is governed by a |
4360 // BSD-style license that can be found in the LICENSE file. | 5524 // BSD-style license that can be found in the LICENSE file. |
4361 | 5525 |
4362 // WARNING: Do not edit - generated code. | 5526 // WARNING: Do not edit - generated code. |
4363 | 5527 |
4364 | 5528 |
4365 @DocsEditable() | 5529 @DocsEditable() |
4366 @DomName('SVGPathSegLinetoHorizontalRel') | 5530 @DomName('SVGPathSegLinetoHorizontalRel') |
4367 @Unstable() | 5531 @Unstable() |
4368 class PathSegLinetoHorizontalRel extends PathSeg { | 5532 class PathSegLinetoHorizontalRel extends PathSeg { |
4369 // To suppress missing implicit constructor warnings. | 5533 // To suppress missing implicit constructor warnings. |
4370 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo
rted"); } | 5534 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo
rted"); } |
4371 | 5535 |
| 5536 |
| 5537 static PathSegLinetoHorizontalRel internalCreatePathSegLinetoHorizontalRel() { |
| 5538 return new PathSegLinetoHorizontalRel._internalWrap(); |
| 5539 } |
| 5540 |
| 5541 factory PathSegLinetoHorizontalRel._internalWrap() { |
| 5542 return new PathSegLinetoHorizontalRel.internal_(); |
| 5543 } |
| 5544 |
| 5545 PathSegLinetoHorizontalRel.internal_() : super.internal_(); |
| 5546 |
| 5547 |
4372 @DomName('SVGPathSegLinetoHorizontalRel.x') | 5548 @DomName('SVGPathSegLinetoHorizontalRel.x') |
4373 @DocsEditable() | 5549 @DocsEditable() |
4374 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(unwr
ap_jso(this)); | 5550 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(unwr
ap_jso(this)); |
4375 | 5551 |
4376 @DomName('SVGPathSegLinetoHorizontalRel.x') | 5552 @DomName('SVGPathSegLinetoHorizontalRel.x') |
4377 @DocsEditable() | 5553 @DocsEditable() |
4378 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_
Setter_(unwrap_jso(this), value); | 5554 set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Sette
r_(unwrap_jso(this), value); |
4379 | 5555 |
4380 } | 5556 } |
4381 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5557 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4382 // for details. All rights reserved. Use of this source code is governed by a | 5558 // for details. All rights reserved. Use of this source code is governed by a |
4383 // BSD-style license that can be found in the LICENSE file. | 5559 // BSD-style license that can be found in the LICENSE file. |
4384 | 5560 |
4385 // WARNING: Do not edit - generated code. | 5561 // WARNING: Do not edit - generated code. |
4386 | 5562 |
4387 | 5563 |
4388 @DocsEditable() | 5564 @DocsEditable() |
4389 @DomName('SVGPathSegLinetoRel') | 5565 @DomName('SVGPathSegLinetoRel') |
4390 @Unstable() | 5566 @Unstable() |
4391 class PathSegLinetoRel extends PathSeg { | 5567 class PathSegLinetoRel extends PathSeg { |
4392 // To suppress missing implicit constructor warnings. | 5568 // To suppress missing implicit constructor warnings. |
4393 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } | 5569 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } |
4394 | 5570 |
| 5571 |
| 5572 static PathSegLinetoRel internalCreatePathSegLinetoRel() { |
| 5573 return new PathSegLinetoRel._internalWrap(); |
| 5574 } |
| 5575 |
| 5576 factory PathSegLinetoRel._internalWrap() { |
| 5577 return new PathSegLinetoRel.internal_(); |
| 5578 } |
| 5579 |
| 5580 PathSegLinetoRel.internal_() : super.internal_(); |
| 5581 |
| 5582 |
4395 @DomName('SVGPathSegLinetoRel.x') | 5583 @DomName('SVGPathSegLinetoRel.x') |
4396 @DocsEditable() | 5584 @DocsEditable() |
4397 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(unwrap_jso(thi
s)); | 5585 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(unwrap_jso(thi
s)); |
4398 | 5586 |
4399 @DomName('SVGPathSegLinetoRel.x') | 5587 @DomName('SVGPathSegLinetoRel.x') |
4400 @DocsEditable() | 5588 @DocsEditable() |
4401 void set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(un
wrap_jso(this), value); | 5589 set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(unwrap_
jso(this), value); |
4402 | 5590 |
4403 @DomName('SVGPathSegLinetoRel.y') | 5591 @DomName('SVGPathSegLinetoRel.y') |
4404 @DocsEditable() | 5592 @DocsEditable() |
4405 num get y => _blink.BlinkSVGPathSegLinetoRel.instance.y_Getter_(unwrap_jso(thi
s)); | 5593 num get y => _blink.BlinkSVGPathSegLinetoRel.instance.y_Getter_(unwrap_jso(thi
s)); |
4406 | 5594 |
4407 @DomName('SVGPathSegLinetoRel.y') | 5595 @DomName('SVGPathSegLinetoRel.y') |
4408 @DocsEditable() | 5596 @DocsEditable() |
4409 void set y(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.y_Setter_(un
wrap_jso(this), value); | 5597 set y(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.y_Setter_(unwrap_
jso(this), value); |
4410 | 5598 |
4411 } | 5599 } |
4412 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5600 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4413 // for details. All rights reserved. Use of this source code is governed by a | 5601 // for details. All rights reserved. Use of this source code is governed by a |
4414 // BSD-style license that can be found in the LICENSE file. | 5602 // BSD-style license that can be found in the LICENSE file. |
4415 | 5603 |
4416 // WARNING: Do not edit - generated code. | 5604 // WARNING: Do not edit - generated code. |
4417 | 5605 |
4418 | 5606 |
4419 @DocsEditable() | 5607 @DocsEditable() |
4420 @DomName('SVGPathSegLinetoVerticalAbs') | 5608 @DomName('SVGPathSegLinetoVerticalAbs') |
4421 @Unstable() | 5609 @Unstable() |
4422 class PathSegLinetoVerticalAbs extends PathSeg { | 5610 class PathSegLinetoVerticalAbs extends PathSeg { |
4423 // To suppress missing implicit constructor warnings. | 5611 // To suppress missing implicit constructor warnings. |
4424 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support
ed"); } | 5612 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support
ed"); } |
4425 | 5613 |
| 5614 |
| 5615 static PathSegLinetoVerticalAbs internalCreatePathSegLinetoVerticalAbs() { |
| 5616 return new PathSegLinetoVerticalAbs._internalWrap(); |
| 5617 } |
| 5618 |
| 5619 factory PathSegLinetoVerticalAbs._internalWrap() { |
| 5620 return new PathSegLinetoVerticalAbs.internal_(); |
| 5621 } |
| 5622 |
| 5623 PathSegLinetoVerticalAbs.internal_() : super.internal_(); |
| 5624 |
| 5625 |
4426 @DomName('SVGPathSegLinetoVerticalAbs.y') | 5626 @DomName('SVGPathSegLinetoVerticalAbs.y') |
4427 @DocsEditable() | 5627 @DocsEditable() |
4428 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(unwrap
_jso(this)); | 5628 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(unwrap
_jso(this)); |
4429 | 5629 |
4430 @DomName('SVGPathSegLinetoVerticalAbs.y') | 5630 @DomName('SVGPathSegLinetoVerticalAbs.y') |
4431 @DocsEditable() | 5631 @DocsEditable() |
4432 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Se
tter_(unwrap_jso(this), value); | 5632 set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Setter_
(unwrap_jso(this), value); |
4433 | 5633 |
4434 } | 5634 } |
4435 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5635 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4436 // for details. All rights reserved. Use of this source code is governed by a | 5636 // for details. All rights reserved. Use of this source code is governed by a |
4437 // BSD-style license that can be found in the LICENSE file. | 5637 // BSD-style license that can be found in the LICENSE file. |
4438 | 5638 |
4439 // WARNING: Do not edit - generated code. | 5639 // WARNING: Do not edit - generated code. |
4440 | 5640 |
4441 | 5641 |
4442 @DocsEditable() | 5642 @DocsEditable() |
4443 @DomName('SVGPathSegLinetoVerticalRel') | 5643 @DomName('SVGPathSegLinetoVerticalRel') |
4444 @Unstable() | 5644 @Unstable() |
4445 class PathSegLinetoVerticalRel extends PathSeg { | 5645 class PathSegLinetoVerticalRel extends PathSeg { |
4446 // To suppress missing implicit constructor warnings. | 5646 // To suppress missing implicit constructor warnings. |
4447 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support
ed"); } | 5647 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support
ed"); } |
4448 | 5648 |
| 5649 |
| 5650 static PathSegLinetoVerticalRel internalCreatePathSegLinetoVerticalRel() { |
| 5651 return new PathSegLinetoVerticalRel._internalWrap(); |
| 5652 } |
| 5653 |
| 5654 factory PathSegLinetoVerticalRel._internalWrap() { |
| 5655 return new PathSegLinetoVerticalRel.internal_(); |
| 5656 } |
| 5657 |
| 5658 PathSegLinetoVerticalRel.internal_() : super.internal_(); |
| 5659 |
| 5660 |
4449 @DomName('SVGPathSegLinetoVerticalRel.y') | 5661 @DomName('SVGPathSegLinetoVerticalRel.y') |
4450 @DocsEditable() | 5662 @DocsEditable() |
4451 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(unwrap
_jso(this)); | 5663 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(unwrap
_jso(this)); |
4452 | 5664 |
4453 @DomName('SVGPathSegLinetoVerticalRel.y') | 5665 @DomName('SVGPathSegLinetoVerticalRel.y') |
4454 @DocsEditable() | 5666 @DocsEditable() |
4455 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Se
tter_(unwrap_jso(this), value); | 5667 set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Setter_
(unwrap_jso(this), value); |
4456 | 5668 |
4457 } | 5669 } |
4458 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5670 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4459 // for details. All rights reserved. Use of this source code is governed by a | 5671 // for details. All rights reserved. Use of this source code is governed by a |
4460 // BSD-style license that can be found in the LICENSE file. | 5672 // BSD-style license that can be found in the LICENSE file. |
4461 | 5673 |
4462 // WARNING: Do not edit - generated code. | 5674 // WARNING: Do not edit - generated code. |
4463 | 5675 |
4464 | 5676 |
4465 @DocsEditable() | 5677 @DocsEditable() |
4466 @DomName('SVGPathSegList') | 5678 @DomName('SVGPathSegList') |
4467 @Unstable() | 5679 @Unstable() |
4468 class PathSegList extends NativeFieldWrapperClass2 with ListMixin<PathSeg>, Immu
tableListMixin<PathSeg> implements List<PathSeg> { | 5680 class PathSegList extends JsoNativeFieldWrapper with ListMixin<PathSeg>, Immutab
leListMixin<PathSeg> implements List<PathSeg> { |
4469 // To suppress missing implicit constructor warnings. | 5681 // To suppress missing implicit constructor warnings. |
4470 factory PathSegList._() { throw new UnsupportedError("Not supported"); } | 5682 factory PathSegList._() { throw new UnsupportedError("Not supported"); } |
4471 | 5683 |
| 5684 static PathSegList internalCreatePathSegList() { |
| 5685 return new PathSegList._internalWrap(); |
| 5686 } |
| 5687 |
| 5688 js.JsObject blink_jsObject; |
| 5689 |
| 5690 factory PathSegList._internalWrap() { |
| 5691 return new PathSegList.internal_(); |
| 5692 } |
| 5693 |
| 5694 PathSegList.internal_() { } |
| 5695 |
| 5696 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 5697 int get hashCode => unwrap_jso(this).hashCode; |
| 5698 |
4472 @DomName('SVGPathSegList.length') | 5699 @DomName('SVGPathSegList.length') |
4473 @DocsEditable() | 5700 @DocsEditable() |
4474 @Experimental() // untriaged | 5701 @Experimental() // untriaged |
4475 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(unwrap_js
o(this)); | 5702 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(unwrap_js
o(this)); |
4476 | 5703 |
4477 @DomName('SVGPathSegList.numberOfItems') | 5704 @DomName('SVGPathSegList.numberOfItems') |
4478 @DocsEditable() | 5705 @DocsEditable() |
4479 int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Get
ter_(unwrap_jso(this)); | 5706 int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Get
ter_(unwrap_jso(this)); |
4480 | 5707 |
4481 PathSeg operator[](int index) { | 5708 PathSeg operator[](int index) { |
4482 if (index < 0 || index >= length) | 5709 if (index < 0 || index >= length) |
4483 throw new RangeError.index(index, this); | 5710 throw new RangeError.index(index, this); |
4484 return getItem(index); | 5711 return getItem(index); |
4485 } | 5712 } |
4486 | 5713 |
4487 void operator[]=(int index, PathSeg value) { | 5714 void operator[]=(int index, PathSeg value) { |
4488 throw new UnsupportedError("Cannot assign element of immutable List."); | 5715 throw new UnsupportedError("Cannot assign element of immutable List."); |
4489 } | 5716 } |
4490 // -- start List<PathSeg> mixins. | 5717 // -- start List<PathSeg> mixins. |
4491 // PathSeg is the element type. | 5718 // PathSeg is the element type. |
4492 | 5719 |
4493 | 5720 |
4494 void set length(int value) { | 5721 set length(int value) { |
4495 throw new UnsupportedError("Cannot resize immutable List."); | 5722 throw new UnsupportedError("Cannot resize immutable List."); |
4496 } | 5723 } |
4497 | 5724 |
4498 PathSeg get first { | 5725 PathSeg get first { |
4499 if (this.length > 0) { | 5726 if (this.length > 0) { |
4500 return getItem(0); | 5727 return getItem(0); |
4501 } | 5728 } |
4502 throw new StateError("No elements"); | 5729 throw new StateError("No elements"); |
4503 } | 5730 } |
4504 | 5731 |
(...skipping 17 matching lines...) Expand all Loading... |
4522 PathSeg elementAt(int index) => this[index]; | 5749 PathSeg elementAt(int index) => this[index]; |
4523 // -- end List<PathSeg> mixins. | 5750 // -- end List<PathSeg> mixins. |
4524 | 5751 |
4525 @DomName('SVGPathSegList.__setter__') | 5752 @DomName('SVGPathSegList.__setter__') |
4526 @DocsEditable() | 5753 @DocsEditable() |
4527 @Experimental() // untriaged | 5754 @Experimental() // untriaged |
4528 void __setter__(int index, PathSeg value) => _blink.BlinkSVGPathSegList.instan
ce.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); | 5755 void __setter__(int index, PathSeg value) => _blink.BlinkSVGPathSegList.instan
ce.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
4529 | 5756 |
4530 @DomName('SVGPathSegList.appendItem') | 5757 @DomName('SVGPathSegList.appendItem') |
4531 @DocsEditable() | 5758 @DocsEditable() |
4532 PathSeg appendItem(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.app
endItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)); | 5759 PathSeg appendItem(PathSeg newItem) => wrap_jso(_blink.BlinkSVGPathSegList.ins
tance.appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); |
4533 | 5760 |
4534 @DomName('SVGPathSegList.clear') | 5761 @DomName('SVGPathSegList.clear') |
4535 @DocsEditable() | 5762 @DocsEditable() |
4536 void clear() => _blink.BlinkSVGPathSegList.instance.clear_Callback_0_(unwrap_j
so(this)); | 5763 void clear() => _blink.BlinkSVGPathSegList.instance.clear_Callback_0_(unwrap_j
so(this)); |
4537 | 5764 |
4538 @DomName('SVGPathSegList.getItem') | 5765 @DomName('SVGPathSegList.getItem') |
4539 @DocsEditable() | 5766 @DocsEditable() |
4540 PathSeg getItem(int index) => _blink.BlinkSVGPathSegList.instance.getItem_Call
back_1_(unwrap_jso(this), index); | 5767 PathSeg getItem(int index) => wrap_jso(_blink.BlinkSVGPathSegList.instance.get
Item_Callback_1_(unwrap_jso(this), index)); |
4541 | 5768 |
4542 @DomName('SVGPathSegList.initialize') | 5769 @DomName('SVGPathSegList.initialize') |
4543 @DocsEditable() | 5770 @DocsEditable() |
4544 PathSeg initialize(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.ini
tialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)); | 5771 PathSeg initialize(PathSeg newItem) => wrap_jso(_blink.BlinkSVGPathSegList.ins
tance.initialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); |
4545 | 5772 |
4546 @DomName('SVGPathSegList.insertItemBefore') | 5773 @DomName('SVGPathSegList.insertItemBefore') |
4547 @DocsEditable() | 5774 @DocsEditable() |
4548 PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.BlinkSVGPathSeg
List.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(newItem)
, index); | 5775 PathSeg insertItemBefore(PathSeg newItem, int index) => wrap_jso(_blink.BlinkS
VGPathSegList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso
(newItem), index)); |
4549 | 5776 |
4550 @DomName('SVGPathSegList.removeItem') | 5777 @DomName('SVGPathSegList.removeItem') |
4551 @DocsEditable() | 5778 @DocsEditable() |
4552 PathSeg removeItem(int index) => _blink.BlinkSVGPathSegList.instance.removeIte
m_Callback_1_(unwrap_jso(this), index); | 5779 PathSeg removeItem(int index) => wrap_jso(_blink.BlinkSVGPathSegList.instance.
removeItem_Callback_1_(unwrap_jso(this), index)); |
4553 | 5780 |
4554 @DomName('SVGPathSegList.replaceItem') | 5781 @DomName('SVGPathSegList.replaceItem') |
4555 @DocsEditable() | 5782 @DocsEditable() |
4556 PathSeg replaceItem(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList.
instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index); | 5783 PathSeg replaceItem(PathSeg newItem, int index) => wrap_jso(_blink.BlinkSVGPat
hSegList.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem),
index)); |
4557 | 5784 |
4558 } | 5785 } |
4559 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5786 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4560 // for details. All rights reserved. Use of this source code is governed by a | 5787 // for details. All rights reserved. Use of this source code is governed by a |
4561 // BSD-style license that can be found in the LICENSE file. | 5788 // BSD-style license that can be found in the LICENSE file. |
4562 | 5789 |
4563 // WARNING: Do not edit - generated code. | 5790 // WARNING: Do not edit - generated code. |
4564 | 5791 |
4565 | 5792 |
4566 @DocsEditable() | 5793 @DocsEditable() |
4567 @DomName('SVGPathSegMovetoAbs') | 5794 @DomName('SVGPathSegMovetoAbs') |
4568 @Unstable() | 5795 @Unstable() |
4569 class PathSegMovetoAbs extends PathSeg { | 5796 class PathSegMovetoAbs extends PathSeg { |
4570 // To suppress missing implicit constructor warnings. | 5797 // To suppress missing implicit constructor warnings. |
4571 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } | 5798 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } |
4572 | 5799 |
| 5800 |
| 5801 static PathSegMovetoAbs internalCreatePathSegMovetoAbs() { |
| 5802 return new PathSegMovetoAbs._internalWrap(); |
| 5803 } |
| 5804 |
| 5805 factory PathSegMovetoAbs._internalWrap() { |
| 5806 return new PathSegMovetoAbs.internal_(); |
| 5807 } |
| 5808 |
| 5809 PathSegMovetoAbs.internal_() : super.internal_(); |
| 5810 |
| 5811 |
4573 @DomName('SVGPathSegMovetoAbs.x') | 5812 @DomName('SVGPathSegMovetoAbs.x') |
4574 @DocsEditable() | 5813 @DocsEditable() |
4575 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); | 5814 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); |
4576 | 5815 |
4577 @DomName('SVGPathSegMovetoAbs.x') | 5816 @DomName('SVGPathSegMovetoAbs.x') |
4578 @DocsEditable() | 5817 @DocsEditable() |
4579 void set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(un
wrap_jso(this), value); | 5818 set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(unwrap_
jso(this), value); |
4580 | 5819 |
4581 @DomName('SVGPathSegMovetoAbs.y') | 5820 @DomName('SVGPathSegMovetoAbs.y') |
4582 @DocsEditable() | 5821 @DocsEditable() |
4583 num get y => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Getter_(unwrap_jso(thi
s)); | 5822 num get y => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Getter_(unwrap_jso(thi
s)); |
4584 | 5823 |
4585 @DomName('SVGPathSegMovetoAbs.y') | 5824 @DomName('SVGPathSegMovetoAbs.y') |
4586 @DocsEditable() | 5825 @DocsEditable() |
4587 void set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Setter_(un
wrap_jso(this), value); | 5826 set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Setter_(unwrap_
jso(this), value); |
4588 | 5827 |
4589 } | 5828 } |
4590 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5829 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4591 // for details. All rights reserved. Use of this source code is governed by a | 5830 // for details. All rights reserved. Use of this source code is governed by a |
4592 // BSD-style license that can be found in the LICENSE file. | 5831 // BSD-style license that can be found in the LICENSE file. |
4593 | 5832 |
4594 // WARNING: Do not edit - generated code. | 5833 // WARNING: Do not edit - generated code. |
4595 | 5834 |
4596 | 5835 |
4597 @DocsEditable() | 5836 @DocsEditable() |
4598 @DomName('SVGPathSegMovetoRel') | 5837 @DomName('SVGPathSegMovetoRel') |
4599 @Unstable() | 5838 @Unstable() |
4600 class PathSegMovetoRel extends PathSeg { | 5839 class PathSegMovetoRel extends PathSeg { |
4601 // To suppress missing implicit constructor warnings. | 5840 // To suppress missing implicit constructor warnings. |
4602 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } | 5841 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } |
4603 | 5842 |
| 5843 |
| 5844 static PathSegMovetoRel internalCreatePathSegMovetoRel() { |
| 5845 return new PathSegMovetoRel._internalWrap(); |
| 5846 } |
| 5847 |
| 5848 factory PathSegMovetoRel._internalWrap() { |
| 5849 return new PathSegMovetoRel.internal_(); |
| 5850 } |
| 5851 |
| 5852 PathSegMovetoRel.internal_() : super.internal_(); |
| 5853 |
| 5854 |
4604 @DomName('SVGPathSegMovetoRel.x') | 5855 @DomName('SVGPathSegMovetoRel.x') |
4605 @DocsEditable() | 5856 @DocsEditable() |
4606 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(unwrap_jso(thi
s)); | 5857 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(unwrap_jso(thi
s)); |
4607 | 5858 |
4608 @DomName('SVGPathSegMovetoRel.x') | 5859 @DomName('SVGPathSegMovetoRel.x') |
4609 @DocsEditable() | 5860 @DocsEditable() |
4610 void set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(un
wrap_jso(this), value); | 5861 set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(unwrap_
jso(this), value); |
4611 | 5862 |
4612 @DomName('SVGPathSegMovetoRel.y') | 5863 @DomName('SVGPathSegMovetoRel.y') |
4613 @DocsEditable() | 5864 @DocsEditable() |
4614 num get y => _blink.BlinkSVGPathSegMovetoRel.instance.y_Getter_(unwrap_jso(thi
s)); | 5865 num get y => _blink.BlinkSVGPathSegMovetoRel.instance.y_Getter_(unwrap_jso(thi
s)); |
4615 | 5866 |
4616 @DomName('SVGPathSegMovetoRel.y') | 5867 @DomName('SVGPathSegMovetoRel.y') |
4617 @DocsEditable() | 5868 @DocsEditable() |
4618 void set y(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.y_Setter_(un
wrap_jso(this), value); | 5869 set y(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.y_Setter_(unwrap_
jso(this), value); |
4619 | 5870 |
4620 } | 5871 } |
4621 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5872 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4622 // for details. All rights reserved. Use of this source code is governed by a | 5873 // for details. All rights reserved. Use of this source code is governed by a |
4623 // BSD-style license that can be found in the LICENSE file. | 5874 // BSD-style license that can be found in the LICENSE file. |
4624 | 5875 |
4625 // WARNING: Do not edit - generated code. | 5876 // WARNING: Do not edit - generated code. |
4626 | 5877 |
4627 | 5878 |
4628 @DocsEditable() | 5879 @DocsEditable() |
4629 @DomName('SVGPatternElement') | 5880 @DomName('SVGPatternElement') |
4630 @Unstable() | 5881 @Unstable() |
4631 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T
ests { | 5882 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T
ests { |
4632 // To suppress missing implicit constructor warnings. | 5883 // To suppress missing implicit constructor warnings. |
4633 factory PatternElement._() { throw new UnsupportedError("Not supported"); } | 5884 factory PatternElement._() { throw new UnsupportedError("Not supported"); } |
4634 | 5885 |
4635 @DomName('SVGPatternElement.SVGPatternElement') | 5886 @DomName('SVGPatternElement.SVGPatternElement') |
4636 @DocsEditable() | 5887 @DocsEditable() |
4637 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
attern"); | 5888 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
attern"); |
| 5889 |
| 5890 |
| 5891 static PatternElement internalCreatePatternElement() { |
| 5892 return new PatternElement._internalWrap(); |
| 5893 } |
| 5894 |
| 5895 factory PatternElement._internalWrap() { |
| 5896 return new PatternElement.internal_(); |
| 5897 } |
| 5898 |
| 5899 PatternElement.internal_() : super.internal_(); |
| 5900 |
4638 /** | 5901 /** |
4639 * Constructor instantiated by the DOM when a custom element has been created. | 5902 * Constructor instantiated by the DOM when a custom element has been created. |
4640 * | 5903 * |
4641 * This can only be called by subclasses from their created constructor. | 5904 * This can only be called by subclasses from their created constructor. |
4642 */ | 5905 */ |
4643 PatternElement.created() : super.created(); | 5906 PatternElement.created() : super.created(); |
4644 | 5907 |
4645 @DomName('SVGPatternElement.height') | 5908 @DomName('SVGPatternElement.height') |
4646 @DocsEditable() | 5909 @DocsEditable() |
4647 AnimatedLength get height => wrap_jso(_blink.BlinkSVGPatternElement.instance.h
eight_Getter_(unwrap_jso(this))); | 5910 AnimatedLength get height => wrap_jso(_blink.BlinkSVGPatternElement.instance.h
eight_Getter_(unwrap_jso(this))); |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4706 // WARNING: Do not edit - generated code. | 5969 // WARNING: Do not edit - generated code. |
4707 | 5970 |
4708 | 5971 |
4709 @DocsEditable() | 5972 @DocsEditable() |
4710 @DomName('SVGPoint') | 5973 @DomName('SVGPoint') |
4711 @Unstable() | 5974 @Unstable() |
4712 class Point extends NativeFieldWrapperClass2 { | 5975 class Point extends NativeFieldWrapperClass2 { |
4713 // To suppress missing implicit constructor warnings. | 5976 // To suppress missing implicit constructor warnings. |
4714 factory Point._() { throw new UnsupportedError("Not supported"); } | 5977 factory Point._() { throw new UnsupportedError("Not supported"); } |
4715 | 5978 |
| 5979 static Point internalCreatePoint() { |
| 5980 return new Point._internalWrap(); |
| 5981 } |
| 5982 |
| 5983 js.JsObject blink_jsObject; |
| 5984 |
| 5985 factory Point._internalWrap() { |
| 5986 return new Point.internal_(); |
| 5987 } |
| 5988 |
| 5989 Point.internal_() { } |
| 5990 |
| 5991 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 5992 int get hashCode => unwrap_jso(this).hashCode; |
| 5993 |
4716 @DomName('SVGPoint.x') | 5994 @DomName('SVGPoint.x') |
4717 @DocsEditable() | 5995 @DocsEditable() |
4718 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(unwrap_jso(this)); | 5996 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(unwrap_jso(this)); |
4719 | 5997 |
4720 @DomName('SVGPoint.x') | 5998 @DomName('SVGPoint.x') |
4721 @DocsEditable() | 5999 @DocsEditable() |
4722 void set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(unwrap_jso(th
is), value); | 6000 set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(unwrap_jso(this),
value); |
4723 | 6001 |
4724 @DomName('SVGPoint.y') | 6002 @DomName('SVGPoint.y') |
4725 @DocsEditable() | 6003 @DocsEditable() |
4726 num get y => _blink.BlinkSVGPoint.instance.y_Getter_(unwrap_jso(this)); | 6004 num get y => _blink.BlinkSVGPoint.instance.y_Getter_(unwrap_jso(this)); |
4727 | 6005 |
4728 @DomName('SVGPoint.y') | 6006 @DomName('SVGPoint.y') |
4729 @DocsEditable() | 6007 @DocsEditable() |
4730 void set y(num value) => _blink.BlinkSVGPoint.instance.y_Setter_(unwrap_jso(th
is), value); | 6008 set y(num value) => _blink.BlinkSVGPoint.instance.y_Setter_(unwrap_jso(this),
value); |
4731 | 6009 |
4732 @DomName('SVGPoint.matrixTransform') | 6010 @DomName('SVGPoint.matrixTransform') |
4733 @DocsEditable() | 6011 @DocsEditable() |
4734 Point matrixTransform(Matrix matrix) => _blink.BlinkSVGPoint.instance.matrixTr
ansform_Callback_1_(unwrap_jso(this), unwrap_jso(matrix)); | 6012 Point matrixTransform(Matrix matrix) => wrap_jso(_blink.BlinkSVGPoint.instance
.matrixTransform_Callback_1_(unwrap_jso(this), unwrap_jso(matrix))); |
4735 | 6013 |
4736 } | 6014 } |
4737 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6015 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4738 // for details. All rights reserved. Use of this source code is governed by a | 6016 // for details. All rights reserved. Use of this source code is governed by a |
4739 // BSD-style license that can be found in the LICENSE file. | 6017 // BSD-style license that can be found in the LICENSE file. |
4740 | 6018 |
4741 // WARNING: Do not edit - generated code. | 6019 // WARNING: Do not edit - generated code. |
4742 | 6020 |
4743 | 6021 |
4744 @DocsEditable() | 6022 @DocsEditable() |
4745 @DomName('SVGPointList') | 6023 @DomName('SVGPointList') |
4746 @Unstable() | 6024 @Unstable() |
4747 class PointList extends NativeFieldWrapperClass2 { | 6025 class PointList extends NativeFieldWrapperClass2 { |
4748 // To suppress missing implicit constructor warnings. | 6026 // To suppress missing implicit constructor warnings. |
4749 factory PointList._() { throw new UnsupportedError("Not supported"); } | 6027 factory PointList._() { throw new UnsupportedError("Not supported"); } |
4750 | 6028 |
| 6029 static PointList internalCreatePointList() { |
| 6030 return new PointList._internalWrap(); |
| 6031 } |
| 6032 |
| 6033 js.JsObject blink_jsObject; |
| 6034 |
| 6035 factory PointList._internalWrap() { |
| 6036 return new PointList.internal_(); |
| 6037 } |
| 6038 |
| 6039 PointList.internal_() { } |
| 6040 |
| 6041 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 6042 int get hashCode => unwrap_jso(this).hashCode; |
| 6043 |
4751 @DomName('SVGPointList.length') | 6044 @DomName('SVGPointList.length') |
4752 @DocsEditable() | 6045 @DocsEditable() |
4753 @Experimental() // untriaged | 6046 @Experimental() // untriaged |
4754 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(unwrap_jso(
this)); | 6047 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(unwrap_jso(
this)); |
4755 | 6048 |
4756 @DomName('SVGPointList.numberOfItems') | 6049 @DomName('SVGPointList.numberOfItems') |
4757 @DocsEditable() | 6050 @DocsEditable() |
4758 int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Gette
r_(unwrap_jso(this)); | 6051 int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Gette
r_(unwrap_jso(this)); |
4759 | 6052 |
4760 @DomName('SVGPointList.__setter__') | 6053 @DomName('SVGPointList.__setter__') |
4761 @DocsEditable() | 6054 @DocsEditable() |
4762 @Experimental() // untriaged | 6055 @Experimental() // untriaged |
4763 void __setter__(int index, Point value) => _blink.BlinkSVGPointList.instance.$
__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); | 6056 void __setter__(int index, Point value) => _blink.BlinkSVGPointList.instance.$
__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
4764 | 6057 |
4765 @DomName('SVGPointList.appendItem') | 6058 @DomName('SVGPointList.appendItem') |
4766 @DocsEditable() | 6059 @DocsEditable() |
4767 Point appendItem(Point item) => _blink.BlinkSVGPointList.instance.appendItem_C
allback_1_(unwrap_jso(this), unwrap_jso(item)); | 6060 Point appendItem(Point item) => wrap_jso(_blink.BlinkSVGPointList.instance.app
endItem_Callback_1_(unwrap_jso(this), unwrap_jso(item))); |
4768 | 6061 |
4769 @DomName('SVGPointList.clear') | 6062 @DomName('SVGPointList.clear') |
4770 @DocsEditable() | 6063 @DocsEditable() |
4771 void clear() => _blink.BlinkSVGPointList.instance.clear_Callback_0_(unwrap_jso
(this)); | 6064 void clear() => _blink.BlinkSVGPointList.instance.clear_Callback_0_(unwrap_jso
(this)); |
4772 | 6065 |
4773 @DomName('SVGPointList.getItem') | 6066 @DomName('SVGPointList.getItem') |
4774 @DocsEditable() | 6067 @DocsEditable() |
4775 Point getItem(int index) => _blink.BlinkSVGPointList.instance.getItem_Callback
_1_(unwrap_jso(this), index); | 6068 Point getItem(int index) => wrap_jso(_blink.BlinkSVGPointList.instance.getItem
_Callback_1_(unwrap_jso(this), index)); |
4776 | 6069 |
4777 @DomName('SVGPointList.initialize') | 6070 @DomName('SVGPointList.initialize') |
4778 @DocsEditable() | 6071 @DocsEditable() |
4779 Point initialize(Point item) => _blink.BlinkSVGPointList.instance.initialize_C
allback_1_(unwrap_jso(this), unwrap_jso(item)); | 6072 Point initialize(Point item) => wrap_jso(_blink.BlinkSVGPointList.instance.ini
tialize_Callback_1_(unwrap_jso(this), unwrap_jso(item))); |
4780 | 6073 |
4781 @DomName('SVGPointList.insertItemBefore') | 6074 @DomName('SVGPointList.insertItemBefore') |
4782 @DocsEditable() | 6075 @DocsEditable() |
4783 Point insertItemBefore(Point item, int index) => _blink.BlinkSVGPointList.inst
ance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); | 6076 Point insertItemBefore(Point item, int index) => wrap_jso(_blink.BlinkSVGPoint
List.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item), i
ndex)); |
4784 | 6077 |
4785 @DomName('SVGPointList.removeItem') | 6078 @DomName('SVGPointList.removeItem') |
4786 @DocsEditable() | 6079 @DocsEditable() |
4787 Point removeItem(int index) => _blink.BlinkSVGPointList.instance.removeItem_Ca
llback_1_(unwrap_jso(this), index); | 6080 Point removeItem(int index) => wrap_jso(_blink.BlinkSVGPointList.instance.remo
veItem_Callback_1_(unwrap_jso(this), index)); |
4788 | 6081 |
4789 @DomName('SVGPointList.replaceItem') | 6082 @DomName('SVGPointList.replaceItem') |
4790 @DocsEditable() | 6083 @DocsEditable() |
4791 Point replaceItem(Point item, int index) => _blink.BlinkSVGPointList.instance.
replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); | 6084 Point replaceItem(Point item, int index) => wrap_jso(_blink.BlinkSVGPointList.
instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index)); |
4792 | 6085 |
4793 } | 6086 } |
4794 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6087 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4795 // for details. All rights reserved. Use of this source code is governed by a | 6088 // for details. All rights reserved. Use of this source code is governed by a |
4796 // BSD-style license that can be found in the LICENSE file. | 6089 // BSD-style license that can be found in the LICENSE file. |
4797 | 6090 |
4798 // WARNING: Do not edit - generated code. | 6091 // WARNING: Do not edit - generated code. |
4799 | 6092 |
4800 | 6093 |
4801 @DocsEditable() | 6094 @DocsEditable() |
4802 @DomName('SVGPolygonElement') | 6095 @DomName('SVGPolygonElement') |
4803 @Unstable() | 6096 @Unstable() |
4804 class PolygonElement extends GeometryElement { | 6097 class PolygonElement extends GeometryElement { |
4805 // To suppress missing implicit constructor warnings. | 6098 // To suppress missing implicit constructor warnings. |
4806 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } | 6099 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } |
4807 | 6100 |
4808 @DomName('SVGPolygonElement.SVGPolygonElement') | 6101 @DomName('SVGPolygonElement.SVGPolygonElement') |
4809 @DocsEditable() | 6102 @DocsEditable() |
4810 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
olygon"); | 6103 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
olygon"); |
| 6104 |
| 6105 |
| 6106 static PolygonElement internalCreatePolygonElement() { |
| 6107 return new PolygonElement._internalWrap(); |
| 6108 } |
| 6109 |
| 6110 factory PolygonElement._internalWrap() { |
| 6111 return new PolygonElement.internal_(); |
| 6112 } |
| 6113 |
| 6114 PolygonElement.internal_() : super.internal_(); |
| 6115 |
4811 /** | 6116 /** |
4812 * Constructor instantiated by the DOM when a custom element has been created. | 6117 * Constructor instantiated by the DOM when a custom element has been created. |
4813 * | 6118 * |
4814 * This can only be called by subclasses from their created constructor. | 6119 * This can only be called by subclasses from their created constructor. |
4815 */ | 6120 */ |
4816 PolygonElement.created() : super.created(); | 6121 PolygonElement.created() : super.created(); |
4817 | 6122 |
4818 @DomName('SVGPolygonElement.animatedPoints') | 6123 @DomName('SVGPolygonElement.animatedPoints') |
4819 @DocsEditable() | 6124 @DocsEditable() |
4820 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolygonElement.instanc
e.animatedPoints_Getter_(unwrap_jso(this))); | 6125 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolygonElement.instanc
e.animatedPoints_Getter_(unwrap_jso(this))); |
(...skipping 13 matching lines...) Expand all Loading... |
4834 @DocsEditable() | 6139 @DocsEditable() |
4835 @DomName('SVGPolylineElement') | 6140 @DomName('SVGPolylineElement') |
4836 @Unstable() | 6141 @Unstable() |
4837 class PolylineElement extends GeometryElement { | 6142 class PolylineElement extends GeometryElement { |
4838 // To suppress missing implicit constructor warnings. | 6143 // To suppress missing implicit constructor warnings. |
4839 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } | 6144 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } |
4840 | 6145 |
4841 @DomName('SVGPolylineElement.SVGPolylineElement') | 6146 @DomName('SVGPolylineElement.SVGPolylineElement') |
4842 @DocsEditable() | 6147 @DocsEditable() |
4843 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag("
polyline"); | 6148 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag("
polyline"); |
| 6149 |
| 6150 |
| 6151 static PolylineElement internalCreatePolylineElement() { |
| 6152 return new PolylineElement._internalWrap(); |
| 6153 } |
| 6154 |
| 6155 factory PolylineElement._internalWrap() { |
| 6156 return new PolylineElement.internal_(); |
| 6157 } |
| 6158 |
| 6159 PolylineElement.internal_() : super.internal_(); |
| 6160 |
4844 /** | 6161 /** |
4845 * Constructor instantiated by the DOM when a custom element has been created. | 6162 * Constructor instantiated by the DOM when a custom element has been created. |
4846 * | 6163 * |
4847 * This can only be called by subclasses from their created constructor. | 6164 * This can only be called by subclasses from their created constructor. |
4848 */ | 6165 */ |
4849 PolylineElement.created() : super.created(); | 6166 PolylineElement.created() : super.created(); |
4850 | 6167 |
4851 @DomName('SVGPolylineElement.animatedPoints') | 6168 @DomName('SVGPolylineElement.animatedPoints') |
4852 @DocsEditable() | 6169 @DocsEditable() |
4853 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolylineElement.instan
ce.animatedPoints_Getter_(unwrap_jso(this))); | 6170 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolylineElement.instan
ce.animatedPoints_Getter_(unwrap_jso(this))); |
(...skipping 10 matching lines...) Expand all Loading... |
4864 // WARNING: Do not edit - generated code. | 6181 // WARNING: Do not edit - generated code. |
4865 | 6182 |
4866 | 6183 |
4867 @DocsEditable() | 6184 @DocsEditable() |
4868 @DomName('SVGPreserveAspectRatio') | 6185 @DomName('SVGPreserveAspectRatio') |
4869 @Unstable() | 6186 @Unstable() |
4870 class PreserveAspectRatio extends NativeFieldWrapperClass2 { | 6187 class PreserveAspectRatio extends NativeFieldWrapperClass2 { |
4871 // To suppress missing implicit constructor warnings. | 6188 // To suppress missing implicit constructor warnings. |
4872 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported");
} | 6189 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported");
} |
4873 | 6190 |
| 6191 static PreserveAspectRatio internalCreatePreserveAspectRatio() { |
| 6192 return new PreserveAspectRatio._internalWrap(); |
| 6193 } |
| 6194 |
| 6195 js.JsObject blink_jsObject; |
| 6196 |
| 6197 factory PreserveAspectRatio._internalWrap() { |
| 6198 return new PreserveAspectRatio.internal_(); |
| 6199 } |
| 6200 |
| 6201 PreserveAspectRatio.internal_() { } |
| 6202 |
| 6203 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 6204 int get hashCode => unwrap_jso(this).hashCode; |
| 6205 |
4874 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') | 6206 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') |
4875 @DocsEditable() | 6207 @DocsEditable() |
4876 static const int SVG_MEETORSLICE_MEET = 1; | 6208 static const int SVG_MEETORSLICE_MEET = 1; |
4877 | 6209 |
4878 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE') | 6210 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE') |
4879 @DocsEditable() | 6211 @DocsEditable() |
4880 static const int SVG_MEETORSLICE_SLICE = 2; | 6212 static const int SVG_MEETORSLICE_SLICE = 2; |
4881 | 6213 |
4882 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN') | 6214 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN') |
4883 @DocsEditable() | 6215 @DocsEditable() |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4926 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN') | 6258 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN') |
4927 @DocsEditable() | 6259 @DocsEditable() |
4928 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; | 6260 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; |
4929 | 6261 |
4930 @DomName('SVGPreserveAspectRatio.align') | 6262 @DomName('SVGPreserveAspectRatio.align') |
4931 @DocsEditable() | 6263 @DocsEditable() |
4932 int get align => _blink.BlinkSVGPreserveAspectRatio.instance.align_Getter_(unw
rap_jso(this)); | 6264 int get align => _blink.BlinkSVGPreserveAspectRatio.instance.align_Getter_(unw
rap_jso(this)); |
4933 | 6265 |
4934 @DomName('SVGPreserveAspectRatio.align') | 6266 @DomName('SVGPreserveAspectRatio.align') |
4935 @DocsEditable() | 6267 @DocsEditable() |
4936 void set align(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.align
_Setter_(unwrap_jso(this), value); | 6268 set align(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.align_Sett
er_(unwrap_jso(this), value); |
4937 | 6269 |
4938 @DomName('SVGPreserveAspectRatio.meetOrSlice') | 6270 @DomName('SVGPreserveAspectRatio.meetOrSlice') |
4939 @DocsEditable() | 6271 @DocsEditable() |
4940 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.instance.meetOrSlice
_Getter_(unwrap_jso(this)); | 6272 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.instance.meetOrSlice
_Getter_(unwrap_jso(this)); |
4941 | 6273 |
4942 @DomName('SVGPreserveAspectRatio.meetOrSlice') | 6274 @DomName('SVGPreserveAspectRatio.meetOrSlice') |
4943 @DocsEditable() | 6275 @DocsEditable() |
4944 void set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.instance
.meetOrSlice_Setter_(unwrap_jso(this), value); | 6276 set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.meet
OrSlice_Setter_(unwrap_jso(this), value); |
4945 | 6277 |
4946 } | 6278 } |
4947 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6279 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4948 // for details. All rights reserved. Use of this source code is governed by a | 6280 // for details. All rights reserved. Use of this source code is governed by a |
4949 // BSD-style license that can be found in the LICENSE file. | 6281 // BSD-style license that can be found in the LICENSE file. |
4950 | 6282 |
4951 // WARNING: Do not edit - generated code. | 6283 // WARNING: Do not edit - generated code. |
4952 | 6284 |
4953 | 6285 |
4954 @DocsEditable() | 6286 @DocsEditable() |
4955 @DomName('SVGRadialGradientElement') | 6287 @DomName('SVGRadialGradientElement') |
4956 @Unstable() | 6288 @Unstable() |
4957 class RadialGradientElement extends _GradientElement { | 6289 class RadialGradientElement extends _GradientElement { |
4958 // To suppress missing implicit constructor warnings. | 6290 // To suppress missing implicit constructor warnings. |
4959 factory RadialGradientElement._() { throw new UnsupportedError("Not supported"
); } | 6291 factory RadialGradientElement._() { throw new UnsupportedError("Not supported"
); } |
4960 | 6292 |
4961 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') | 6293 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') |
4962 @DocsEditable() | 6294 @DocsEditable() |
4963 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("radialGradient"); | 6295 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("radialGradient"); |
| 6296 |
| 6297 |
| 6298 static RadialGradientElement internalCreateRadialGradientElement() { |
| 6299 return new RadialGradientElement._internalWrap(); |
| 6300 } |
| 6301 |
| 6302 factory RadialGradientElement._internalWrap() { |
| 6303 return new RadialGradientElement.internal_(); |
| 6304 } |
| 6305 |
| 6306 RadialGradientElement.internal_() : super.internal_(); |
| 6307 |
4964 /** | 6308 /** |
4965 * Constructor instantiated by the DOM when a custom element has been created. | 6309 * Constructor instantiated by the DOM when a custom element has been created. |
4966 * | 6310 * |
4967 * This can only be called by subclasses from their created constructor. | 6311 * This can only be called by subclasses from their created constructor. |
4968 */ | 6312 */ |
4969 RadialGradientElement.created() : super.created(); | 6313 RadialGradientElement.created() : super.created(); |
4970 | 6314 |
4971 @DomName('SVGRadialGradientElement.cx') | 6315 @DomName('SVGRadialGradientElement.cx') |
4972 @DocsEditable() | 6316 @DocsEditable() |
4973 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc
e.cx_Getter_(unwrap_jso(this))); | 6317 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc
e.cx_Getter_(unwrap_jso(this))); |
(...skipping 26 matching lines...) Expand all Loading... |
5000 // WARNING: Do not edit - generated code. | 6344 // WARNING: Do not edit - generated code. |
5001 | 6345 |
5002 | 6346 |
5003 @DocsEditable() | 6347 @DocsEditable() |
5004 @DomName('SVGRect') | 6348 @DomName('SVGRect') |
5005 @Unstable() | 6349 @Unstable() |
5006 class Rect extends NativeFieldWrapperClass2 { | 6350 class Rect extends NativeFieldWrapperClass2 { |
5007 // To suppress missing implicit constructor warnings. | 6351 // To suppress missing implicit constructor warnings. |
5008 factory Rect._() { throw new UnsupportedError("Not supported"); } | 6352 factory Rect._() { throw new UnsupportedError("Not supported"); } |
5009 | 6353 |
| 6354 static Rect internalCreateRect() { |
| 6355 return new Rect._internalWrap(); |
| 6356 } |
| 6357 |
| 6358 js.JsObject blink_jsObject; |
| 6359 |
| 6360 factory Rect._internalWrap() { |
| 6361 return new Rect.internal_(); |
| 6362 } |
| 6363 |
| 6364 Rect.internal_() { } |
| 6365 |
| 6366 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 6367 int get hashCode => unwrap_jso(this).hashCode; |
| 6368 |
5010 @DomName('SVGRect.height') | 6369 @DomName('SVGRect.height') |
5011 @DocsEditable() | 6370 @DocsEditable() |
5012 num get height => _blink.BlinkSVGRect.instance.height_Getter_(unwrap_jso(this)
); | 6371 num get height => _blink.BlinkSVGRect.instance.height_Getter_(unwrap_jso(this)
); |
5013 | 6372 |
5014 @DomName('SVGRect.height') | 6373 @DomName('SVGRect.height') |
5015 @DocsEditable() | 6374 @DocsEditable() |
5016 void set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(unwr
ap_jso(this), value); | 6375 set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(unwrap_js
o(this), value); |
5017 | 6376 |
5018 @DomName('SVGRect.width') | 6377 @DomName('SVGRect.width') |
5019 @DocsEditable() | 6378 @DocsEditable() |
5020 num get width => _blink.BlinkSVGRect.instance.width_Getter_(unwrap_jso(this)); | 6379 num get width => _blink.BlinkSVGRect.instance.width_Getter_(unwrap_jso(this)); |
5021 | 6380 |
5022 @DomName('SVGRect.width') | 6381 @DomName('SVGRect.width') |
5023 @DocsEditable() | 6382 @DocsEditable() |
5024 void set width(num value) => _blink.BlinkSVGRect.instance.width_Setter_(unwrap
_jso(this), value); | 6383 set width(num value) => _blink.BlinkSVGRect.instance.width_Setter_(unwrap_jso(
this), value); |
5025 | 6384 |
5026 @DomName('SVGRect.x') | 6385 @DomName('SVGRect.x') |
5027 @DocsEditable() | 6386 @DocsEditable() |
5028 num get x => _blink.BlinkSVGRect.instance.x_Getter_(unwrap_jso(this)); | 6387 num get x => _blink.BlinkSVGRect.instance.x_Getter_(unwrap_jso(this)); |
5029 | 6388 |
5030 @DomName('SVGRect.x') | 6389 @DomName('SVGRect.x') |
5031 @DocsEditable() | 6390 @DocsEditable() |
5032 void set x(num value) => _blink.BlinkSVGRect.instance.x_Setter_(unwrap_jso(thi
s), value); | 6391 set x(num value) => _blink.BlinkSVGRect.instance.x_Setter_(unwrap_jso(this), v
alue); |
5033 | 6392 |
5034 @DomName('SVGRect.y') | 6393 @DomName('SVGRect.y') |
5035 @DocsEditable() | 6394 @DocsEditable() |
5036 num get y => _blink.BlinkSVGRect.instance.y_Getter_(unwrap_jso(this)); | 6395 num get y => _blink.BlinkSVGRect.instance.y_Getter_(unwrap_jso(this)); |
5037 | 6396 |
5038 @DomName('SVGRect.y') | 6397 @DomName('SVGRect.y') |
5039 @DocsEditable() | 6398 @DocsEditable() |
5040 void set y(num value) => _blink.BlinkSVGRect.instance.y_Setter_(unwrap_jso(thi
s), value); | 6399 set y(num value) => _blink.BlinkSVGRect.instance.y_Setter_(unwrap_jso(this), v
alue); |
5041 | 6400 |
5042 } | 6401 } |
5043 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6402 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
5044 // for details. All rights reserved. Use of this source code is governed by a | 6403 // for details. All rights reserved. Use of this source code is governed by a |
5045 // BSD-style license that can be found in the LICENSE file. | 6404 // BSD-style license that can be found in the LICENSE file. |
5046 | 6405 |
5047 // WARNING: Do not edit - generated code. | 6406 // WARNING: Do not edit - generated code. |
5048 | 6407 |
5049 | 6408 |
5050 @DocsEditable() | 6409 @DocsEditable() |
5051 @DomName('SVGRectElement') | 6410 @DomName('SVGRectElement') |
5052 @Unstable() | 6411 @Unstable() |
5053 class RectElement extends GeometryElement { | 6412 class RectElement extends GeometryElement { |
5054 // To suppress missing implicit constructor warnings. | 6413 // To suppress missing implicit constructor warnings. |
5055 factory RectElement._() { throw new UnsupportedError("Not supported"); } | 6414 factory RectElement._() { throw new UnsupportedError("Not supported"); } |
5056 | 6415 |
5057 @DomName('SVGRectElement.SVGRectElement') | 6416 @DomName('SVGRectElement.SVGRectElement') |
5058 @DocsEditable() | 6417 @DocsEditable() |
5059 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect
"); | 6418 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect
"); |
| 6419 |
| 6420 |
| 6421 static RectElement internalCreateRectElement() { |
| 6422 return new RectElement._internalWrap(); |
| 6423 } |
| 6424 |
| 6425 factory RectElement._internalWrap() { |
| 6426 return new RectElement.internal_(); |
| 6427 } |
| 6428 |
| 6429 RectElement.internal_() : super.internal_(); |
| 6430 |
5060 /** | 6431 /** |
5061 * Constructor instantiated by the DOM when a custom element has been created. | 6432 * Constructor instantiated by the DOM when a custom element has been created. |
5062 * | 6433 * |
5063 * This can only be called by subclasses from their created constructor. | 6434 * This can only be called by subclasses from their created constructor. |
5064 */ | 6435 */ |
5065 RectElement.created() : super.created(); | 6436 RectElement.created() : super.created(); |
5066 | 6437 |
5067 @DomName('SVGRectElement.height') | 6438 @DomName('SVGRectElement.height') |
5068 @DocsEditable() | 6439 @DocsEditable() |
5069 AnimatedLength get height => wrap_jso(_blink.BlinkSVGRectElement.instance.heig
ht_Getter_(unwrap_jso(this))); | 6440 AnimatedLength get height => wrap_jso(_blink.BlinkSVGRectElement.instance.heig
ht_Getter_(unwrap_jso(this))); |
(...skipping 26 matching lines...) Expand all Loading... |
5096 // WARNING: Do not edit - generated code. | 6467 // WARNING: Do not edit - generated code. |
5097 | 6468 |
5098 | 6469 |
5099 @DocsEditable() | 6470 @DocsEditable() |
5100 @DomName('SVGRenderingIntent') | 6471 @DomName('SVGRenderingIntent') |
5101 @Unstable() | 6472 @Unstable() |
5102 class RenderingIntent extends NativeFieldWrapperClass2 { | 6473 class RenderingIntent extends NativeFieldWrapperClass2 { |
5103 // To suppress missing implicit constructor warnings. | 6474 // To suppress missing implicit constructor warnings. |
5104 factory RenderingIntent._() { throw new UnsupportedError("Not supported"); } | 6475 factory RenderingIntent._() { throw new UnsupportedError("Not supported"); } |
5105 | 6476 |
| 6477 static RenderingIntent internalCreateRenderingIntent() { |
| 6478 return new RenderingIntent._internalWrap(); |
| 6479 } |
| 6480 |
| 6481 js.JsObject blink_jsObject; |
| 6482 |
| 6483 factory RenderingIntent._internalWrap() { |
| 6484 return new RenderingIntent.internal_(); |
| 6485 } |
| 6486 |
| 6487 RenderingIntent.internal_() { } |
| 6488 |
| 6489 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 6490 int get hashCode => unwrap_jso(this).hashCode; |
| 6491 |
5106 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') | 6492 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') |
5107 @DocsEditable() | 6493 @DocsEditable() |
5108 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; | 6494 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; |
5109 | 6495 |
5110 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO') | 6496 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO') |
5111 @DocsEditable() | 6497 @DocsEditable() |
5112 static const int RENDERING_INTENT_AUTO = 1; | 6498 static const int RENDERING_INTENT_AUTO = 1; |
5113 | 6499 |
5114 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL') | 6500 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL') |
5115 @DocsEditable() | 6501 @DocsEditable() |
(...skipping 22 matching lines...) Expand all Loading... |
5138 @DocsEditable() | 6524 @DocsEditable() |
5139 @DomName('SVGScriptElement') | 6525 @DomName('SVGScriptElement') |
5140 @Unstable() | 6526 @Unstable() |
5141 class ScriptElement extends SvgElement implements UriReference { | 6527 class ScriptElement extends SvgElement implements UriReference { |
5142 // To suppress missing implicit constructor warnings. | 6528 // To suppress missing implicit constructor warnings. |
5143 factory ScriptElement._() { throw new UnsupportedError("Not supported"); } | 6529 factory ScriptElement._() { throw new UnsupportedError("Not supported"); } |
5144 | 6530 |
5145 @DomName('SVGScriptElement.SVGScriptElement') | 6531 @DomName('SVGScriptElement.SVGScriptElement') |
5146 @DocsEditable() | 6532 @DocsEditable() |
5147 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc
ript"); | 6533 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc
ript"); |
| 6534 |
| 6535 |
| 6536 static ScriptElement internalCreateScriptElement() { |
| 6537 return new ScriptElement._internalWrap(); |
| 6538 } |
| 6539 |
| 6540 factory ScriptElement._internalWrap() { |
| 6541 return new ScriptElement.internal_(); |
| 6542 } |
| 6543 |
| 6544 ScriptElement.internal_() : super.internal_(); |
| 6545 |
5148 /** | 6546 /** |
5149 * Constructor instantiated by the DOM when a custom element has been created. | 6547 * Constructor instantiated by the DOM when a custom element has been created. |
5150 * | 6548 * |
5151 * This can only be called by subclasses from their created constructor. | 6549 * This can only be called by subclasses from their created constructor. |
5152 */ | 6550 */ |
5153 ScriptElement.created() : super.created(); | 6551 ScriptElement.created() : super.created(); |
5154 | 6552 |
5155 @DomName('SVGScriptElement.type') | 6553 @DomName('SVGScriptElement.type') |
5156 @DocsEditable() | 6554 @DocsEditable() |
5157 String get type => _blink.BlinkSVGScriptElement.instance.type_Getter_(unwrap_j
so(this)); | 6555 String get type => _blink.BlinkSVGScriptElement.instance.type_Getter_(unwrap_j
so(this)); |
5158 | 6556 |
5159 @DomName('SVGScriptElement.type') | 6557 @DomName('SVGScriptElement.type') |
5160 @DocsEditable() | 6558 @DocsEditable() |
5161 void set type(String value) => _blink.BlinkSVGScriptElement.instance.type_Sett
er_(unwrap_jso(this), value); | 6559 set type(String value) => _blink.BlinkSVGScriptElement.instance.type_Setter_(u
nwrap_jso(this), value); |
5162 | 6560 |
5163 @DomName('SVGScriptElement.href') | 6561 @DomName('SVGScriptElement.href') |
5164 @DocsEditable() | 6562 @DocsEditable() |
5165 AnimatedString get href => wrap_jso(_blink.BlinkSVGScriptElement.instance.href
_Getter_(unwrap_jso(this))); | 6563 AnimatedString get href => wrap_jso(_blink.BlinkSVGScriptElement.instance.href
_Getter_(unwrap_jso(this))); |
5166 | 6564 |
5167 } | 6565 } |
5168 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6566 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
5169 // for details. All rights reserved. Use of this source code is governed by a | 6567 // for details. All rights reserved. Use of this source code is governed by a |
5170 // BSD-style license that can be found in the LICENSE file. | 6568 // BSD-style license that can be found in the LICENSE file. |
5171 | 6569 |
5172 // WARNING: Do not edit - generated code. | 6570 // WARNING: Do not edit - generated code. |
5173 | 6571 |
5174 | 6572 |
5175 @DocsEditable() | 6573 @DocsEditable() |
5176 @DomName('SVGSetElement') | 6574 @DomName('SVGSetElement') |
5177 @SupportedBrowser(SupportedBrowser.CHROME) | 6575 @SupportedBrowser(SupportedBrowser.CHROME) |
5178 @SupportedBrowser(SupportedBrowser.FIREFOX) | 6576 @SupportedBrowser(SupportedBrowser.FIREFOX) |
5179 @SupportedBrowser(SupportedBrowser.SAFARI) | 6577 @SupportedBrowser(SupportedBrowser.SAFARI) |
5180 @Unstable() | 6578 @Unstable() |
5181 class SetElement extends AnimationElement { | 6579 class SetElement extends AnimationElement { |
5182 // To suppress missing implicit constructor warnings. | 6580 // To suppress missing implicit constructor warnings. |
5183 factory SetElement._() { throw new UnsupportedError("Not supported"); } | 6581 factory SetElement._() { throw new UnsupportedError("Not supported"); } |
5184 | 6582 |
5185 @DomName('SVGSetElement.SVGSetElement') | 6583 @DomName('SVGSetElement.SVGSetElement') |
5186 @DocsEditable() | 6584 @DocsEditable() |
5187 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set")
; | 6585 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set")
; |
| 6586 |
| 6587 |
| 6588 static SetElement internalCreateSetElement() { |
| 6589 return new SetElement._internalWrap(); |
| 6590 } |
| 6591 |
| 6592 factory SetElement._internalWrap() { |
| 6593 return new SetElement.internal_(); |
| 6594 } |
| 6595 |
| 6596 SetElement.internal_() : super.internal_(); |
| 6597 |
5188 /** | 6598 /** |
5189 * Constructor instantiated by the DOM when a custom element has been created. | 6599 * Constructor instantiated by the DOM when a custom element has been created. |
5190 * | 6600 * |
5191 * This can only be called by subclasses from their created constructor. | 6601 * This can only be called by subclasses from their created constructor. |
5192 */ | 6602 */ |
5193 SetElement.created() : super.created(); | 6603 SetElement.created() : super.created(); |
5194 | 6604 |
5195 /// Checks if this type is supported on the current platform. | 6605 /// Checks if this type is supported on the current platform. |
5196 static bool get supported => true; | 6606 static bool get supported => true; |
5197 | 6607 |
5198 } | 6608 } |
5199 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6609 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
5200 // for details. All rights reserved. Use of this source code is governed by a | 6610 // for details. All rights reserved. Use of this source code is governed by a |
5201 // BSD-style license that can be found in the LICENSE file. | 6611 // BSD-style license that can be found in the LICENSE file. |
5202 | 6612 |
5203 // WARNING: Do not edit - generated code. | 6613 // WARNING: Do not edit - generated code. |
5204 | 6614 |
5205 | 6615 |
5206 @DocsEditable() | 6616 @DocsEditable() |
5207 @DomName('SVGStopElement') | 6617 @DomName('SVGStopElement') |
5208 @Unstable() | 6618 @Unstable() |
5209 class StopElement extends SvgElement { | 6619 class StopElement extends SvgElement { |
5210 // To suppress missing implicit constructor warnings. | 6620 // To suppress missing implicit constructor warnings. |
5211 factory StopElement._() { throw new UnsupportedError("Not supported"); } | 6621 factory StopElement._() { throw new UnsupportedError("Not supported"); } |
5212 | 6622 |
5213 @DomName('SVGStopElement.SVGStopElement') | 6623 @DomName('SVGStopElement.SVGStopElement') |
5214 @DocsEditable() | 6624 @DocsEditable() |
5215 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop
"); | 6625 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop
"); |
| 6626 |
| 6627 |
| 6628 static StopElement internalCreateStopElement() { |
| 6629 return new StopElement._internalWrap(); |
| 6630 } |
| 6631 |
| 6632 factory StopElement._internalWrap() { |
| 6633 return new StopElement.internal_(); |
| 6634 } |
| 6635 |
| 6636 StopElement.internal_() : super.internal_(); |
| 6637 |
5216 /** | 6638 /** |
5217 * Constructor instantiated by the DOM when a custom element has been created. | 6639 * Constructor instantiated by the DOM when a custom element has been created. |
5218 * | 6640 * |
5219 * This can only be called by subclasses from their created constructor. | 6641 * This can only be called by subclasses from their created constructor. |
5220 */ | 6642 */ |
5221 StopElement.created() : super.created(); | 6643 StopElement.created() : super.created(); |
5222 | 6644 |
5223 @DomName('SVGStopElement.offset') | 6645 @DomName('SVGStopElement.offset') |
5224 @DocsEditable() | 6646 @DocsEditable() |
5225 AnimatedNumber get gradientOffset => wrap_jso(_blink.BlinkSVGStopElement.insta
nce.offset_Getter_(unwrap_jso(this))); | 6647 AnimatedNumber get gradientOffset => wrap_jso(_blink.BlinkSVGStopElement.insta
nce.offset_Getter_(unwrap_jso(this))); |
5226 | 6648 |
5227 } | 6649 } |
5228 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6650 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
5229 // for details. All rights reserved. Use of this source code is governed by a | 6651 // for details. All rights reserved. Use of this source code is governed by a |
5230 // BSD-style license that can be found in the LICENSE file. | 6652 // BSD-style license that can be found in the LICENSE file. |
5231 | 6653 |
5232 // WARNING: Do not edit - generated code. | 6654 // WARNING: Do not edit - generated code. |
5233 | 6655 |
5234 | 6656 |
5235 @DocsEditable() | 6657 @DocsEditable() |
5236 @DomName('SVGStringList') | 6658 @DomName('SVGStringList') |
5237 @Unstable() | 6659 @Unstable() |
5238 class StringList extends NativeFieldWrapperClass2 with ListMixin<String>, Immuta
bleListMixin<String> implements List<String> { | 6660 class StringList extends JsoNativeFieldWrapper with ListMixin<String>, Immutable
ListMixin<String> implements List<String> { |
5239 // To suppress missing implicit constructor warnings. | 6661 // To suppress missing implicit constructor warnings. |
5240 factory StringList._() { throw new UnsupportedError("Not supported"); } | 6662 factory StringList._() { throw new UnsupportedError("Not supported"); } |
5241 | 6663 |
| 6664 static StringList internalCreateStringList() { |
| 6665 return new StringList._internalWrap(); |
| 6666 } |
| 6667 |
| 6668 js.JsObject blink_jsObject; |
| 6669 |
| 6670 factory StringList._internalWrap() { |
| 6671 return new StringList.internal_(); |
| 6672 } |
| 6673 |
| 6674 StringList.internal_() { } |
| 6675 |
| 6676 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 6677 int get hashCode => unwrap_jso(this).hashCode; |
| 6678 |
5242 @DomName('SVGStringList.length') | 6679 @DomName('SVGStringList.length') |
5243 @DocsEditable() | 6680 @DocsEditable() |
5244 @Experimental() // untriaged | 6681 @Experimental() // untriaged |
5245 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(unwrap_jso
(this)); | 6682 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(unwrap_jso
(this)); |
5246 | 6683 |
5247 @DomName('SVGStringList.numberOfItems') | 6684 @DomName('SVGStringList.numberOfItems') |
5248 @DocsEditable() | 6685 @DocsEditable() |
5249 int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); | 6686 int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); |
5250 | 6687 |
5251 String operator[](int index) { | 6688 String operator[](int index) { |
5252 if (index < 0 || index >= length) | 6689 if (index < 0 || index >= length) |
5253 throw new RangeError.index(index, this); | 6690 throw new RangeError.index(index, this); |
5254 return getItem(index); | 6691 return getItem(index); |
5255 } | 6692 } |
5256 | 6693 |
5257 void operator[]=(int index, String value) { | 6694 void operator[]=(int index, String value) { |
5258 throw new UnsupportedError("Cannot assign element of immutable List."); | 6695 throw new UnsupportedError("Cannot assign element of immutable List."); |
5259 } | 6696 } |
5260 // -- start List<String> mixins. | 6697 // -- start List<String> mixins. |
5261 // String is the element type. | 6698 // String is the element type. |
5262 | 6699 |
5263 | 6700 |
5264 void set length(int value) { | 6701 set length(int value) { |
5265 throw new UnsupportedError("Cannot resize immutable List."); | 6702 throw new UnsupportedError("Cannot resize immutable List."); |
5266 } | 6703 } |
5267 | 6704 |
5268 String get first { | 6705 String get first { |
5269 if (this.length > 0) { | 6706 if (this.length > 0) { |
5270 return getItem(0); | 6707 return getItem(0); |
5271 } | 6708 } |
5272 throw new StateError("No elements"); | 6709 throw new StateError("No elements"); |
5273 } | 6710 } |
5274 | 6711 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5337 @DomName('SVGStyleElement') | 6774 @DomName('SVGStyleElement') |
5338 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable | 6775 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable |
5339 @Experimental() // nonstandard | 6776 @Experimental() // nonstandard |
5340 class StyleElement extends SvgElement { | 6777 class StyleElement extends SvgElement { |
5341 // To suppress missing implicit constructor warnings. | 6778 // To suppress missing implicit constructor warnings. |
5342 factory StyleElement._() { throw new UnsupportedError("Not supported"); } | 6779 factory StyleElement._() { throw new UnsupportedError("Not supported"); } |
5343 | 6780 |
5344 @DomName('SVGStyleElement.SVGStyleElement') | 6781 @DomName('SVGStyleElement.SVGStyleElement') |
5345 @DocsEditable() | 6782 @DocsEditable() |
5346 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty
le"); | 6783 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty
le"); |
| 6784 |
| 6785 |
| 6786 static StyleElement internalCreateStyleElement() { |
| 6787 return new StyleElement._internalWrap(); |
| 6788 } |
| 6789 |
| 6790 factory StyleElement._internalWrap() { |
| 6791 return new StyleElement.internal_(); |
| 6792 } |
| 6793 |
| 6794 StyleElement.internal_() : super.internal_(); |
| 6795 |
5347 /** | 6796 /** |
5348 * Constructor instantiated by the DOM when a custom element has been created. | 6797 * Constructor instantiated by the DOM when a custom element has been created. |
5349 * | 6798 * |
5350 * This can only be called by subclasses from their created constructor. | 6799 * This can only be called by subclasses from their created constructor. |
5351 */ | 6800 */ |
5352 StyleElement.created() : super.created(); | 6801 StyleElement.created() : super.created(); |
5353 | 6802 |
5354 @DomName('SVGStyleElement.disabled') | 6803 @DomName('SVGStyleElement.disabled') |
5355 @DocsEditable() | 6804 @DocsEditable() |
5356 bool get disabled => _blink.BlinkSVGStyleElement.instance.disabled_Getter_(unw
rap_jso(this)); | 6805 bool get disabled => _blink.BlinkSVGStyleElement.instance.disabled_Getter_(unw
rap_jso(this)); |
5357 | 6806 |
5358 @DomName('SVGStyleElement.disabled') | 6807 @DomName('SVGStyleElement.disabled') |
5359 @DocsEditable() | 6808 @DocsEditable() |
5360 void set disabled(bool value) => _blink.BlinkSVGStyleElement.instance.disabled
_Setter_(unwrap_jso(this), value); | 6809 set disabled(bool value) => _blink.BlinkSVGStyleElement.instance.disabled_Sett
er_(unwrap_jso(this), value); |
5361 | 6810 |
5362 @DomName('SVGStyleElement.media') | 6811 @DomName('SVGStyleElement.media') |
5363 @DocsEditable() | 6812 @DocsEditable() |
5364 String get media => _blink.BlinkSVGStyleElement.instance.media_Getter_(unwrap_
jso(this)); | 6813 String get media => _blink.BlinkSVGStyleElement.instance.media_Getter_(unwrap_
jso(this)); |
5365 | 6814 |
5366 @DomName('SVGStyleElement.media') | 6815 @DomName('SVGStyleElement.media') |
5367 @DocsEditable() | 6816 @DocsEditable() |
5368 void set media(String value) => _blink.BlinkSVGStyleElement.instance.media_Set
ter_(unwrap_jso(this), value); | 6817 set media(String value) => _blink.BlinkSVGStyleElement.instance.media_Setter_(
unwrap_jso(this), value); |
5369 | 6818 |
5370 @DomName('SVGStyleElement.sheet') | 6819 @DomName('SVGStyleElement.sheet') |
5371 @DocsEditable() | 6820 @DocsEditable() |
5372 @Experimental() // untriaged | 6821 @Experimental() // untriaged |
5373 StyleSheet get sheet => wrap_jso(_blink.BlinkSVGStyleElement.instance.sheet_Ge
tter_(unwrap_jso(this))); | 6822 StyleSheet get sheet => wrap_jso(_blink.BlinkSVGStyleElement.instance.sheet_Ge
tter_(unwrap_jso(this))); |
5374 | 6823 |
5375 @DomName('SVGStyleElement.title') | 6824 @DomName('SVGStyleElement.title') |
5376 @DocsEditable() | 6825 @DocsEditable() |
5377 String get title => _blink.BlinkSVGStyleElement.instance.title_Getter_(unwrap_
jso(this)); | 6826 String get title => _blink.BlinkSVGStyleElement.instance.title_Getter_(unwrap_
jso(this)); |
5378 | 6827 |
5379 @DomName('SVGStyleElement.title') | 6828 @DomName('SVGStyleElement.title') |
5380 @DocsEditable() | 6829 @DocsEditable() |
5381 void set title(String value) => _blink.BlinkSVGStyleElement.instance.title_Set
ter_(unwrap_jso(this), value); | 6830 set title(String value) => _blink.BlinkSVGStyleElement.instance.title_Setter_(
unwrap_jso(this), value); |
5382 | 6831 |
5383 @DomName('SVGStyleElement.type') | 6832 @DomName('SVGStyleElement.type') |
5384 @DocsEditable() | 6833 @DocsEditable() |
5385 String get type => _blink.BlinkSVGStyleElement.instance.type_Getter_(unwrap_js
o(this)); | 6834 String get type => _blink.BlinkSVGStyleElement.instance.type_Getter_(unwrap_js
o(this)); |
5386 | 6835 |
5387 @DomName('SVGStyleElement.type') | 6836 @DomName('SVGStyleElement.type') |
5388 @DocsEditable() | 6837 @DocsEditable() |
5389 void set type(String value) => _blink.BlinkSVGStyleElement.instance.type_Sette
r_(unwrap_jso(this), value); | 6838 set type(String value) => _blink.BlinkSVGStyleElement.instance.type_Setter_(un
wrap_jso(this), value); |
5390 | 6839 |
5391 } | 6840 } |
5392 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 6841 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
5393 // for details. All rights reserved. Use of this source code is governed by a | 6842 // for details. All rights reserved. Use of this source code is governed by a |
5394 // BSD-style license that can be found in the LICENSE file. | 6843 // BSD-style license that can be found in the LICENSE file. |
5395 | 6844 |
5396 | 6845 |
5397 class _AttributeClassSet extends CssClassSetImpl { | 6846 class _AttributeClassSet extends CssClassSetImpl { |
5398 final Element _element; | 6847 final Element _element; |
5399 | 6848 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5443 } | 6892 } |
5444 var fragment = parentElement.createFragment(svg, validator: validator, | 6893 var fragment = parentElement.createFragment(svg, validator: validator, |
5445 treeSanitizer: treeSanitizer); | 6894 treeSanitizer: treeSanitizer); |
5446 return fragment.nodes.where((e) => e is SvgElement).single; | 6895 return fragment.nodes.where((e) => e is SvgElement).single; |
5447 } | 6896 } |
5448 | 6897 |
5449 CssClassSet get classes => new _AttributeClassSet(this); | 6898 CssClassSet get classes => new _AttributeClassSet(this); |
5450 | 6899 |
5451 List<Element> get children => new FilteredElementList(this); | 6900 List<Element> get children => new FilteredElementList(this); |
5452 | 6901 |
5453 void set children(List<Element> value) { | 6902 set children(List<Element> value) { |
5454 final children = this.children; | 6903 final children = this.children; |
5455 children.clear(); | 6904 children.clear(); |
5456 children.addAll(value); | 6905 children.addAll(value); |
5457 } | 6906 } |
5458 | 6907 |
5459 String get outerHtml { | 6908 String get outerHtml { |
5460 final container = new Element.tag("div"); | 6909 final container = new Element.tag("div"); |
5461 final SvgElement cloned = this.clone(true); | 6910 final SvgElement cloned = this.clone(true); |
5462 container.children.add(cloned); | 6911 container.children.add(cloned); |
5463 return container.innerHtml; | 6912 return container.innerHtml; |
5464 } | 6913 } |
5465 | 6914 |
5466 String get innerHtml { | 6915 String get innerHtml { |
5467 final container = new Element.tag("div"); | 6916 final container = new Element.tag("div"); |
5468 final SvgElement cloned = this.clone(true); | 6917 final SvgElement cloned = this.clone(true); |
5469 container.children.addAll(cloned.children); | 6918 container.children.addAll(cloned.children); |
5470 return container.innerHtml; | 6919 return container.innerHtml; |
5471 } | 6920 } |
5472 | 6921 |
5473 void set innerHtml(String value) { | 6922 set innerHtml(String value) { |
5474 this.setInnerHtml(value); | 6923 this.setInnerHtml(value); |
5475 } | 6924 } |
5476 | 6925 |
5477 DocumentFragment createFragment(String svg, | 6926 DocumentFragment createFragment(String svg, |
5478 {NodeValidator validator, NodeTreeSanitizer treeSanitizer}) { | 6927 {NodeValidator validator, NodeTreeSanitizer treeSanitizer}) { |
5479 | 6928 |
5480 if (treeSanitizer == null) { | 6929 if (treeSanitizer == null) { |
5481 if (validator == null) { | 6930 if (validator == null) { |
5482 validator = new NodeValidatorBuilder.common() | 6931 validator = new NodeValidatorBuilder.common() |
5483 ..allowSvg(); | 6932 ..allowSvg(); |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5528 | 6977 |
5529 /** | 6978 /** |
5530 * Checks to see if the SVG element type is supported by the current platform. | 6979 * Checks to see if the SVG element type is supported by the current platform. |
5531 * | 6980 * |
5532 * The tag should be a valid SVG element tag name. | 6981 * The tag should be a valid SVG element tag name. |
5533 */ | 6982 */ |
5534 static bool isTagSupported(String tag) { | 6983 static bool isTagSupported(String tag) { |
5535 var e = new SvgElement.tag(tag); | 6984 var e = new SvgElement.tag(tag); |
5536 return e is SvgElement && !(e is UnknownElement); | 6985 return e is SvgElement && !(e is UnknownElement); |
5537 } | 6986 } |
| 6987 |
| 6988 set _svgClassName(AnimatedString value) => |
| 6989 _blink.BlinkSVGElement.instance.className_Setter_(unwrap_jso(this), unwrap
_jso(value)); |
| 6990 |
| 6991 String get className => _svgClassName.baseVal; |
| 6992 |
| 6993 // Unbelievable hack. We can't create an SvgAnimatedString, but we can get |
| 6994 // the existing one and change its baseVal. Then we call the blink setter dire
ctly |
| 6995 // TODO(alanknight): Handle suppressing the SVGAnimated<*> better |
| 6996 set className(String s) { |
| 6997 var oldClass = _svgClassName; |
| 6998 oldClass.baseVal = s; |
| 6999 _svgClassName = oldClass; |
| 7000 } |
5538 // To suppress missing implicit constructor warnings. | 7001 // To suppress missing implicit constructor warnings. |
5539 factory SvgElement._() { throw new UnsupportedError("Not supported"); } | 7002 factory SvgElement._() { throw new UnsupportedError("Not supported"); } |
5540 | 7003 |
5541 @DomName('SVGElement.abortEvent') | 7004 @DomName('SVGElement.abortEvent') |
5542 @DocsEditable() | 7005 @DocsEditable() |
5543 @Experimental() // untriaged | 7006 @Experimental() // untriaged |
5544 static const EventStreamProvider<Event> abortEvent = const EventStreamProvider
<Event>('abort'); | 7007 static const EventStreamProvider<Event> abortEvent = const EventStreamProvider
<Event>('abort'); |
5545 | 7008 |
5546 @DomName('SVGElement.blurEvent') | 7009 @DomName('SVGElement.blurEvent') |
5547 @DocsEditable() | 7010 @DocsEditable() |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5790 | 7253 |
5791 @DomName('SVGElement.volumechangeEvent') | 7254 @DomName('SVGElement.volumechangeEvent') |
5792 @DocsEditable() | 7255 @DocsEditable() |
5793 @Experimental() // untriaged | 7256 @Experimental() // untriaged |
5794 static const EventStreamProvider<Event> volumeChangeEvent = const EventStreamP
rovider<Event>('volumechange'); | 7257 static const EventStreamProvider<Event> volumeChangeEvent = const EventStreamP
rovider<Event>('volumechange'); |
5795 | 7258 |
5796 @DomName('SVGElement.waitingEvent') | 7259 @DomName('SVGElement.waitingEvent') |
5797 @DocsEditable() | 7260 @DocsEditable() |
5798 @Experimental() // untriaged | 7261 @Experimental() // untriaged |
5799 static const EventStreamProvider<Event> waitingEvent = const EventStreamProvid
er<Event>('waiting'); | 7262 static const EventStreamProvider<Event> waitingEvent = const EventStreamProvid
er<Event>('waiting'); |
| 7263 |
| 7264 |
| 7265 static SvgElement internalCreateSvgElement() { |
| 7266 return new SvgElement._internalWrap(); |
| 7267 } |
| 7268 |
| 7269 factory SvgElement._internalWrap() { |
| 7270 return new SvgElement.internal_(); |
| 7271 } |
| 7272 |
| 7273 SvgElement.internal_() : super.internal_(); |
| 7274 |
5800 /** | 7275 /** |
5801 * Constructor instantiated by the DOM when a custom element has been created. | 7276 * Constructor instantiated by the DOM when a custom element has been created. |
5802 * | 7277 * |
5803 * This can only be called by subclasses from their created constructor. | 7278 * This can only be called by subclasses from their created constructor. |
5804 */ | 7279 */ |
5805 SvgElement.created() : super.created(); | 7280 SvgElement.created() : super.created(); |
5806 | 7281 |
5807 @DomName('SVGElement.className') | 7282 @DomName('SVGElement.className') |
5808 @DocsEditable() | 7283 @DocsEditable() |
5809 @Experimental() // untriaged | 7284 @Experimental() // untriaged |
5810 AnimatedString get _svgClassName => wrap_jso(_blink.BlinkSVGElement.instance.c
lassName_Getter_(unwrap_jso(this))); | 7285 AnimatedString get _svgClassName => wrap_jso(_blink.BlinkSVGElement.instance.c
lassName_Getter_(unwrap_jso(this))); |
5811 | 7286 |
5812 @DomName('SVGElement.ownerSVGElement') | 7287 @DomName('SVGElement.ownerSVGElement') |
5813 @DocsEditable() | 7288 @DocsEditable() |
5814 SvgSvgElement get ownerSvgElement => wrap_jso(_blink.BlinkSVGElement.instance.
ownerSVGElement_Getter_(unwrap_jso(this))); | 7289 SvgSvgElement get ownerSvgElement => wrap_jso(_blink.BlinkSVGElement.instance.
ownerSVGElement_Getter_(unwrap_jso(this))); |
5815 | 7290 |
5816 @DomName('SVGElement.style') | 7291 @DomName('SVGElement.style') |
5817 @DocsEditable() | 7292 @DocsEditable() |
5818 @Experimental() // untriaged | 7293 @Experimental() // untriaged |
5819 CssStyleDeclaration get style => wrap_jso(_blink.BlinkSVGElement.instance.styl
e_Getter_(unwrap_jso(this))); | 7294 CssStyleDeclaration get style => wrap_jso(_blink.BlinkSVGElement.instance.styl
e_Getter_(unwrap_jso(this))); |
5820 | 7295 |
5821 @DomName('SVGElement.tabIndex') | 7296 @DomName('SVGElement.tabIndex') |
5822 @DocsEditable() | 7297 @DocsEditable() |
5823 @Experimental() // untriaged | 7298 @Experimental() // untriaged |
5824 int get tabIndex => _blink.BlinkSVGElement.instance.tabIndex_Getter_(unwrap_js
o(this)); | 7299 int get tabIndex => _blink.BlinkSVGElement.instance.tabIndex_Getter_(unwrap_js
o(this)); |
5825 | 7300 |
5826 @DomName('SVGElement.tabIndex') | 7301 @DomName('SVGElement.tabIndex') |
5827 @DocsEditable() | 7302 @DocsEditable() |
5828 @Experimental() // untriaged | 7303 @Experimental() // untriaged |
5829 void set tabIndex(int value) => _blink.BlinkSVGElement.instance.tabIndex_Sette
r_(unwrap_jso(this), value); | 7304 set tabIndex(int value) => _blink.BlinkSVGElement.instance.tabIndex_Setter_(un
wrap_jso(this), value); |
5830 | 7305 |
5831 @DomName('SVGElement.viewportElement') | 7306 @DomName('SVGElement.viewportElement') |
5832 @DocsEditable() | 7307 @DocsEditable() |
5833 SvgElement get viewportElement => wrap_jso(_blink.BlinkSVGElement.instance.vie
wportElement_Getter_(unwrap_jso(this))); | 7308 SvgElement get viewportElement => wrap_jso(_blink.BlinkSVGElement.instance.vie
wportElement_Getter_(unwrap_jso(this))); |
5834 | 7309 |
5835 @DomName('SVGElement.xmlbase') | 7310 @DomName('SVGElement.xmlbase') |
5836 @DocsEditable() | 7311 @DocsEditable() |
5837 String get xmlbase => _blink.BlinkSVGElement.instance.xmlbase_Getter_(unwrap_j
so(this)); | 7312 String get xmlbase => _blink.BlinkSVGElement.instance.xmlbase_Getter_(unwrap_j
so(this)); |
5838 | 7313 |
5839 @DomName('SVGElement.xmlbase') | 7314 @DomName('SVGElement.xmlbase') |
5840 @DocsEditable() | 7315 @DocsEditable() |
5841 void set xmlbase(String value) => _blink.BlinkSVGElement.instance.xmlbase_Sett
er_(unwrap_jso(this), value); | 7316 set xmlbase(String value) => _blink.BlinkSVGElement.instance.xmlbase_Setter_(u
nwrap_jso(this), value); |
5842 | 7317 |
5843 @DomName('SVGElement.xmllang') | 7318 @DomName('SVGElement.xmllang') |
5844 @DocsEditable() | 7319 @DocsEditable() |
5845 @Experimental() // untriaged | 7320 @Experimental() // untriaged |
5846 String get xmllang => _blink.BlinkSVGElement.instance.xmllang_Getter_(unwrap_j
so(this)); | 7321 String get xmllang => _blink.BlinkSVGElement.instance.xmllang_Getter_(unwrap_j
so(this)); |
5847 | 7322 |
5848 @DomName('SVGElement.xmllang') | 7323 @DomName('SVGElement.xmllang') |
5849 @DocsEditable() | 7324 @DocsEditable() |
5850 @Experimental() // untriaged | 7325 @Experimental() // untriaged |
5851 void set xmllang(String value) => _blink.BlinkSVGElement.instance.xmllang_Sett
er_(unwrap_jso(this), value); | 7326 set xmllang(String value) => _blink.BlinkSVGElement.instance.xmllang_Setter_(u
nwrap_jso(this), value); |
5852 | 7327 |
5853 @DomName('SVGElement.xmlspace') | 7328 @DomName('SVGElement.xmlspace') |
5854 @DocsEditable() | 7329 @DocsEditable() |
5855 @Experimental() // untriaged | 7330 @Experimental() // untriaged |
5856 String get xmlspace => _blink.BlinkSVGElement.instance.xmlspace_Getter_(unwrap
_jso(this)); | 7331 String get xmlspace => _blink.BlinkSVGElement.instance.xmlspace_Getter_(unwrap
_jso(this)); |
5857 | 7332 |
5858 @DomName('SVGElement.xmlspace') | 7333 @DomName('SVGElement.xmlspace') |
5859 @DocsEditable() | 7334 @DocsEditable() |
5860 @Experimental() // untriaged | 7335 @Experimental() // untriaged |
5861 void set xmlspace(String value) => _blink.BlinkSVGElement.instance.xmlspace_Se
tter_(unwrap_jso(this), value); | 7336 set xmlspace(String value) => _blink.BlinkSVGElement.instance.xmlspace_Setter_
(unwrap_jso(this), value); |
5862 | 7337 |
5863 @DomName('SVGElement.onabort') | 7338 @DomName('SVGElement.onabort') |
5864 @DocsEditable() | 7339 @DocsEditable() |
5865 @Experimental() // untriaged | 7340 @Experimental() // untriaged |
5866 ElementStream<Event> get onAbort => abortEvent.forElement(this); | 7341 ElementStream<Event> get onAbort => abortEvent.forElement(this); |
5867 | 7342 |
5868 @DomName('SVGElement.onblur') | 7343 @DomName('SVGElement.onblur') |
5869 @DocsEditable() | 7344 @DocsEditable() |
5870 @Experimental() // untriaged | 7345 @Experimental() // untriaged |
5871 ElementStream<Event> get onBlur => blurEvent.forElement(this); | 7346 ElementStream<Event> get onBlur => blurEvent.forElement(this); |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6131 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ZoomAndPan
{ | 7606 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ZoomAndPan
{ |
6132 factory SvgSvgElement() { | 7607 factory SvgSvgElement() { |
6133 final el = new SvgElement.tag("svg"); | 7608 final el = new SvgElement.tag("svg"); |
6134 // The SVG spec requires the version attribute to match the spec version | 7609 // The SVG spec requires the version attribute to match the spec version |
6135 el.attributes['version'] = "1.1"; | 7610 el.attributes['version'] = "1.1"; |
6136 return el; | 7611 return el; |
6137 } | 7612 } |
6138 | 7613 |
6139 // To suppress missing implicit constructor warnings. | 7614 // To suppress missing implicit constructor warnings. |
6140 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } | 7615 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } |
| 7616 |
| 7617 |
| 7618 static SvgSvgElement internalCreateSvgSvgElement() { |
| 7619 return new SvgSvgElement._internalWrap(); |
| 7620 } |
| 7621 |
| 7622 factory SvgSvgElement._internalWrap() { |
| 7623 return new SvgSvgElement.internal_(); |
| 7624 } |
| 7625 |
| 7626 SvgSvgElement.internal_() : super.internal_(); |
| 7627 |
6141 /** | 7628 /** |
6142 * Constructor instantiated by the DOM when a custom element has been created. | 7629 * Constructor instantiated by the DOM when a custom element has been created. |
6143 * | 7630 * |
6144 * This can only be called by subclasses from their created constructor. | 7631 * This can only be called by subclasses from their created constructor. |
6145 */ | 7632 */ |
6146 SvgSvgElement.created() : super.created(); | 7633 SvgSvgElement.created() : super.created(); |
6147 | 7634 |
6148 @DomName('SVGSVGElement.currentScale') | 7635 @DomName('SVGSVGElement.currentScale') |
6149 @DocsEditable() | 7636 @DocsEditable() |
6150 num get currentScale => _blink.BlinkSVGSVGElement.instance.currentScale_Getter
_(unwrap_jso(this)); | 7637 num get currentScale => _blink.BlinkSVGSVGElement.instance.currentScale_Getter
_(unwrap_jso(this)); |
6151 | 7638 |
6152 @DomName('SVGSVGElement.currentScale') | 7639 @DomName('SVGSVGElement.currentScale') |
6153 @DocsEditable() | 7640 @DocsEditable() |
6154 void set currentScale(num value) => _blink.BlinkSVGSVGElement.instance.current
Scale_Setter_(unwrap_jso(this), value); | 7641 set currentScale(num value) => _blink.BlinkSVGSVGElement.instance.currentScale
_Setter_(unwrap_jso(this), value); |
6155 | 7642 |
6156 @DomName('SVGSVGElement.currentTranslate') | 7643 @DomName('SVGSVGElement.currentTranslate') |
6157 @DocsEditable() | 7644 @DocsEditable() |
6158 Point get currentTranslate => wrap_jso(_blink.BlinkSVGSVGElement.instance.curr
entTranslate_Getter_(unwrap_jso(this))); | 7645 Point get currentTranslate => wrap_jso(_blink.BlinkSVGSVGElement.instance.curr
entTranslate_Getter_(unwrap_jso(this))); |
6159 | 7646 |
6160 @DomName('SVGSVGElement.currentView') | 7647 @DomName('SVGSVGElement.currentView') |
6161 @DocsEditable() | 7648 @DocsEditable() |
6162 ViewSpec get currentView => wrap_jso(_blink.BlinkSVGSVGElement.instance.curren
tView_Getter_(unwrap_jso(this))); | 7649 ViewSpec get currentView => wrap_jso(_blink.BlinkSVGSVGElement.instance.curren
tView_Getter_(unwrap_jso(this))); |
6163 | 7650 |
6164 @DomName('SVGSVGElement.height') | 7651 @DomName('SVGSVGElement.height') |
6165 @DocsEditable() | 7652 @DocsEditable() |
6166 AnimatedLength get height => wrap_jso(_blink.BlinkSVGSVGElement.instance.heigh
t_Getter_(unwrap_jso(this))); | 7653 AnimatedLength get height => wrap_jso(_blink.BlinkSVGSVGElement.instance.heigh
t_Getter_(unwrap_jso(this))); |
6167 | 7654 |
6168 @DomName('SVGSVGElement.pixelUnitToMillimeterX') | 7655 @DomName('SVGSVGElement.pixelUnitToMillimeterX') |
6169 @DocsEditable() | 7656 @DocsEditable() |
6170 double get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.instance.pixelU
nitToMillimeterX_Getter_(unwrap_jso(this)); | 7657 num get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.instance.pixelUnit
ToMillimeterX_Getter_(unwrap_jso(this)); |
6171 | 7658 |
6172 @DomName('SVGSVGElement.pixelUnitToMillimeterY') | 7659 @DomName('SVGSVGElement.pixelUnitToMillimeterY') |
6173 @DocsEditable() | 7660 @DocsEditable() |
6174 double get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.instance.pixelU
nitToMillimeterY_Getter_(unwrap_jso(this)); | 7661 num get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.instance.pixelUnit
ToMillimeterY_Getter_(unwrap_jso(this)); |
6175 | 7662 |
6176 @DomName('SVGSVGElement.screenPixelToMillimeterX') | 7663 @DomName('SVGSVGElement.screenPixelToMillimeterX') |
6177 @DocsEditable() | 7664 @DocsEditable() |
6178 double get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.instance.scre
enPixelToMillimeterX_Getter_(unwrap_jso(this)); | 7665 num get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.instance.screenP
ixelToMillimeterX_Getter_(unwrap_jso(this)); |
6179 | 7666 |
6180 @DomName('SVGSVGElement.screenPixelToMillimeterY') | 7667 @DomName('SVGSVGElement.screenPixelToMillimeterY') |
6181 @DocsEditable() | 7668 @DocsEditable() |
6182 double get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.instance.scre
enPixelToMillimeterY_Getter_(unwrap_jso(this)); | 7669 num get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.instance.screenP
ixelToMillimeterY_Getter_(unwrap_jso(this)); |
6183 | 7670 |
6184 @DomName('SVGSVGElement.useCurrentView') | 7671 @DomName('SVGSVGElement.useCurrentView') |
6185 @DocsEditable() | 7672 @DocsEditable() |
6186 bool get useCurrentView => _blink.BlinkSVGSVGElement.instance.useCurrentView_G
etter_(unwrap_jso(this)); | 7673 bool get useCurrentView => _blink.BlinkSVGSVGElement.instance.useCurrentView_G
etter_(unwrap_jso(this)); |
6187 | 7674 |
6188 @DomName('SVGSVGElement.viewport') | 7675 @DomName('SVGSVGElement.viewport') |
6189 @DocsEditable() | 7676 @DocsEditable() |
6190 Rect get viewport => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewport_Gett
er_(unwrap_jso(this))); | 7677 Rect get viewport => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewport_Gett
er_(unwrap_jso(this))); |
6191 | 7678 |
6192 @DomName('SVGSVGElement.width') | 7679 @DomName('SVGSVGElement.width') |
(...skipping 15 matching lines...) Expand all Loading... |
6208 @DomName('SVGSVGElement.checkEnclosure') | 7695 @DomName('SVGSVGElement.checkEnclosure') |
6209 @DocsEditable() | 7696 @DocsEditable() |
6210 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen
t.instance.checkEnclosure_Callback_2_(unwrap_jso(this), unwrap_jso(element), unw
rap_jso(rect)); | 7697 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen
t.instance.checkEnclosure_Callback_2_(unwrap_jso(this), unwrap_jso(element), unw
rap_jso(rect)); |
6211 | 7698 |
6212 @DomName('SVGSVGElement.checkIntersection') | 7699 @DomName('SVGSVGElement.checkIntersection') |
6213 @DocsEditable() | 7700 @DocsEditable() |
6214 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle
ment.instance.checkIntersection_Callback_2_(unwrap_jso(this), unwrap_jso(element
), unwrap_jso(rect)); | 7701 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle
ment.instance.checkIntersection_Callback_2_(unwrap_jso(this), unwrap_jso(element
), unwrap_jso(rect)); |
6215 | 7702 |
6216 @DomName('SVGSVGElement.createSVGAngle') | 7703 @DomName('SVGSVGElement.createSVGAngle') |
6217 @DocsEditable() | 7704 @DocsEditable() |
6218 Angle createSvgAngle() => _blink.BlinkSVGSVGElement.instance.createSVGAngle_Ca
llback_0_(unwrap_jso(this)); | 7705 Angle createSvgAngle() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSV
GAngle_Callback_0_(unwrap_jso(this))); |
6219 | 7706 |
6220 @DomName('SVGSVGElement.createSVGLength') | 7707 @DomName('SVGSVGElement.createSVGLength') |
6221 @DocsEditable() | 7708 @DocsEditable() |
6222 Length createSvgLength() => _blink.BlinkSVGSVGElement.instance.createSVGLength
_Callback_0_(unwrap_jso(this)); | 7709 Length createSvgLength() => wrap_jso(_blink.BlinkSVGSVGElement.instance.create
SVGLength_Callback_0_(unwrap_jso(this))); |
6223 | 7710 |
6224 @DomName('SVGSVGElement.createSVGMatrix') | 7711 @DomName('SVGSVGElement.createSVGMatrix') |
6225 @DocsEditable() | 7712 @DocsEditable() |
6226 Matrix createSvgMatrix() => _blink.BlinkSVGSVGElement.instance.createSVGMatrix
_Callback_0_(unwrap_jso(this)); | 7713 Matrix createSvgMatrix() => wrap_jso(_blink.BlinkSVGSVGElement.instance.create
SVGMatrix_Callback_0_(unwrap_jso(this))); |
6227 | 7714 |
6228 @DomName('SVGSVGElement.createSVGNumber') | 7715 @DomName('SVGSVGElement.createSVGNumber') |
6229 @DocsEditable() | 7716 @DocsEditable() |
6230 Number createSvgNumber() => _blink.BlinkSVGSVGElement.instance.createSVGNumber
_Callback_0_(unwrap_jso(this)); | 7717 Number createSvgNumber() => wrap_jso(_blink.BlinkSVGSVGElement.instance.create
SVGNumber_Callback_0_(unwrap_jso(this))); |
6231 | 7718 |
6232 @DomName('SVGSVGElement.createSVGPoint') | 7719 @DomName('SVGSVGElement.createSVGPoint') |
6233 @DocsEditable() | 7720 @DocsEditable() |
6234 Point createSvgPoint() => _blink.BlinkSVGSVGElement.instance.createSVGPoint_Ca
llback_0_(unwrap_jso(this)); | 7721 Point createSvgPoint() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSV
GPoint_Callback_0_(unwrap_jso(this))); |
6235 | 7722 |
6236 @DomName('SVGSVGElement.createSVGRect') | 7723 @DomName('SVGSVGElement.createSVGRect') |
6237 @DocsEditable() | 7724 @DocsEditable() |
6238 Rect createSvgRect() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGR
ect_Callback_0_(unwrap_jso(this))); | 7725 Rect createSvgRect() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGR
ect_Callback_0_(unwrap_jso(this))); |
6239 | 7726 |
6240 @DomName('SVGSVGElement.createSVGTransform') | 7727 @DomName('SVGSVGElement.createSVGTransform') |
6241 @DocsEditable() | 7728 @DocsEditable() |
6242 Transform createSvgTransform() => _blink.BlinkSVGSVGElement.instance.createSVG
Transform_Callback_0_(unwrap_jso(this)); | 7729 Transform createSvgTransform() => wrap_jso(_blink.BlinkSVGSVGElement.instance.
createSVGTransform_Callback_0_(unwrap_jso(this))); |
6243 | 7730 |
6244 @DomName('SVGSVGElement.createSVGTransformFromMatrix') | 7731 @DomName('SVGSVGElement.createSVGTransformFromMatrix') |
6245 @DocsEditable() | 7732 @DocsEditable() |
6246 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGSVGEle
ment.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(this), unwrap_
jso(matrix)); | 7733 Transform createSvgTransformFromMatrix(Matrix matrix) => wrap_jso(_blink.Blink
SVGSVGElement.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(this)
, unwrap_jso(matrix))); |
6247 | 7734 |
6248 @DomName('SVGSVGElement.deselectAll') | 7735 @DomName('SVGSVGElement.deselectAll') |
6249 @DocsEditable() | 7736 @DocsEditable() |
6250 void deselectAll() => _blink.BlinkSVGSVGElement.instance.deselectAll_Callback_
0_(unwrap_jso(this)); | 7737 void deselectAll() => _blink.BlinkSVGSVGElement.instance.deselectAll_Callback_
0_(unwrap_jso(this)); |
6251 | 7738 |
6252 @DomName('SVGSVGElement.forceRedraw') | 7739 @DomName('SVGSVGElement.forceRedraw') |
6253 @DocsEditable() | 7740 @DocsEditable() |
6254 void forceRedraw() => _blink.BlinkSVGSVGElement.instance.forceRedraw_Callback_
0_(unwrap_jso(this)); | 7741 void forceRedraw() => _blink.BlinkSVGSVGElement.instance.forceRedraw_Callback_
0_(unwrap_jso(this)); |
6255 | 7742 |
6256 @DomName('SVGSVGElement.getCurrentTime') | 7743 @DomName('SVGSVGElement.getCurrentTime') |
6257 @DocsEditable() | 7744 @DocsEditable() |
6258 double getCurrentTime() => _blink.BlinkSVGSVGElement.instance.getCurrentTime_C
allback_0_(unwrap_jso(this)); | 7745 num getCurrentTime() => _blink.BlinkSVGSVGElement.instance.getCurrentTime_Call
back_0_(unwrap_jso(this)); |
6259 | 7746 |
6260 @DomName('SVGSVGElement.getElementById') | 7747 @DomName('SVGSVGElement.getElementById') |
6261 @DocsEditable() | 7748 @DocsEditable() |
6262 Element getElementById(String elementId) => wrap_jso(_blink.BlinkSVGSVGElement
.instance.getElementById_Callback_1_(unwrap_jso(this), elementId)); | 7749 Element getElementById(String elementId) => wrap_jso(_blink.BlinkSVGSVGElement
.instance.getElementById_Callback_1_(unwrap_jso(this), elementId)); |
6263 | 7750 |
6264 @DomName('SVGSVGElement.getEnclosureList') | 7751 @DomName('SVGSVGElement.getEnclosureList') |
6265 @DocsEditable() | 7752 @DocsEditable() |
6266 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => wrap_js
o_list(_blink.BlinkSVGSVGElement.instance.getEnclosureList_Callback_2_(unwrap_js
o(this), unwrap_jso(rect), unwrap_jso(referenceElement))); | 7753 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => wrap_js
o(_blink.BlinkSVGSVGElement.instance.getEnclosureList_Callback_2_(unwrap_jso(thi
s), unwrap_jso(rect), unwrap_jso(referenceElement))); |
6267 | 7754 |
6268 @DomName('SVGSVGElement.getIntersectionList') | 7755 @DomName('SVGSVGElement.getIntersectionList') |
6269 @DocsEditable() | 7756 @DocsEditable() |
6270 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => wrap
_jso_list(_blink.BlinkSVGSVGElement.instance.getIntersectionList_Callback_2_(unw
rap_jso(this), unwrap_jso(rect), unwrap_jso(referenceElement))); | 7757 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => wrap
_jso(_blink.BlinkSVGSVGElement.instance.getIntersectionList_Callback_2_(unwrap_j
so(this), unwrap_jso(rect), unwrap_jso(referenceElement))); |
6271 | 7758 |
6272 @DomName('SVGSVGElement.pauseAnimations') | 7759 @DomName('SVGSVGElement.pauseAnimations') |
6273 @DocsEditable() | 7760 @DocsEditable() |
6274 void pauseAnimations() => _blink.BlinkSVGSVGElement.instance.pauseAnimations_C
allback_0_(unwrap_jso(this)); | 7761 void pauseAnimations() => _blink.BlinkSVGSVGElement.instance.pauseAnimations_C
allback_0_(unwrap_jso(this)); |
6275 | 7762 |
6276 @DomName('SVGSVGElement.setCurrentTime') | 7763 @DomName('SVGSVGElement.setCurrentTime') |
6277 @DocsEditable() | 7764 @DocsEditable() |
6278 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.instance.setCurr
entTime_Callback_1_(unwrap_jso(this), seconds); | 7765 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.instance.setCurr
entTime_Callback_1_(unwrap_jso(this), seconds); |
6279 | 7766 |
6280 @DomName('SVGSVGElement.suspendRedraw') | 7767 @DomName('SVGSVGElement.suspendRedraw') |
(...skipping 19 matching lines...) Expand all Loading... |
6300 @DomName('SVGSVGElement.viewBox') | 7787 @DomName('SVGSVGElement.viewBox') |
6301 @DocsEditable() | 7788 @DocsEditable() |
6302 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewBo
x_Getter_(unwrap_jso(this))); | 7789 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewBo
x_Getter_(unwrap_jso(this))); |
6303 | 7790 |
6304 @DomName('SVGSVGElement.zoomAndPan') | 7791 @DomName('SVGSVGElement.zoomAndPan') |
6305 @DocsEditable() | 7792 @DocsEditable() |
6306 int get zoomAndPan => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Getter_(un
wrap_jso(this)); | 7793 int get zoomAndPan => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Getter_(un
wrap_jso(this)); |
6307 | 7794 |
6308 @DomName('SVGSVGElement.zoomAndPan') | 7795 @DomName('SVGSVGElement.zoomAndPan') |
6309 @DocsEditable() | 7796 @DocsEditable() |
6310 void set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.instance.zoomAndPa
n_Setter_(unwrap_jso(this), value); | 7797 set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Set
ter_(unwrap_jso(this), value); |
6311 | 7798 |
6312 } | 7799 } |
6313 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7800 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6314 // for details. All rights reserved. Use of this source code is governed by a | 7801 // for details. All rights reserved. Use of this source code is governed by a |
6315 // BSD-style license that can be found in the LICENSE file. | 7802 // BSD-style license that can be found in the LICENSE file. |
6316 | 7803 |
6317 // WARNING: Do not edit - generated code. | 7804 // WARNING: Do not edit - generated code. |
6318 | 7805 |
6319 | 7806 |
6320 @DocsEditable() | 7807 @DocsEditable() |
6321 @DomName('SVGSwitchElement') | 7808 @DomName('SVGSwitchElement') |
6322 @Unstable() | 7809 @Unstable() |
6323 class SwitchElement extends GraphicsElement { | 7810 class SwitchElement extends GraphicsElement { |
6324 // To suppress missing implicit constructor warnings. | 7811 // To suppress missing implicit constructor warnings. |
6325 factory SwitchElement._() { throw new UnsupportedError("Not supported"); } | 7812 factory SwitchElement._() { throw new UnsupportedError("Not supported"); } |
6326 | 7813 |
6327 @DomName('SVGSwitchElement.SVGSwitchElement') | 7814 @DomName('SVGSwitchElement.SVGSwitchElement') |
6328 @DocsEditable() | 7815 @DocsEditable() |
6329 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw
itch"); | 7816 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw
itch"); |
| 7817 |
| 7818 |
| 7819 static SwitchElement internalCreateSwitchElement() { |
| 7820 return new SwitchElement._internalWrap(); |
| 7821 } |
| 7822 |
| 7823 factory SwitchElement._internalWrap() { |
| 7824 return new SwitchElement.internal_(); |
| 7825 } |
| 7826 |
| 7827 SwitchElement.internal_() : super.internal_(); |
| 7828 |
6330 /** | 7829 /** |
6331 * Constructor instantiated by the DOM when a custom element has been created. | 7830 * Constructor instantiated by the DOM when a custom element has been created. |
6332 * | 7831 * |
6333 * This can only be called by subclasses from their created constructor. | 7832 * This can only be called by subclasses from their created constructor. |
6334 */ | 7833 */ |
6335 SwitchElement.created() : super.created(); | 7834 SwitchElement.created() : super.created(); |
6336 | 7835 |
6337 } | 7836 } |
6338 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7837 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6339 // for details. All rights reserved. Use of this source code is governed by a | 7838 // for details. All rights reserved. Use of this source code is governed by a |
6340 // BSD-style license that can be found in the LICENSE file. | 7839 // BSD-style license that can be found in the LICENSE file. |
6341 | 7840 |
6342 // WARNING: Do not edit - generated code. | 7841 // WARNING: Do not edit - generated code. |
6343 | 7842 |
6344 | 7843 |
6345 @DocsEditable() | 7844 @DocsEditable() |
6346 @DomName('SVGSymbolElement') | 7845 @DomName('SVGSymbolElement') |
6347 @Unstable() | 7846 @Unstable() |
6348 class SymbolElement extends SvgElement implements FitToViewBox { | 7847 class SymbolElement extends SvgElement implements FitToViewBox { |
6349 // To suppress missing implicit constructor warnings. | 7848 // To suppress missing implicit constructor warnings. |
6350 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } | 7849 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } |
6351 | 7850 |
6352 @DomName('SVGSymbolElement.SVGSymbolElement') | 7851 @DomName('SVGSymbolElement.SVGSymbolElement') |
6353 @DocsEditable() | 7852 @DocsEditable() |
6354 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy
mbol"); | 7853 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy
mbol"); |
| 7854 |
| 7855 |
| 7856 static SymbolElement internalCreateSymbolElement() { |
| 7857 return new SymbolElement._internalWrap(); |
| 7858 } |
| 7859 |
| 7860 factory SymbolElement._internalWrap() { |
| 7861 return new SymbolElement.internal_(); |
| 7862 } |
| 7863 |
| 7864 SymbolElement.internal_() : super.internal_(); |
| 7865 |
6355 /** | 7866 /** |
6356 * Constructor instantiated by the DOM when a custom element has been created. | 7867 * Constructor instantiated by the DOM when a custom element has been created. |
6357 * | 7868 * |
6358 * This can only be called by subclasses from their created constructor. | 7869 * This can only be called by subclasses from their created constructor. |
6359 */ | 7870 */ |
6360 SymbolElement.created() : super.created(); | 7871 SymbolElement.created() : super.created(); |
6361 | 7872 |
6362 @DomName('SVGSymbolElement.preserveAspectRatio') | 7873 @DomName('SVGSymbolElement.preserveAspectRatio') |
6363 @DocsEditable() | 7874 @DocsEditable() |
6364 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GSymbolElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); | 7875 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GSymbolElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); |
(...skipping 13 matching lines...) Expand all Loading... |
6378 @DocsEditable() | 7889 @DocsEditable() |
6379 @DomName('SVGTSpanElement') | 7890 @DomName('SVGTSpanElement') |
6380 @Unstable() | 7891 @Unstable() |
6381 class TSpanElement extends TextPositioningElement { | 7892 class TSpanElement extends TextPositioningElement { |
6382 // To suppress missing implicit constructor warnings. | 7893 // To suppress missing implicit constructor warnings. |
6383 factory TSpanElement._() { throw new UnsupportedError("Not supported"); } | 7894 factory TSpanElement._() { throw new UnsupportedError("Not supported"); } |
6384 | 7895 |
6385 @DomName('SVGTSpanElement.SVGTSpanElement') | 7896 @DomName('SVGTSpanElement.SVGTSpanElement') |
6386 @DocsEditable() | 7897 @DocsEditable() |
6387 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp
an"); | 7898 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp
an"); |
| 7899 |
| 7900 |
| 7901 static TSpanElement internalCreateTSpanElement() { |
| 7902 return new TSpanElement._internalWrap(); |
| 7903 } |
| 7904 |
| 7905 factory TSpanElement._internalWrap() { |
| 7906 return new TSpanElement.internal_(); |
| 7907 } |
| 7908 |
| 7909 TSpanElement.internal_() : super.internal_(); |
| 7910 |
6388 /** | 7911 /** |
6389 * Constructor instantiated by the DOM when a custom element has been created. | 7912 * Constructor instantiated by the DOM when a custom element has been created. |
6390 * | 7913 * |
6391 * This can only be called by subclasses from their created constructor. | 7914 * This can only be called by subclasses from their created constructor. |
6392 */ | 7915 */ |
6393 TSpanElement.created() : super.created(); | 7916 TSpanElement.created() : super.created(); |
6394 | 7917 |
6395 } | 7918 } |
6396 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7919 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6397 // for details. All rights reserved. Use of this source code is governed by a | 7920 // for details. All rights reserved. Use of this source code is governed by a |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6430 | 7953 |
6431 // WARNING: Do not edit - generated code. | 7954 // WARNING: Do not edit - generated code. |
6432 | 7955 |
6433 | 7956 |
6434 @DocsEditable() | 7957 @DocsEditable() |
6435 @DomName('SVGTextContentElement') | 7958 @DomName('SVGTextContentElement') |
6436 @Unstable() | 7959 @Unstable() |
6437 class TextContentElement extends GraphicsElement { | 7960 class TextContentElement extends GraphicsElement { |
6438 // To suppress missing implicit constructor warnings. | 7961 // To suppress missing implicit constructor warnings. |
6439 factory TextContentElement._() { throw new UnsupportedError("Not supported");
} | 7962 factory TextContentElement._() { throw new UnsupportedError("Not supported");
} |
| 7963 |
| 7964 |
| 7965 static TextContentElement internalCreateTextContentElement() { |
| 7966 return new TextContentElement._internalWrap(); |
| 7967 } |
| 7968 |
| 7969 factory TextContentElement._internalWrap() { |
| 7970 return new TextContentElement.internal_(); |
| 7971 } |
| 7972 |
| 7973 TextContentElement.internal_() : super.internal_(); |
| 7974 |
6440 /** | 7975 /** |
6441 * Constructor instantiated by the DOM when a custom element has been created. | 7976 * Constructor instantiated by the DOM when a custom element has been created. |
6442 * | 7977 * |
6443 * This can only be called by subclasses from their created constructor. | 7978 * This can only be called by subclasses from their created constructor. |
6444 */ | 7979 */ |
6445 TextContentElement.created() : super.created(); | 7980 TextContentElement.created() : super.created(); |
6446 | 7981 |
6447 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') | 7982 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') |
6448 @DocsEditable() | 7983 @DocsEditable() |
6449 static const int LENGTHADJUST_SPACING = 1; | 7984 static const int LENGTHADJUST_SPACING = 1; |
(...skipping 13 matching lines...) Expand all Loading... |
6463 @DomName('SVGTextContentElement.textLength') | 7998 @DomName('SVGTextContentElement.textLength') |
6464 @DocsEditable() | 7999 @DocsEditable() |
6465 AnimatedLength get textLength => wrap_jso(_blink.BlinkSVGTextContentElement.in
stance.textLength_Getter_(unwrap_jso(this))); | 8000 AnimatedLength get textLength => wrap_jso(_blink.BlinkSVGTextContentElement.in
stance.textLength_Getter_(unwrap_jso(this))); |
6466 | 8001 |
6467 @DomName('SVGTextContentElement.getCharNumAtPosition') | 8002 @DomName('SVGTextContentElement.getCharNumAtPosition') |
6468 @DocsEditable() | 8003 @DocsEditable() |
6469 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.ins
tance.getCharNumAtPosition_Callback_1_(unwrap_jso(this), unwrap_jso(point)); | 8004 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.ins
tance.getCharNumAtPosition_Callback_1_(unwrap_jso(this), unwrap_jso(point)); |
6470 | 8005 |
6471 @DomName('SVGTextContentElement.getComputedTextLength') | 8006 @DomName('SVGTextContentElement.getComputedTextLength') |
6472 @DocsEditable() | 8007 @DocsEditable() |
6473 double getComputedTextLength() => _blink.BlinkSVGTextContentElement.instance.g
etComputedTextLength_Callback_0_(unwrap_jso(this)); | 8008 num getComputedTextLength() => _blink.BlinkSVGTextContentElement.instance.getC
omputedTextLength_Callback_0_(unwrap_jso(this)); |
6474 | 8009 |
6475 @DomName('SVGTextContentElement.getEndPositionOfChar') | 8010 @DomName('SVGTextContentElement.getEndPositionOfChar') |
6476 @DocsEditable() | 8011 @DocsEditable() |
6477 Point getEndPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.in
stance.getEndPositionOfChar_Callback_1_(unwrap_jso(this), offset); | 8012 Point getEndPositionOfChar(int offset) => wrap_jso(_blink.BlinkSVGTextContentE
lement.instance.getEndPositionOfChar_Callback_1_(unwrap_jso(this), offset)); |
6478 | 8013 |
6479 @DomName('SVGTextContentElement.getExtentOfChar') | 8014 @DomName('SVGTextContentElement.getExtentOfChar') |
6480 @DocsEditable() | 8015 @DocsEditable() |
6481 Rect getExtentOfChar(int offset) => wrap_jso(_blink.BlinkSVGTextContentElement
.instance.getExtentOfChar_Callback_1_(unwrap_jso(this), offset)); | 8016 Rect getExtentOfChar(int offset) => wrap_jso(_blink.BlinkSVGTextContentElement
.instance.getExtentOfChar_Callback_1_(unwrap_jso(this), offset)); |
6482 | 8017 |
6483 @DomName('SVGTextContentElement.getNumberOfChars') | 8018 @DomName('SVGTextContentElement.getNumberOfChars') |
6484 @DocsEditable() | 8019 @DocsEditable() |
6485 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.instance.getNumber
OfChars_Callback_0_(unwrap_jso(this)); | 8020 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.instance.getNumber
OfChars_Callback_0_(unwrap_jso(this)); |
6486 | 8021 |
6487 @DomName('SVGTextContentElement.getRotationOfChar') | 8022 @DomName('SVGTextContentElement.getRotationOfChar') |
6488 @DocsEditable() | 8023 @DocsEditable() |
6489 double getRotationOfChar(int offset) => _blink.BlinkSVGTextContentElement.inst
ance.getRotationOfChar_Callback_1_(unwrap_jso(this), offset); | 8024 num getRotationOfChar(int offset) => _blink.BlinkSVGTextContentElement.instanc
e.getRotationOfChar_Callback_1_(unwrap_jso(this), offset); |
6490 | 8025 |
6491 @DomName('SVGTextContentElement.getStartPositionOfChar') | 8026 @DomName('SVGTextContentElement.getStartPositionOfChar') |
6492 @DocsEditable() | 8027 @DocsEditable() |
6493 Point getStartPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.
instance.getStartPositionOfChar_Callback_1_(unwrap_jso(this), offset); | 8028 Point getStartPositionOfChar(int offset) => wrap_jso(_blink.BlinkSVGTextConten
tElement.instance.getStartPositionOfChar_Callback_1_(unwrap_jso(this), offset)); |
6494 | 8029 |
6495 @DomName('SVGTextContentElement.getSubStringLength') | 8030 @DomName('SVGTextContentElement.getSubStringLength') |
6496 @DocsEditable() | 8031 @DocsEditable() |
6497 double getSubStringLength(int offset, int length) => _blink.BlinkSVGTextConten
tElement.instance.getSubStringLength_Callback_2_(unwrap_jso(this), offset, lengt
h); | 8032 num getSubStringLength(int offset, int length) => _blink.BlinkSVGTextContentEl
ement.instance.getSubStringLength_Callback_2_(unwrap_jso(this), offset, length); |
6498 | 8033 |
6499 @DomName('SVGTextContentElement.selectSubString') | 8034 @DomName('SVGTextContentElement.selectSubString') |
6500 @DocsEditable() | 8035 @DocsEditable() |
6501 void selectSubString(int offset, int length) => _blink.BlinkSVGTextContentElem
ent.instance.selectSubString_Callback_2_(unwrap_jso(this), offset, length); | 8036 void selectSubString(int offset, int length) => _blink.BlinkSVGTextContentElem
ent.instance.selectSubString_Callback_2_(unwrap_jso(this), offset, length); |
6502 | 8037 |
6503 } | 8038 } |
6504 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8039 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6505 // for details. All rights reserved. Use of this source code is governed by a | 8040 // for details. All rights reserved. Use of this source code is governed by a |
6506 // BSD-style license that can be found in the LICENSE file. | 8041 // BSD-style license that can be found in the LICENSE file. |
6507 | 8042 |
6508 // WARNING: Do not edit - generated code. | 8043 // WARNING: Do not edit - generated code. |
6509 | 8044 |
6510 | 8045 |
6511 @DocsEditable() | 8046 @DocsEditable() |
6512 @DomName('SVGTextElement') | 8047 @DomName('SVGTextElement') |
6513 @Unstable() | 8048 @Unstable() |
6514 class TextElement extends TextPositioningElement { | 8049 class TextElement extends TextPositioningElement { |
6515 // To suppress missing implicit constructor warnings. | 8050 // To suppress missing implicit constructor warnings. |
6516 factory TextElement._() { throw new UnsupportedError("Not supported"); } | 8051 factory TextElement._() { throw new UnsupportedError("Not supported"); } |
6517 | 8052 |
6518 @DomName('SVGTextElement.SVGTextElement') | 8053 @DomName('SVGTextElement.SVGTextElement') |
6519 @DocsEditable() | 8054 @DocsEditable() |
6520 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text
"); | 8055 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text
"); |
| 8056 |
| 8057 |
| 8058 static TextElement internalCreateTextElement() { |
| 8059 return new TextElement._internalWrap(); |
| 8060 } |
| 8061 |
| 8062 factory TextElement._internalWrap() { |
| 8063 return new TextElement.internal_(); |
| 8064 } |
| 8065 |
| 8066 TextElement.internal_() : super.internal_(); |
| 8067 |
6521 /** | 8068 /** |
6522 * Constructor instantiated by the DOM when a custom element has been created. | 8069 * Constructor instantiated by the DOM when a custom element has been created. |
6523 * | 8070 * |
6524 * This can only be called by subclasses from their created constructor. | 8071 * This can only be called by subclasses from their created constructor. |
6525 */ | 8072 */ |
6526 TextElement.created() : super.created(); | 8073 TextElement.created() : super.created(); |
6527 | 8074 |
6528 } | 8075 } |
6529 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8076 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6530 // for details. All rights reserved. Use of this source code is governed by a | 8077 // for details. All rights reserved. Use of this source code is governed by a |
6531 // BSD-style license that can be found in the LICENSE file. | 8078 // BSD-style license that can be found in the LICENSE file. |
6532 | 8079 |
6533 // WARNING: Do not edit - generated code. | 8080 // WARNING: Do not edit - generated code. |
6534 | 8081 |
6535 | 8082 |
6536 @DocsEditable() | 8083 @DocsEditable() |
6537 @DomName('SVGTextPathElement') | 8084 @DomName('SVGTextPathElement') |
6538 @Unstable() | 8085 @Unstable() |
6539 class TextPathElement extends TextContentElement implements UriReference { | 8086 class TextPathElement extends TextContentElement implements UriReference { |
6540 // To suppress missing implicit constructor warnings. | 8087 // To suppress missing implicit constructor warnings. |
6541 factory TextPathElement._() { throw new UnsupportedError("Not supported"); } | 8088 factory TextPathElement._() { throw new UnsupportedError("Not supported"); } |
| 8089 |
| 8090 |
| 8091 static TextPathElement internalCreateTextPathElement() { |
| 8092 return new TextPathElement._internalWrap(); |
| 8093 } |
| 8094 |
| 8095 factory TextPathElement._internalWrap() { |
| 8096 return new TextPathElement.internal_(); |
| 8097 } |
| 8098 |
| 8099 TextPathElement.internal_() : super.internal_(); |
| 8100 |
6542 /** | 8101 /** |
6543 * Constructor instantiated by the DOM when a custom element has been created. | 8102 * Constructor instantiated by the DOM when a custom element has been created. |
6544 * | 8103 * |
6545 * This can only be called by subclasses from their created constructor. | 8104 * This can only be called by subclasses from their created constructor. |
6546 */ | 8105 */ |
6547 TextPathElement.created() : super.created(); | 8106 TextPathElement.created() : super.created(); |
6548 | 8107 |
6549 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') | 8108 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') |
6550 @DocsEditable() | 8109 @DocsEditable() |
6551 static const int TEXTPATH_METHODTYPE_ALIGN = 1; | 8110 static const int TEXTPATH_METHODTYPE_ALIGN = 1; |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6593 | 8152 |
6594 // WARNING: Do not edit - generated code. | 8153 // WARNING: Do not edit - generated code. |
6595 | 8154 |
6596 | 8155 |
6597 @DocsEditable() | 8156 @DocsEditable() |
6598 @DomName('SVGTextPositioningElement') | 8157 @DomName('SVGTextPositioningElement') |
6599 @Unstable() | 8158 @Unstable() |
6600 class TextPositioningElement extends TextContentElement { | 8159 class TextPositioningElement extends TextContentElement { |
6601 // To suppress missing implicit constructor warnings. | 8160 // To suppress missing implicit constructor warnings. |
6602 factory TextPositioningElement._() { throw new UnsupportedError("Not supported
"); } | 8161 factory TextPositioningElement._() { throw new UnsupportedError("Not supported
"); } |
| 8162 |
| 8163 |
| 8164 static TextPositioningElement internalCreateTextPositioningElement() { |
| 8165 return new TextPositioningElement._internalWrap(); |
| 8166 } |
| 8167 |
| 8168 factory TextPositioningElement._internalWrap() { |
| 8169 return new TextPositioningElement.internal_(); |
| 8170 } |
| 8171 |
| 8172 TextPositioningElement.internal_() : super.internal_(); |
| 8173 |
6603 /** | 8174 /** |
6604 * Constructor instantiated by the DOM when a custom element has been created. | 8175 * Constructor instantiated by the DOM when a custom element has been created. |
6605 * | 8176 * |
6606 * This can only be called by subclasses from their created constructor. | 8177 * This can only be called by subclasses from their created constructor. |
6607 */ | 8178 */ |
6608 TextPositioningElement.created() : super.created(); | 8179 TextPositioningElement.created() : super.created(); |
6609 | 8180 |
6610 @DomName('SVGTextPositioningElement.dx') | 8181 @DomName('SVGTextPositioningElement.dx') |
6611 @DocsEditable() | 8182 @DocsEditable() |
6612 AnimatedLengthList get dx => wrap_jso(_blink.BlinkSVGTextPositioningElement.in
stance.dx_Getter_(unwrap_jso(this))); | 8183 AnimatedLengthList get dx => wrap_jso(_blink.BlinkSVGTextPositioningElement.in
stance.dx_Getter_(unwrap_jso(this))); |
(...skipping 25 matching lines...) Expand all Loading... |
6638 @DocsEditable() | 8209 @DocsEditable() |
6639 @DomName('SVGTitleElement') | 8210 @DomName('SVGTitleElement') |
6640 @Unstable() | 8211 @Unstable() |
6641 class TitleElement extends SvgElement { | 8212 class TitleElement extends SvgElement { |
6642 // To suppress missing implicit constructor warnings. | 8213 // To suppress missing implicit constructor warnings. |
6643 factory TitleElement._() { throw new UnsupportedError("Not supported"); } | 8214 factory TitleElement._() { throw new UnsupportedError("Not supported"); } |
6644 | 8215 |
6645 @DomName('SVGTitleElement.SVGTitleElement') | 8216 @DomName('SVGTitleElement.SVGTitleElement') |
6646 @DocsEditable() | 8217 @DocsEditable() |
6647 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit
le"); | 8218 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit
le"); |
| 8219 |
| 8220 |
| 8221 static TitleElement internalCreateTitleElement() { |
| 8222 return new TitleElement._internalWrap(); |
| 8223 } |
| 8224 |
| 8225 factory TitleElement._internalWrap() { |
| 8226 return new TitleElement.internal_(); |
| 8227 } |
| 8228 |
| 8229 TitleElement.internal_() : super.internal_(); |
| 8230 |
6648 /** | 8231 /** |
6649 * Constructor instantiated by the DOM when a custom element has been created. | 8232 * Constructor instantiated by the DOM when a custom element has been created. |
6650 * | 8233 * |
6651 * This can only be called by subclasses from their created constructor. | 8234 * This can only be called by subclasses from their created constructor. |
6652 */ | 8235 */ |
6653 TitleElement.created() : super.created(); | 8236 TitleElement.created() : super.created(); |
6654 | 8237 |
6655 } | 8238 } |
6656 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8239 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6657 // for details. All rights reserved. Use of this source code is governed by a | 8240 // for details. All rights reserved. Use of this source code is governed by a |
6658 // BSD-style license that can be found in the LICENSE file. | 8241 // BSD-style license that can be found in the LICENSE file. |
6659 | 8242 |
6660 // WARNING: Do not edit - generated code. | 8243 // WARNING: Do not edit - generated code. |
6661 | 8244 |
6662 | 8245 |
6663 @DocsEditable() | 8246 @DocsEditable() |
6664 @DomName('SVGTransform') | 8247 @DomName('SVGTransform') |
6665 @Unstable() | 8248 @Unstable() |
6666 class Transform extends NativeFieldWrapperClass2 { | 8249 class Transform extends NativeFieldWrapperClass2 { |
6667 // To suppress missing implicit constructor warnings. | 8250 // To suppress missing implicit constructor warnings. |
6668 factory Transform._() { throw new UnsupportedError("Not supported"); } | 8251 factory Transform._() { throw new UnsupportedError("Not supported"); } |
6669 | 8252 |
| 8253 static Transform internalCreateTransform() { |
| 8254 return new Transform._internalWrap(); |
| 8255 } |
| 8256 |
| 8257 js.JsObject blink_jsObject; |
| 8258 |
| 8259 factory Transform._internalWrap() { |
| 8260 return new Transform.internal_(); |
| 8261 } |
| 8262 |
| 8263 Transform.internal_() { } |
| 8264 |
| 8265 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 8266 int get hashCode => unwrap_jso(this).hashCode; |
| 8267 |
6670 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') | 8268 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') |
6671 @DocsEditable() | 8269 @DocsEditable() |
6672 static const int SVG_TRANSFORM_MATRIX = 1; | 8270 static const int SVG_TRANSFORM_MATRIX = 1; |
6673 | 8271 |
6674 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE') | 8272 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE') |
6675 @DocsEditable() | 8273 @DocsEditable() |
6676 static const int SVG_TRANSFORM_ROTATE = 4; | 8274 static const int SVG_TRANSFORM_ROTATE = 4; |
6677 | 8275 |
6678 @DomName('SVGTransform.SVG_TRANSFORM_SCALE') | 8276 @DomName('SVGTransform.SVG_TRANSFORM_SCALE') |
6679 @DocsEditable() | 8277 @DocsEditable() |
(...skipping 10 matching lines...) Expand all Loading... |
6690 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE') | 8288 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE') |
6691 @DocsEditable() | 8289 @DocsEditable() |
6692 static const int SVG_TRANSFORM_TRANSLATE = 2; | 8290 static const int SVG_TRANSFORM_TRANSLATE = 2; |
6693 | 8291 |
6694 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN') | 8292 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN') |
6695 @DocsEditable() | 8293 @DocsEditable() |
6696 static const int SVG_TRANSFORM_UNKNOWN = 0; | 8294 static const int SVG_TRANSFORM_UNKNOWN = 0; |
6697 | 8295 |
6698 @DomName('SVGTransform.angle') | 8296 @DomName('SVGTransform.angle') |
6699 @DocsEditable() | 8297 @DocsEditable() |
6700 double get angle => _blink.BlinkSVGTransform.instance.angle_Getter_(unwrap_jso
(this)); | 8298 num get angle => _blink.BlinkSVGTransform.instance.angle_Getter_(unwrap_jso(th
is)); |
6701 | 8299 |
6702 @DomName('SVGTransform.matrix') | 8300 @DomName('SVGTransform.matrix') |
6703 @DocsEditable() | 8301 @DocsEditable() |
6704 Matrix get matrix => wrap_jso(_blink.BlinkSVGTransform.instance.matrix_Getter_
(unwrap_jso(this))); | 8302 Matrix get matrix => wrap_jso(_blink.BlinkSVGTransform.instance.matrix_Getter_
(unwrap_jso(this))); |
6705 | 8303 |
6706 @DomName('SVGTransform.type') | 8304 @DomName('SVGTransform.type') |
6707 @DocsEditable() | 8305 @DocsEditable() |
6708 int get type => _blink.BlinkSVGTransform.instance.type_Getter_(unwrap_jso(this
)); | 8306 int get type => _blink.BlinkSVGTransform.instance.type_Getter_(unwrap_jso(this
)); |
6709 | 8307 |
6710 @DomName('SVGTransform.setMatrix') | 8308 @DomName('SVGTransform.setMatrix') |
(...skipping 24 matching lines...) Expand all Loading... |
6735 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8333 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6736 // for details. All rights reserved. Use of this source code is governed by a | 8334 // for details. All rights reserved. Use of this source code is governed by a |
6737 // BSD-style license that can be found in the LICENSE file. | 8335 // BSD-style license that can be found in the LICENSE file. |
6738 | 8336 |
6739 // WARNING: Do not edit - generated code. | 8337 // WARNING: Do not edit - generated code. |
6740 | 8338 |
6741 | 8339 |
6742 @DocsEditable() | 8340 @DocsEditable() |
6743 @DomName('SVGTransformList') | 8341 @DomName('SVGTransformList') |
6744 @Unstable() | 8342 @Unstable() |
6745 class TransformList extends NativeFieldWrapperClass2 with ListMixin<Transform>,
ImmutableListMixin<Transform> implements List<Transform> { | 8343 class TransformList extends JsoNativeFieldWrapper with ListMixin<Transform>, Imm
utableListMixin<Transform> implements List<Transform> { |
6746 // To suppress missing implicit constructor warnings. | 8344 // To suppress missing implicit constructor warnings. |
6747 factory TransformList._() { throw new UnsupportedError("Not supported"); } | 8345 factory TransformList._() { throw new UnsupportedError("Not supported"); } |
6748 | 8346 |
| 8347 static TransformList internalCreateTransformList() { |
| 8348 return new TransformList._internalWrap(); |
| 8349 } |
| 8350 |
| 8351 js.JsObject blink_jsObject; |
| 8352 |
| 8353 factory TransformList._internalWrap() { |
| 8354 return new TransformList.internal_(); |
| 8355 } |
| 8356 |
| 8357 TransformList.internal_() { } |
| 8358 |
| 8359 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 8360 int get hashCode => unwrap_jso(this).hashCode; |
| 8361 |
6749 @DomName('SVGTransformList.length') | 8362 @DomName('SVGTransformList.length') |
6750 @DocsEditable() | 8363 @DocsEditable() |
6751 @Experimental() // untriaged | 8364 @Experimental() // untriaged |
6752 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(unwrap_
jso(this)); | 8365 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(unwrap_
jso(this)); |
6753 | 8366 |
6754 @DomName('SVGTransformList.numberOfItems') | 8367 @DomName('SVGTransformList.numberOfItems') |
6755 @DocsEditable() | 8368 @DocsEditable() |
6756 int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_G
etter_(unwrap_jso(this)); | 8369 int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_G
etter_(unwrap_jso(this)); |
6757 | 8370 |
6758 Transform operator[](int index) { | 8371 Transform operator[](int index) { |
6759 if (index < 0 || index >= length) | 8372 if (index < 0 || index >= length) |
6760 throw new RangeError.index(index, this); | 8373 throw new RangeError.index(index, this); |
6761 return getItem(index); | 8374 return getItem(index); |
6762 } | 8375 } |
6763 | 8376 |
6764 void operator[]=(int index, Transform value) { | 8377 void operator[]=(int index, Transform value) { |
6765 throw new UnsupportedError("Cannot assign element of immutable List."); | 8378 throw new UnsupportedError("Cannot assign element of immutable List."); |
6766 } | 8379 } |
6767 // -- start List<Transform> mixins. | 8380 // -- start List<Transform> mixins. |
6768 // Transform is the element type. | 8381 // Transform is the element type. |
6769 | 8382 |
6770 | 8383 |
6771 void set length(int value) { | 8384 set length(int value) { |
6772 throw new UnsupportedError("Cannot resize immutable List."); | 8385 throw new UnsupportedError("Cannot resize immutable List."); |
6773 } | 8386 } |
6774 | 8387 |
6775 Transform get first { | 8388 Transform get first { |
6776 if (this.length > 0) { | 8389 if (this.length > 0) { |
6777 return getItem(0); | 8390 return getItem(0); |
6778 } | 8391 } |
6779 throw new StateError("No elements"); | 8392 throw new StateError("No elements"); |
6780 } | 8393 } |
6781 | 8394 |
(...skipping 17 matching lines...) Expand all Loading... |
6799 Transform elementAt(int index) => this[index]; | 8412 Transform elementAt(int index) => this[index]; |
6800 // -- end List<Transform> mixins. | 8413 // -- end List<Transform> mixins. |
6801 | 8414 |
6802 @DomName('SVGTransformList.__setter__') | 8415 @DomName('SVGTransformList.__setter__') |
6803 @DocsEditable() | 8416 @DocsEditable() |
6804 @Experimental() // untriaged | 8417 @Experimental() // untriaged |
6805 void __setter__(int index, Transform value) => _blink.BlinkSVGTransformList.in
stance.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); | 8418 void __setter__(int index, Transform value) => _blink.BlinkSVGTransformList.in
stance.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
6806 | 8419 |
6807 @DomName('SVGTransformList.appendItem') | 8420 @DomName('SVGTransformList.appendItem') |
6808 @DocsEditable() | 8421 @DocsEditable() |
6809 Transform appendItem(Transform item) => _blink.BlinkSVGTransformList.instance.
appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(item)); | 8422 Transform appendItem(Transform item) => wrap_jso(_blink.BlinkSVGTransformList.
instance.appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(item))); |
6810 | 8423 |
6811 @DomName('SVGTransformList.clear') | 8424 @DomName('SVGTransformList.clear') |
6812 @DocsEditable() | 8425 @DocsEditable() |
6813 void clear() => _blink.BlinkSVGTransformList.instance.clear_Callback_0_(unwrap
_jso(this)); | 8426 void clear() => _blink.BlinkSVGTransformList.instance.clear_Callback_0_(unwrap
_jso(this)); |
6814 | 8427 |
6815 @DomName('SVGTransformList.consolidate') | 8428 @DomName('SVGTransformList.consolidate') |
6816 @DocsEditable() | 8429 @DocsEditable() |
6817 Transform consolidate() => _blink.BlinkSVGTransformList.instance.consolidate_C
allback_0_(unwrap_jso(this)); | 8430 Transform consolidate() => wrap_jso(_blink.BlinkSVGTransformList.instance.cons
olidate_Callback_0_(unwrap_jso(this))); |
6818 | 8431 |
6819 @DomName('SVGTransformList.createSVGTransformFromMatrix') | 8432 @DomName('SVGTransformList.createSVGTransformFromMatrix') |
6820 @DocsEditable() | 8433 @DocsEditable() |
6821 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGTransf
ormList.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(this), unwr
ap_jso(matrix)); | 8434 Transform createSvgTransformFromMatrix(Matrix matrix) => wrap_jso(_blink.Blink
SVGTransformList.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(th
is), unwrap_jso(matrix))); |
6822 | 8435 |
6823 @DomName('SVGTransformList.getItem') | 8436 @DomName('SVGTransformList.getItem') |
6824 @DocsEditable() | 8437 @DocsEditable() |
6825 Transform getItem(int index) => _blink.BlinkSVGTransformList.instance.getItem_
Callback_1_(unwrap_jso(this), index); | 8438 Transform getItem(int index) => wrap_jso(_blink.BlinkSVGTransformList.instance
.getItem_Callback_1_(unwrap_jso(this), index)); |
6826 | 8439 |
6827 @DomName('SVGTransformList.initialize') | 8440 @DomName('SVGTransformList.initialize') |
6828 @DocsEditable() | 8441 @DocsEditable() |
6829 Transform initialize(Transform item) => _blink.BlinkSVGTransformList.instance.
initialize_Callback_1_(unwrap_jso(this), unwrap_jso(item)); | 8442 Transform initialize(Transform item) => wrap_jso(_blink.BlinkSVGTransformList.
instance.initialize_Callback_1_(unwrap_jso(this), unwrap_jso(item))); |
6830 | 8443 |
6831 @DomName('SVGTransformList.insertItemBefore') | 8444 @DomName('SVGTransformList.insertItemBefore') |
6832 @DocsEditable() | 8445 @DocsEditable() |
6833 Transform insertItemBefore(Transform item, int index) => _blink.BlinkSVGTransf
ormList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item)
, index); | 8446 Transform insertItemBefore(Transform item, int index) => wrap_jso(_blink.Blink
SVGTransformList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_
jso(item), index)); |
6834 | 8447 |
6835 @DomName('SVGTransformList.removeItem') | 8448 @DomName('SVGTransformList.removeItem') |
6836 @DocsEditable() | 8449 @DocsEditable() |
6837 Transform removeItem(int index) => _blink.BlinkSVGTransformList.instance.remov
eItem_Callback_1_(unwrap_jso(this), index); | 8450 Transform removeItem(int index) => wrap_jso(_blink.BlinkSVGTransformList.insta
nce.removeItem_Callback_1_(unwrap_jso(this), index)); |
6838 | 8451 |
6839 @DomName('SVGTransformList.replaceItem') | 8452 @DomName('SVGTransformList.replaceItem') |
6840 @DocsEditable() | 8453 @DocsEditable() |
6841 Transform replaceItem(Transform item, int index) => _blink.BlinkSVGTransformLi
st.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); | 8454 Transform replaceItem(Transform item, int index) => wrap_jso(_blink.BlinkSVGTr
ansformList.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item),
index)); |
6842 | 8455 |
6843 } | 8456 } |
6844 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8457 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6845 // for details. All rights reserved. Use of this source code is governed by a | 8458 // for details. All rights reserved. Use of this source code is governed by a |
6846 // BSD-style license that can be found in the LICENSE file. | 8459 // BSD-style license that can be found in the LICENSE file. |
6847 | 8460 |
6848 // WARNING: Do not edit - generated code. | 8461 // WARNING: Do not edit - generated code. |
6849 | 8462 |
6850 | 8463 |
6851 @DocsEditable() | 8464 @DocsEditable() |
6852 @DomName('SVGUnitTypes') | 8465 @DomName('SVGUnitTypes') |
6853 @Unstable() | 8466 @Unstable() |
6854 class UnitTypes extends NativeFieldWrapperClass2 { | 8467 class UnitTypes extends NativeFieldWrapperClass2 { |
6855 // To suppress missing implicit constructor warnings. | 8468 // To suppress missing implicit constructor warnings. |
6856 factory UnitTypes._() { throw new UnsupportedError("Not supported"); } | 8469 factory UnitTypes._() { throw new UnsupportedError("Not supported"); } |
6857 | 8470 |
| 8471 static UnitTypes internalCreateUnitTypes() { |
| 8472 return new UnitTypes._internalWrap(); |
| 8473 } |
| 8474 |
| 8475 js.JsObject blink_jsObject; |
| 8476 |
| 8477 factory UnitTypes._internalWrap() { |
| 8478 return new UnitTypes.internal_(); |
| 8479 } |
| 8480 |
| 8481 UnitTypes.internal_() { } |
| 8482 |
| 8483 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 8484 int get hashCode => unwrap_jso(this).hashCode; |
| 8485 |
6858 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') | 8486 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') |
6859 @DocsEditable() | 8487 @DocsEditable() |
6860 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; | 8488 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; |
6861 | 8489 |
6862 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') | 8490 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') |
6863 @DocsEditable() | 8491 @DocsEditable() |
6864 static const int SVG_UNIT_TYPE_UNKNOWN = 0; | 8492 static const int SVG_UNIT_TYPE_UNKNOWN = 0; |
6865 | 8493 |
6866 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE') | 8494 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE') |
6867 @DocsEditable() | 8495 @DocsEditable() |
(...skipping 29 matching lines...) Expand all Loading... |
6897 @DocsEditable() | 8525 @DocsEditable() |
6898 @DomName('SVGUseElement') | 8526 @DomName('SVGUseElement') |
6899 @Unstable() | 8527 @Unstable() |
6900 class UseElement extends GraphicsElement implements UriReference { | 8528 class UseElement extends GraphicsElement implements UriReference { |
6901 // To suppress missing implicit constructor warnings. | 8529 // To suppress missing implicit constructor warnings. |
6902 factory UseElement._() { throw new UnsupportedError("Not supported"); } | 8530 factory UseElement._() { throw new UnsupportedError("Not supported"); } |
6903 | 8531 |
6904 @DomName('SVGUseElement.SVGUseElement') | 8532 @DomName('SVGUseElement.SVGUseElement') |
6905 @DocsEditable() | 8533 @DocsEditable() |
6906 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use")
; | 8534 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use")
; |
| 8535 |
| 8536 |
| 8537 static UseElement internalCreateUseElement() { |
| 8538 return new UseElement._internalWrap(); |
| 8539 } |
| 8540 |
| 8541 factory UseElement._internalWrap() { |
| 8542 return new UseElement.internal_(); |
| 8543 } |
| 8544 |
| 8545 UseElement.internal_() : super.internal_(); |
| 8546 |
6907 /** | 8547 /** |
6908 * Constructor instantiated by the DOM when a custom element has been created. | 8548 * Constructor instantiated by the DOM when a custom element has been created. |
6909 * | 8549 * |
6910 * This can only be called by subclasses from their created constructor. | 8550 * This can only be called by subclasses from their created constructor. |
6911 */ | 8551 */ |
6912 UseElement.created() : super.created(); | 8552 UseElement.created() : super.created(); |
6913 | 8553 |
6914 @DomName('SVGUseElement.height') | 8554 @DomName('SVGUseElement.height') |
6915 @DocsEditable() | 8555 @DocsEditable() |
6916 AnimatedLength get height => wrap_jso(_blink.BlinkSVGUseElement.instance.heigh
t_Getter_(unwrap_jso(this))); | 8556 AnimatedLength get height => wrap_jso(_blink.BlinkSVGUseElement.instance.heigh
t_Getter_(unwrap_jso(this))); |
(...skipping 25 matching lines...) Expand all Loading... |
6942 @DocsEditable() | 8582 @DocsEditable() |
6943 @DomName('SVGViewElement') | 8583 @DomName('SVGViewElement') |
6944 @Unstable() | 8584 @Unstable() |
6945 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan { | 8585 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan { |
6946 // To suppress missing implicit constructor warnings. | 8586 // To suppress missing implicit constructor warnings. |
6947 factory ViewElement._() { throw new UnsupportedError("Not supported"); } | 8587 factory ViewElement._() { throw new UnsupportedError("Not supported"); } |
6948 | 8588 |
6949 @DomName('SVGViewElement.SVGViewElement') | 8589 @DomName('SVGViewElement.SVGViewElement') |
6950 @DocsEditable() | 8590 @DocsEditable() |
6951 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view
"); | 8591 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view
"); |
| 8592 |
| 8593 |
| 8594 static ViewElement internalCreateViewElement() { |
| 8595 return new ViewElement._internalWrap(); |
| 8596 } |
| 8597 |
| 8598 factory ViewElement._internalWrap() { |
| 8599 return new ViewElement.internal_(); |
| 8600 } |
| 8601 |
| 8602 ViewElement.internal_() : super.internal_(); |
| 8603 |
6952 /** | 8604 /** |
6953 * Constructor instantiated by the DOM when a custom element has been created. | 8605 * Constructor instantiated by the DOM when a custom element has been created. |
6954 * | 8606 * |
6955 * This can only be called by subclasses from their created constructor. | 8607 * This can only be called by subclasses from their created constructor. |
6956 */ | 8608 */ |
6957 ViewElement.created() : super.created(); | 8609 ViewElement.created() : super.created(); |
6958 | 8610 |
6959 @DomName('SVGViewElement.viewTarget') | 8611 @DomName('SVGViewElement.viewTarget') |
6960 @DocsEditable() | 8612 @DocsEditable() |
6961 StringList get viewTarget => wrap_jso(_blink.BlinkSVGViewElement.instance.view
Target_Getter_(unwrap_jso(this))); | 8613 StringList get viewTarget => wrap_jso(_blink.BlinkSVGViewElement.instance.view
Target_Getter_(unwrap_jso(this))); |
6962 | 8614 |
6963 @DomName('SVGViewElement.preserveAspectRatio') | 8615 @DomName('SVGViewElement.preserveAspectRatio') |
6964 @DocsEditable() | 8616 @DocsEditable() |
6965 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GViewElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); | 8617 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GViewElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); |
6966 | 8618 |
6967 @DomName('SVGViewElement.viewBox') | 8619 @DomName('SVGViewElement.viewBox') |
6968 @DocsEditable() | 8620 @DocsEditable() |
6969 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewElement.instance.viewB
ox_Getter_(unwrap_jso(this))); | 8621 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewElement.instance.viewB
ox_Getter_(unwrap_jso(this))); |
6970 | 8622 |
6971 @DomName('SVGViewElement.zoomAndPan') | 8623 @DomName('SVGViewElement.zoomAndPan') |
6972 @DocsEditable() | 8624 @DocsEditable() |
6973 int get zoomAndPan => _blink.BlinkSVGViewElement.instance.zoomAndPan_Getter_(u
nwrap_jso(this)); | 8625 int get zoomAndPan => _blink.BlinkSVGViewElement.instance.zoomAndPan_Getter_(u
nwrap_jso(this)); |
6974 | 8626 |
6975 @DomName('SVGViewElement.zoomAndPan') | 8627 @DomName('SVGViewElement.zoomAndPan') |
6976 @DocsEditable() | 8628 @DocsEditable() |
6977 void set zoomAndPan(int value) => _blink.BlinkSVGViewElement.instance.zoomAndP
an_Setter_(unwrap_jso(this), value); | 8629 set zoomAndPan(int value) => _blink.BlinkSVGViewElement.instance.zoomAndPan_Se
tter_(unwrap_jso(this), value); |
6978 | 8630 |
6979 } | 8631 } |
6980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8632 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6981 // for details. All rights reserved. Use of this source code is governed by a | 8633 // for details. All rights reserved. Use of this source code is governed by a |
6982 // BSD-style license that can be found in the LICENSE file. | 8634 // BSD-style license that can be found in the LICENSE file. |
6983 | 8635 |
6984 // WARNING: Do not edit - generated code. | 8636 // WARNING: Do not edit - generated code. |
6985 | 8637 |
6986 | 8638 |
6987 @DocsEditable() | 8639 @DocsEditable() |
6988 @DomName('SVGViewSpec') | 8640 @DomName('SVGViewSpec') |
6989 @Unstable() | 8641 @Unstable() |
6990 class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd
Pan { | 8642 class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd
Pan { |
6991 // To suppress missing implicit constructor warnings. | 8643 // To suppress missing implicit constructor warnings. |
6992 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } | 8644 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } |
6993 | 8645 |
| 8646 static ViewSpec internalCreateViewSpec() { |
| 8647 return new ViewSpec._internalWrap(); |
| 8648 } |
| 8649 |
| 8650 js.JsObject blink_jsObject; |
| 8651 |
| 8652 factory ViewSpec._internalWrap() { |
| 8653 return new ViewSpec.internal_(); |
| 8654 } |
| 8655 |
| 8656 ViewSpec.internal_() { } |
| 8657 |
| 8658 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 8659 int get hashCode => unwrap_jso(this).hashCode; |
| 8660 |
6994 @DomName('SVGViewSpec.preserveAspectRatioString') | 8661 @DomName('SVGViewSpec.preserveAspectRatioString') |
6995 @DocsEditable() | 8662 @DocsEditable() |
6996 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese
rveAspectRatioString_Getter_(unwrap_jso(this)); | 8663 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese
rveAspectRatioString_Getter_(unwrap_jso(this)); |
6997 | 8664 |
6998 @DomName('SVGViewSpec.transform') | 8665 @DomName('SVGViewSpec.transform') |
6999 @DocsEditable() | 8666 @DocsEditable() |
7000 TransformList get transform => wrap_jso(_blink.BlinkSVGViewSpec.instance.trans
form_Getter_(unwrap_jso(this))); | 8667 TransformList get transform => wrap_jso(_blink.BlinkSVGViewSpec.instance.trans
form_Getter_(unwrap_jso(this))); |
7001 | 8668 |
7002 @DomName('SVGViewSpec.transformString') | 8669 @DomName('SVGViewSpec.transformString') |
7003 @DocsEditable() | 8670 @DocsEditable() |
(...skipping 22 matching lines...) Expand all Loading... |
7026 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewSpec.instance.viewBox_
Getter_(unwrap_jso(this))); | 8693 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewSpec.instance.viewBox_
Getter_(unwrap_jso(this))); |
7027 | 8694 |
7028 @DomName('SVGViewSpec.zoomAndPan') | 8695 @DomName('SVGViewSpec.zoomAndPan') |
7029 @DocsEditable() | 8696 @DocsEditable() |
7030 @Experimental() // nonstandard | 8697 @Experimental() // nonstandard |
7031 int get zoomAndPan => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Getter_(unwr
ap_jso(this)); | 8698 int get zoomAndPan => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Getter_(unwr
ap_jso(this)); |
7032 | 8699 |
7033 @DomName('SVGViewSpec.zoomAndPan') | 8700 @DomName('SVGViewSpec.zoomAndPan') |
7034 @DocsEditable() | 8701 @DocsEditable() |
7035 @Experimental() // nonstandard | 8702 @Experimental() // nonstandard |
7036 void set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.instance.zoomAndPan_
Setter_(unwrap_jso(this), value); | 8703 set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Sette
r_(unwrap_jso(this), value); |
7037 | 8704 |
7038 } | 8705 } |
7039 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8706 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7040 // for details. All rights reserved. Use of this source code is governed by a | 8707 // for details. All rights reserved. Use of this source code is governed by a |
7041 // BSD-style license that can be found in the LICENSE file. | 8708 // BSD-style license that can be found in the LICENSE file. |
7042 | 8709 |
7043 // WARNING: Do not edit - generated code. | 8710 // WARNING: Do not edit - generated code. |
7044 | 8711 |
7045 | 8712 |
7046 @DocsEditable() | 8713 @DocsEditable() |
(...skipping 14 matching lines...) Expand all Loading... |
7061 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN') | 8728 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN') |
7062 @DocsEditable() | 8729 @DocsEditable() |
7063 static const int SVG_ZOOMANDPAN_UNKNOWN = 0; | 8730 static const int SVG_ZOOMANDPAN_UNKNOWN = 0; |
7064 | 8731 |
7065 @DomName('SVGZoomAndPan.zoomAndPan') | 8732 @DomName('SVGZoomAndPan.zoomAndPan') |
7066 @DocsEditable() | 8733 @DocsEditable() |
7067 int get zoomAndPan; | 8734 int get zoomAndPan; |
7068 | 8735 |
7069 @DomName('SVGZoomAndPan.zoomAndPan') | 8736 @DomName('SVGZoomAndPan.zoomAndPan') |
7070 @DocsEditable() | 8737 @DocsEditable() |
7071 void set zoomAndPan(int value); | 8738 set zoomAndPan(int value); |
7072 | 8739 |
7073 } | 8740 } |
7074 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8741 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7075 // for details. All rights reserved. Use of this source code is governed by a | 8742 // for details. All rights reserved. Use of this source code is governed by a |
7076 // BSD-style license that can be found in the LICENSE file. | 8743 // BSD-style license that can be found in the LICENSE file. |
7077 | 8744 |
7078 // WARNING: Do not edit - generated code. | 8745 // WARNING: Do not edit - generated code. |
7079 | 8746 |
7080 | 8747 |
7081 @DocsEditable() | 8748 @DocsEditable() |
7082 @DomName('SVGZoomEvent') | 8749 @DomName('SVGZoomEvent') |
7083 @Unstable() | 8750 @Unstable() |
7084 class ZoomEvent extends UIEvent { | 8751 class ZoomEvent extends UIEvent { |
7085 // To suppress missing implicit constructor warnings. | 8752 // To suppress missing implicit constructor warnings. |
7086 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); } | 8753 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); } |
7087 | 8754 |
| 8755 |
| 8756 static ZoomEvent internalCreateZoomEvent() { |
| 8757 return new ZoomEvent._internalWrap(); |
| 8758 } |
| 8759 |
| 8760 factory ZoomEvent._internalWrap() { |
| 8761 return new ZoomEvent.internal_(); |
| 8762 } |
| 8763 |
| 8764 ZoomEvent.internal_() : super.internal_(); |
| 8765 |
| 8766 |
7088 @DomName('SVGZoomEvent.newScale') | 8767 @DomName('SVGZoomEvent.newScale') |
7089 @DocsEditable() | 8768 @DocsEditable() |
7090 double get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(unwr
ap_jso(this)); | 8769 num get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(unwrap_
jso(this)); |
7091 | 8770 |
7092 @DomName('SVGZoomEvent.newTranslate') | 8771 @DomName('SVGZoomEvent.newTranslate') |
7093 @DocsEditable() | 8772 @DocsEditable() |
7094 Point get newTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.newTransl
ate_Getter_(unwrap_jso(this))); | 8773 Point get newTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.newTransl
ate_Getter_(unwrap_jso(this))); |
7095 | 8774 |
7096 @DomName('SVGZoomEvent.previousScale') | 8775 @DomName('SVGZoomEvent.previousScale') |
7097 @DocsEditable() | 8776 @DocsEditable() |
7098 double get previousScale => _blink.BlinkSVGZoomEvent.instance.previousScale_Ge
tter_(unwrap_jso(this)); | 8777 num get previousScale => _blink.BlinkSVGZoomEvent.instance.previousScale_Gette
r_(unwrap_jso(this)); |
7099 | 8778 |
7100 @DomName('SVGZoomEvent.previousTranslate') | 8779 @DomName('SVGZoomEvent.previousTranslate') |
7101 @DocsEditable() | 8780 @DocsEditable() |
7102 Point get previousTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.prev
iousTranslate_Getter_(unwrap_jso(this))); | 8781 Point get previousTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.prev
iousTranslate_Getter_(unwrap_jso(this))); |
7103 | 8782 |
7104 @DomName('SVGZoomEvent.zoomRectScreen') | 8783 @DomName('SVGZoomEvent.zoomRectScreen') |
7105 @DocsEditable() | 8784 @DocsEditable() |
7106 Rect get zoomRectScreen => wrap_jso(_blink.BlinkSVGZoomEvent.instance.zoomRect
Screen_Getter_(unwrap_jso(this))); | 8785 Rect get zoomRectScreen => wrap_jso(_blink.BlinkSVGZoomEvent.instance.zoomRect
Screen_Getter_(unwrap_jso(this))); |
7107 | 8786 |
7108 } | 8787 } |
7109 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8788 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7110 // for details. All rights reserved. Use of this source code is governed by a | 8789 // for details. All rights reserved. Use of this source code is governed by a |
7111 // BSD-style license that can be found in the LICENSE file. | 8790 // BSD-style license that can be found in the LICENSE file. |
7112 | 8791 |
7113 // WARNING: Do not edit - generated code. | 8792 // WARNING: Do not edit - generated code. |
7114 | 8793 |
7115 | 8794 |
7116 @DocsEditable() | 8795 @DocsEditable() |
7117 @DomName('SVGGradientElement') | 8796 @DomName('SVGGradientElement') |
7118 @Unstable() | 8797 @Unstable() |
7119 class _GradientElement extends SvgElement implements UriReference { | 8798 class _GradientElement extends SvgElement implements UriReference { |
7120 // To suppress missing implicit constructor warnings. | 8799 // To suppress missing implicit constructor warnings. |
7121 factory _GradientElement._() { throw new UnsupportedError("Not supported"); } | 8800 factory _GradientElement._() { throw new UnsupportedError("Not supported"); } |
| 8801 |
| 8802 |
| 8803 static _GradientElement internalCreate_GradientElement() { |
| 8804 return new _GradientElement._internalWrap(); |
| 8805 } |
| 8806 |
| 8807 factory _GradientElement._internalWrap() { |
| 8808 return new _GradientElement.internal_(); |
| 8809 } |
| 8810 |
| 8811 _GradientElement.internal_() : super.internal_(); |
| 8812 |
7122 /** | 8813 /** |
7123 * Constructor instantiated by the DOM when a custom element has been created. | 8814 * Constructor instantiated by the DOM when a custom element has been created. |
7124 * | 8815 * |
7125 * This can only be called by subclasses from their created constructor. | 8816 * This can only be called by subclasses from their created constructor. |
7126 */ | 8817 */ |
7127 _GradientElement.created() : super.created(); | 8818 _GradientElement.created() : super.created(); |
7128 | 8819 |
7129 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') | 8820 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') |
7130 @DocsEditable() | 8821 @DocsEditable() |
7131 static const int SVG_SPREADMETHOD_PAD = 1; | 8822 static const int SVG_SPREADMETHOD_PAD = 1; |
(...skipping 30 matching lines...) Expand all Loading... |
7162 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8853 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7163 // for details. All rights reserved. Use of this source code is governed by a | 8854 // for details. All rights reserved. Use of this source code is governed by a |
7164 // BSD-style license that can be found in the LICENSE file. | 8855 // BSD-style license that can be found in the LICENSE file. |
7165 | 8856 |
7166 // WARNING: Do not edit - generated code. | 8857 // WARNING: Do not edit - generated code. |
7167 | 8858 |
7168 | 8859 |
7169 @DocsEditable() | 8860 @DocsEditable() |
7170 @DomName('SVGAltGlyphDefElement') | 8861 @DomName('SVGAltGlyphDefElement') |
7171 @Unstable() | 8862 @Unstable() |
7172 abstract class _SVGAltGlyphDefElement extends SvgElement { | 8863 class _SVGAltGlyphDefElement extends SvgElement { |
7173 // To suppress missing implicit constructor warnings. | 8864 // To suppress missing implicit constructor warnings. |
7174 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported
"); } | 8865 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported
"); } |
| 8866 |
| 8867 |
| 8868 static _SVGAltGlyphDefElement internalCreate_SVGAltGlyphDefElement() { |
| 8869 return new _SVGAltGlyphDefElement._internalWrap(); |
| 8870 } |
| 8871 |
| 8872 factory _SVGAltGlyphDefElement._internalWrap() { |
| 8873 return new _SVGAltGlyphDefElement.internal_(); |
| 8874 } |
| 8875 |
| 8876 _SVGAltGlyphDefElement.internal_() : super.internal_(); |
| 8877 |
7175 /** | 8878 /** |
7176 * Constructor instantiated by the DOM when a custom element has been created. | 8879 * Constructor instantiated by the DOM when a custom element has been created. |
7177 * | 8880 * |
7178 * This can only be called by subclasses from their created constructor. | 8881 * This can only be called by subclasses from their created constructor. |
7179 */ | 8882 */ |
7180 _SVGAltGlyphDefElement.created() : super.created(); | 8883 _SVGAltGlyphDefElement.created() : super.created(); |
7181 | 8884 |
7182 } | 8885 } |
7183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8886 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7184 // for details. All rights reserved. Use of this source code is governed by a | 8887 // for details. All rights reserved. Use of this source code is governed by a |
7185 // BSD-style license that can be found in the LICENSE file. | 8888 // BSD-style license that can be found in the LICENSE file. |
7186 | 8889 |
7187 // WARNING: Do not edit - generated code. | 8890 // WARNING: Do not edit - generated code. |
7188 | 8891 |
7189 | 8892 |
7190 @DocsEditable() | 8893 @DocsEditable() |
7191 @DomName('SVGAltGlyphItemElement') | 8894 @DomName('SVGAltGlyphItemElement') |
7192 @Unstable() | 8895 @Unstable() |
7193 abstract class _SVGAltGlyphItemElement extends SvgElement { | 8896 class _SVGAltGlyphItemElement extends SvgElement { |
7194 // To suppress missing implicit constructor warnings. | 8897 // To suppress missing implicit constructor warnings. |
7195 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte
d"); } | 8898 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 8899 |
| 8900 |
| 8901 static _SVGAltGlyphItemElement internalCreate_SVGAltGlyphItemElement() { |
| 8902 return new _SVGAltGlyphItemElement._internalWrap(); |
| 8903 } |
| 8904 |
| 8905 factory _SVGAltGlyphItemElement._internalWrap() { |
| 8906 return new _SVGAltGlyphItemElement.internal_(); |
| 8907 } |
| 8908 |
| 8909 _SVGAltGlyphItemElement.internal_() : super.internal_(); |
| 8910 |
7196 /** | 8911 /** |
7197 * Constructor instantiated by the DOM when a custom element has been created. | 8912 * Constructor instantiated by the DOM when a custom element has been created. |
7198 * | 8913 * |
7199 * This can only be called by subclasses from their created constructor. | 8914 * This can only be called by subclasses from their created constructor. |
7200 */ | 8915 */ |
7201 _SVGAltGlyphItemElement.created() : super.created(); | 8916 _SVGAltGlyphItemElement.created() : super.created(); |
7202 | 8917 |
7203 } | 8918 } |
7204 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8919 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7205 // for details. All rights reserved. Use of this source code is governed by a | 8920 // for details. All rights reserved. Use of this source code is governed by a |
7206 // BSD-style license that can be found in the LICENSE file. | 8921 // BSD-style license that can be found in the LICENSE file. |
7207 | 8922 |
7208 // WARNING: Do not edit - generated code. | 8923 // WARNING: Do not edit - generated code. |
7209 | 8924 |
7210 | 8925 |
7211 @DocsEditable() | 8926 @DocsEditable() |
7212 @DomName('SVGComponentTransferFunctionElement') | 8927 @DomName('SVGComponentTransferFunctionElement') |
7213 @Unstable() | 8928 @Unstable() |
7214 abstract class _SVGComponentTransferFunctionElement extends SvgElement { | 8929 class _SVGComponentTransferFunctionElement extends SvgElement { |
7215 // To suppress missing implicit constructor warnings. | 8930 // To suppress missing implicit constructor warnings. |
7216 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError(
"Not supported"); } | 8931 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError(
"Not supported"); } |
| 8932 |
| 8933 |
| 8934 static _SVGComponentTransferFunctionElement internalCreate_SVGComponentTransfe
rFunctionElement() { |
| 8935 return new _SVGComponentTransferFunctionElement._internalWrap(); |
| 8936 } |
| 8937 |
| 8938 factory _SVGComponentTransferFunctionElement._internalWrap() { |
| 8939 return new _SVGComponentTransferFunctionElement.internal_(); |
| 8940 } |
| 8941 |
| 8942 _SVGComponentTransferFunctionElement.internal_() : super.internal_(); |
| 8943 |
7217 /** | 8944 /** |
7218 * Constructor instantiated by the DOM when a custom element has been created. | 8945 * Constructor instantiated by the DOM when a custom element has been created. |
7219 * | 8946 * |
7220 * This can only be called by subclasses from their created constructor. | 8947 * This can only be called by subclasses from their created constructor. |
7221 */ | 8948 */ |
7222 _SVGComponentTransferFunctionElement.created() : super.created(); | 8949 _SVGComponentTransferFunctionElement.created() : super.created(); |
7223 | 8950 |
7224 } | 8951 } |
7225 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8952 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7226 // for details. All rights reserved. Use of this source code is governed by a | 8953 // for details. All rights reserved. Use of this source code is governed by a |
7227 // BSD-style license that can be found in the LICENSE file. | 8954 // BSD-style license that can be found in the LICENSE file. |
7228 | 8955 |
7229 // WARNING: Do not edit - generated code. | |
7230 | |
7231 | 8956 |
7232 @DocsEditable() | 8957 @DocsEditable() |
7233 @DomName('SVGCursorElement') | 8958 @DomName('SVGCursorElement') |
7234 @Unstable() | 8959 @Unstable() |
7235 abstract class _SVGCursorElement extends SvgElement implements UriReference, Tes
ts { | 8960 class _SVGCursorElement extends SvgElement implements UriReference, Tests { |
7236 // To suppress missing implicit constructor warnings. | 8961 // To suppress missing implicit constructor warnings. |
7237 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); } | 8962 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); } |
7238 | 8963 |
7239 @DomName('SVGCursorElement.SVGCursorElement') | 8964 @DomName('SVGCursorElement.SVGCursorElement') |
7240 @DocsEditable() | 8965 @DocsEditable() |
7241 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag
("cursor"); | 8966 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag
("cursor"); |
| 8967 |
| 8968 |
| 8969 static _SVGCursorElement internalCreate_SVGCursorElement() { |
| 8970 return new _SVGCursorElement._internalWrap(); |
| 8971 } |
| 8972 |
| 8973 factory _SVGCursorElement._internalWrap() { |
| 8974 return new _SVGCursorElement.internal_(); |
| 8975 } |
| 8976 |
| 8977 _SVGCursorElement.internal_() : super.internal_(); |
| 8978 |
7242 /** | 8979 /** |
7243 * Constructor instantiated by the DOM when a custom element has been created. | 8980 * Constructor instantiated by the DOM when a custom element has been created. |
7244 * | 8981 * |
7245 * This can only be called by subclasses from their created constructor. | 8982 * This can only be called by subclasses from their created constructor. |
7246 */ | 8983 */ |
7247 _SVGCursorElement.created() : super.created(); | 8984 _SVGCursorElement.created() : super.created(); |
7248 | 8985 |
7249 /// Checks if this type is supported on the current platform. | 8986 /// Checks if this type is supported on the current platform. |
7250 static bool get supported => true; | 8987 static bool get supported => true; |
7251 | 8988 |
| 8989 // Override these methods for Dartium _SVGCursorElement can't be abstract. |
| 8990 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGCursorElement.ins
tance.requiredExtensions_Getter_(unwrap_jso(this))); |
| 8991 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGCursorElement.insta
nce.requiredFeatures_Getter_(unwrap_jso(this))); |
| 8992 StringList get systemLanguage => wrap_jso(_blink.BlinkSVGCursorElement.instanc
e.systemLanguage_Getter_(unwrap_jso(this))); |
| 8993 AnimatedString get href => wrap_jso(_blink.BlinkSVGCursorElement.instance.href
_Getter_(unwrap_jso(this))); |
| 8994 bool hasExtension(String extension) => _blink.BlinkSVGCursorElement.instance.h
asExtension_Callback_1_(unwrap_jso(this), extension); |
7252 } | 8995 } |
| 8996 |
7253 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8997 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7254 // for details. All rights reserved. Use of this source code is governed by a | 8998 // for details. All rights reserved. Use of this source code is governed by a |
7255 // BSD-style license that can be found in the LICENSE file. | 8999 // BSD-style license that can be found in the LICENSE file. |
7256 | 9000 |
7257 // WARNING: Do not edit - generated code. | |
7258 | |
7259 | 9001 |
7260 @DocsEditable() | 9002 @DocsEditable() |
7261 @DomName('SVGFEDropShadowElement') | 9003 @DomName('SVGFEDropShadowElement') |
7262 @Experimental() // nonstandard | 9004 @Experimental() // nonstandard |
7263 abstract class _SVGFEDropShadowElement extends SvgElement implements FilterPrimi
tiveStandardAttributes { | 9005 class _SVGFEDropShadowElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { |
7264 // To suppress missing implicit constructor warnings. | 9006 // To suppress missing implicit constructor warnings. |
7265 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte
d"); } | 9007 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 9008 |
| 9009 |
| 9010 static _SVGFEDropShadowElement internalCreate_SVGFEDropShadowElement() { |
| 9011 return new _SVGFEDropShadowElement._internalWrap(); |
| 9012 } |
| 9013 |
| 9014 factory _SVGFEDropShadowElement._internalWrap() { |
| 9015 return new _SVGFEDropShadowElement.internal_(); |
| 9016 } |
| 9017 |
| 9018 _SVGFEDropShadowElement.internal_() : super.internal_(); |
| 9019 |
7266 /** | 9020 /** |
7267 * Constructor instantiated by the DOM when a custom element has been created. | 9021 * Constructor instantiated by the DOM when a custom element has been created. |
7268 * | 9022 * |
7269 * This can only be called by subclasses from their created constructor. | 9023 * This can only be called by subclasses from their created constructor. |
7270 */ | 9024 */ |
7271 _SVGFEDropShadowElement.created() : super.created(); | 9025 _SVGFEDropShadowElement.created() : super.created(); |
7272 | 9026 |
| 9027 // Override these methods for Dartium _SVGFEDropShadowElement can't be abstrac
t. |
| 9028 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEDropShadowElement.insta
nce.height_Getter_(unwrap_jso(this))); |
| 9029 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEDropShadowElement.insta
nce.result_Getter_(unwrap_jso(this))); |
| 9030 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEDropShadowElement.instan
ce.width_Getter_(unwrap_jso(this))); |
| 9031 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEDropShadowElement.instance.x
_Getter_(unwrap_jso(this))); |
| 9032 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEDropShadowElement.instance.y
_Getter_(unwrap_jso(this))); |
7273 } | 9033 } |
| 9034 |
7274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9035 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7275 // for details. All rights reserved. Use of this source code is governed by a | 9036 // for details. All rights reserved. Use of this source code is governed by a |
7276 // BSD-style license that can be found in the LICENSE file. | 9037 // BSD-style license that can be found in the LICENSE file. |
7277 | 9038 |
7278 // WARNING: Do not edit - generated code. | 9039 // WARNING: Do not edit - generated code. |
7279 | 9040 |
7280 | 9041 |
7281 @DocsEditable() | 9042 @DocsEditable() |
7282 @DomName('SVGFontElement') | 9043 @DomName('SVGFontElement') |
7283 @Unstable() | 9044 @Unstable() |
7284 abstract class _SVGFontElement extends SvgElement { | 9045 class _SVGFontElement extends SvgElement { |
7285 // To suppress missing implicit constructor warnings. | 9046 // To suppress missing implicit constructor warnings. |
7286 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); } | 9047 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); } |
| 9048 |
| 9049 |
| 9050 static _SVGFontElement internalCreate_SVGFontElement() { |
| 9051 return new _SVGFontElement._internalWrap(); |
| 9052 } |
| 9053 |
| 9054 factory _SVGFontElement._internalWrap() { |
| 9055 return new _SVGFontElement.internal_(); |
| 9056 } |
| 9057 |
| 9058 _SVGFontElement.internal_() : super.internal_(); |
| 9059 |
7287 /** | 9060 /** |
7288 * Constructor instantiated by the DOM when a custom element has been created. | 9061 * Constructor instantiated by the DOM when a custom element has been created. |
7289 * | 9062 * |
7290 * This can only be called by subclasses from their created constructor. | 9063 * This can only be called by subclasses from their created constructor. |
7291 */ | 9064 */ |
7292 _SVGFontElement.created() : super.created(); | 9065 _SVGFontElement.created() : super.created(); |
7293 | 9066 |
7294 } | 9067 } |
7295 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9068 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7296 // for details. All rights reserved. Use of this source code is governed by a | 9069 // for details. All rights reserved. Use of this source code is governed by a |
7297 // BSD-style license that can be found in the LICENSE file. | 9070 // BSD-style license that can be found in the LICENSE file. |
7298 | 9071 |
7299 // WARNING: Do not edit - generated code. | 9072 // WARNING: Do not edit - generated code. |
7300 | 9073 |
7301 | 9074 |
7302 @DocsEditable() | 9075 @DocsEditable() |
7303 @DomName('SVGFontFaceElement') | 9076 @DomName('SVGFontFaceElement') |
7304 @Unstable() | 9077 @Unstable() |
7305 abstract class _SVGFontFaceElement extends SvgElement { | 9078 class _SVGFontFaceElement extends SvgElement { |
7306 // To suppress missing implicit constructor warnings. | 9079 // To suppress missing implicit constructor warnings. |
7307 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported");
} | 9080 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported");
} |
| 9081 |
| 9082 |
| 9083 static _SVGFontFaceElement internalCreate_SVGFontFaceElement() { |
| 9084 return new _SVGFontFaceElement._internalWrap(); |
| 9085 } |
| 9086 |
| 9087 factory _SVGFontFaceElement._internalWrap() { |
| 9088 return new _SVGFontFaceElement.internal_(); |
| 9089 } |
| 9090 |
| 9091 _SVGFontFaceElement.internal_() : super.internal_(); |
| 9092 |
7308 /** | 9093 /** |
7309 * Constructor instantiated by the DOM when a custom element has been created. | 9094 * Constructor instantiated by the DOM when a custom element has been created. |
7310 * | 9095 * |
7311 * This can only be called by subclasses from their created constructor. | 9096 * This can only be called by subclasses from their created constructor. |
7312 */ | 9097 */ |
7313 _SVGFontFaceElement.created() : super.created(); | 9098 _SVGFontFaceElement.created() : super.created(); |
7314 | 9099 |
7315 } | 9100 } |
7316 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9101 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7317 // for details. All rights reserved. Use of this source code is governed by a | 9102 // for details. All rights reserved. Use of this source code is governed by a |
7318 // BSD-style license that can be found in the LICENSE file. | 9103 // BSD-style license that can be found in the LICENSE file. |
7319 | 9104 |
7320 // WARNING: Do not edit - generated code. | 9105 // WARNING: Do not edit - generated code. |
7321 | 9106 |
7322 | 9107 |
7323 @DocsEditable() | 9108 @DocsEditable() |
7324 @DomName('SVGFontFaceFormatElement') | 9109 @DomName('SVGFontFaceFormatElement') |
7325 @Unstable() | 9110 @Unstable() |
7326 abstract class _SVGFontFaceFormatElement extends SvgElement { | 9111 class _SVGFontFaceFormatElement extends SvgElement { |
7327 // To suppress missing implicit constructor warnings. | 9112 // To suppress missing implicit constructor warnings. |
7328 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor
ted"); } | 9113 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor
ted"); } |
| 9114 |
| 9115 |
| 9116 static _SVGFontFaceFormatElement internalCreate_SVGFontFaceFormatElement() { |
| 9117 return new _SVGFontFaceFormatElement._internalWrap(); |
| 9118 } |
| 9119 |
| 9120 factory _SVGFontFaceFormatElement._internalWrap() { |
| 9121 return new _SVGFontFaceFormatElement.internal_(); |
| 9122 } |
| 9123 |
| 9124 _SVGFontFaceFormatElement.internal_() : super.internal_(); |
| 9125 |
7329 /** | 9126 /** |
7330 * Constructor instantiated by the DOM when a custom element has been created. | 9127 * Constructor instantiated by the DOM when a custom element has been created. |
7331 * | 9128 * |
7332 * This can only be called by subclasses from their created constructor. | 9129 * This can only be called by subclasses from their created constructor. |
7333 */ | 9130 */ |
7334 _SVGFontFaceFormatElement.created() : super.created(); | 9131 _SVGFontFaceFormatElement.created() : super.created(); |
7335 | 9132 |
7336 } | 9133 } |
7337 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9134 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7338 // for details. All rights reserved. Use of this source code is governed by a | 9135 // for details. All rights reserved. Use of this source code is governed by a |
7339 // BSD-style license that can be found in the LICENSE file. | 9136 // BSD-style license that can be found in the LICENSE file. |
7340 | 9137 |
7341 // WARNING: Do not edit - generated code. | 9138 // WARNING: Do not edit - generated code. |
7342 | 9139 |
7343 | 9140 |
7344 @DocsEditable() | 9141 @DocsEditable() |
7345 @DomName('SVGFontFaceNameElement') | 9142 @DomName('SVGFontFaceNameElement') |
7346 @Unstable() | 9143 @Unstable() |
7347 abstract class _SVGFontFaceNameElement extends SvgElement { | 9144 class _SVGFontFaceNameElement extends SvgElement { |
7348 // To suppress missing implicit constructor warnings. | 9145 // To suppress missing implicit constructor warnings. |
7349 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte
d"); } | 9146 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 9147 |
| 9148 |
| 9149 static _SVGFontFaceNameElement internalCreate_SVGFontFaceNameElement() { |
| 9150 return new _SVGFontFaceNameElement._internalWrap(); |
| 9151 } |
| 9152 |
| 9153 factory _SVGFontFaceNameElement._internalWrap() { |
| 9154 return new _SVGFontFaceNameElement.internal_(); |
| 9155 } |
| 9156 |
| 9157 _SVGFontFaceNameElement.internal_() : super.internal_(); |
| 9158 |
7350 /** | 9159 /** |
7351 * Constructor instantiated by the DOM when a custom element has been created. | 9160 * Constructor instantiated by the DOM when a custom element has been created. |
7352 * | 9161 * |
7353 * This can only be called by subclasses from their created constructor. | 9162 * This can only be called by subclasses from their created constructor. |
7354 */ | 9163 */ |
7355 _SVGFontFaceNameElement.created() : super.created(); | 9164 _SVGFontFaceNameElement.created() : super.created(); |
7356 | 9165 |
7357 } | 9166 } |
7358 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9167 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7359 // for details. All rights reserved. Use of this source code is governed by a | 9168 // for details. All rights reserved. Use of this source code is governed by a |
7360 // BSD-style license that can be found in the LICENSE file. | 9169 // BSD-style license that can be found in the LICENSE file. |
7361 | 9170 |
7362 // WARNING: Do not edit - generated code. | 9171 // WARNING: Do not edit - generated code. |
7363 | 9172 |
7364 | 9173 |
7365 @DocsEditable() | 9174 @DocsEditable() |
7366 @DomName('SVGFontFaceSrcElement') | 9175 @DomName('SVGFontFaceSrcElement') |
7367 @Unstable() | 9176 @Unstable() |
7368 abstract class _SVGFontFaceSrcElement extends SvgElement { | 9177 class _SVGFontFaceSrcElement extends SvgElement { |
7369 // To suppress missing implicit constructor warnings. | 9178 // To suppress missing implicit constructor warnings. |
7370 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported
"); } | 9179 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported
"); } |
| 9180 |
| 9181 |
| 9182 static _SVGFontFaceSrcElement internalCreate_SVGFontFaceSrcElement() { |
| 9183 return new _SVGFontFaceSrcElement._internalWrap(); |
| 9184 } |
| 9185 |
| 9186 factory _SVGFontFaceSrcElement._internalWrap() { |
| 9187 return new _SVGFontFaceSrcElement.internal_(); |
| 9188 } |
| 9189 |
| 9190 _SVGFontFaceSrcElement.internal_() : super.internal_(); |
| 9191 |
7371 /** | 9192 /** |
7372 * Constructor instantiated by the DOM when a custom element has been created. | 9193 * Constructor instantiated by the DOM when a custom element has been created. |
7373 * | 9194 * |
7374 * This can only be called by subclasses from their created constructor. | 9195 * This can only be called by subclasses from their created constructor. |
7375 */ | 9196 */ |
7376 _SVGFontFaceSrcElement.created() : super.created(); | 9197 _SVGFontFaceSrcElement.created() : super.created(); |
7377 | 9198 |
7378 } | 9199 } |
7379 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9200 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7380 // for details. All rights reserved. Use of this source code is governed by a | 9201 // for details. All rights reserved. Use of this source code is governed by a |
7381 // BSD-style license that can be found in the LICENSE file. | 9202 // BSD-style license that can be found in the LICENSE file. |
7382 | 9203 |
7383 // WARNING: Do not edit - generated code. | 9204 // WARNING: Do not edit - generated code. |
7384 | 9205 |
7385 | 9206 |
7386 @DocsEditable() | 9207 @DocsEditable() |
7387 @DomName('SVGFontFaceUriElement') | 9208 @DomName('SVGFontFaceUriElement') |
7388 @Unstable() | 9209 @Unstable() |
7389 abstract class _SVGFontFaceUriElement extends SvgElement { | 9210 class _SVGFontFaceUriElement extends SvgElement { |
7390 // To suppress missing implicit constructor warnings. | 9211 // To suppress missing implicit constructor warnings. |
7391 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported
"); } | 9212 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported
"); } |
| 9213 |
| 9214 |
| 9215 static _SVGFontFaceUriElement internalCreate_SVGFontFaceUriElement() { |
| 9216 return new _SVGFontFaceUriElement._internalWrap(); |
| 9217 } |
| 9218 |
| 9219 factory _SVGFontFaceUriElement._internalWrap() { |
| 9220 return new _SVGFontFaceUriElement.internal_(); |
| 9221 } |
| 9222 |
| 9223 _SVGFontFaceUriElement.internal_() : super.internal_(); |
| 9224 |
7392 /** | 9225 /** |
7393 * Constructor instantiated by the DOM when a custom element has been created. | 9226 * Constructor instantiated by the DOM when a custom element has been created. |
7394 * | 9227 * |
7395 * This can only be called by subclasses from their created constructor. | 9228 * This can only be called by subclasses from their created constructor. |
7396 */ | 9229 */ |
7397 _SVGFontFaceUriElement.created() : super.created(); | 9230 _SVGFontFaceUriElement.created() : super.created(); |
7398 | 9231 |
7399 } | 9232 } |
7400 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9233 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7401 // for details. All rights reserved. Use of this source code is governed by a | 9234 // for details. All rights reserved. Use of this source code is governed by a |
7402 // BSD-style license that can be found in the LICENSE file. | 9235 // BSD-style license that can be found in the LICENSE file. |
7403 | 9236 |
7404 // WARNING: Do not edit - generated code. | 9237 // WARNING: Do not edit - generated code. |
7405 | 9238 |
7406 | 9239 |
7407 @DocsEditable() | 9240 @DocsEditable() |
7408 @DomName('SVGGlyphElement') | 9241 @DomName('SVGGlyphElement') |
7409 @Unstable() | 9242 @Unstable() |
7410 abstract class _SVGGlyphElement extends SvgElement { | 9243 class _SVGGlyphElement extends SvgElement { |
7411 // To suppress missing implicit constructor warnings. | 9244 // To suppress missing implicit constructor warnings. |
7412 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); } | 9245 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); } |
7413 | 9246 |
7414 @DomName('SVGGlyphElement.SVGGlyphElement') | 9247 @DomName('SVGGlyphElement.SVGGlyphElement') |
7415 @DocsEditable() | 9248 @DocsEditable() |
7416 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"glyph"); | 9249 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"glyph"); |
| 9250 |
| 9251 |
| 9252 static _SVGGlyphElement internalCreate_SVGGlyphElement() { |
| 9253 return new _SVGGlyphElement._internalWrap(); |
| 9254 } |
| 9255 |
| 9256 factory _SVGGlyphElement._internalWrap() { |
| 9257 return new _SVGGlyphElement.internal_(); |
| 9258 } |
| 9259 |
| 9260 _SVGGlyphElement.internal_() : super.internal_(); |
| 9261 |
7417 /** | 9262 /** |
7418 * Constructor instantiated by the DOM when a custom element has been created. | 9263 * Constructor instantiated by the DOM when a custom element has been created. |
7419 * | 9264 * |
7420 * This can only be called by subclasses from their created constructor. | 9265 * This can only be called by subclasses from their created constructor. |
7421 */ | 9266 */ |
7422 _SVGGlyphElement.created() : super.created(); | 9267 _SVGGlyphElement.created() : super.created(); |
7423 | 9268 |
7424 } | 9269 } |
7425 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9270 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7426 // for details. All rights reserved. Use of this source code is governed by a | 9271 // for details. All rights reserved. Use of this source code is governed by a |
7427 // BSD-style license that can be found in the LICENSE file. | 9272 // BSD-style license that can be found in the LICENSE file. |
7428 | 9273 |
7429 // WARNING: Do not edit - generated code. | |
7430 | |
7431 | 9274 |
7432 @DocsEditable() | 9275 @DocsEditable() |
7433 @DomName('SVGGlyphRefElement') | 9276 @DomName('SVGGlyphRefElement') |
7434 @Unstable() | 9277 @Unstable() |
7435 abstract class _SVGGlyphRefElement extends SvgElement implements UriReference { | 9278 class _SVGGlyphRefElement extends SvgElement implements UriReference { |
7436 // To suppress missing implicit constructor warnings. | 9279 // To suppress missing implicit constructor warnings. |
7437 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported");
} | 9280 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported");
} |
| 9281 |
| 9282 |
| 9283 static _SVGGlyphRefElement internalCreate_SVGGlyphRefElement() { |
| 9284 return new _SVGGlyphRefElement._internalWrap(); |
| 9285 } |
| 9286 |
| 9287 factory _SVGGlyphRefElement._internalWrap() { |
| 9288 return new _SVGGlyphRefElement.internal_(); |
| 9289 } |
| 9290 |
| 9291 _SVGGlyphRefElement.internal_() : super.internal_(); |
| 9292 |
7438 /** | 9293 /** |
7439 * Constructor instantiated by the DOM when a custom element has been created. | 9294 * Constructor instantiated by the DOM when a custom element has been created. |
7440 * | 9295 * |
7441 * This can only be called by subclasses from their created constructor. | 9296 * This can only be called by subclasses from their created constructor. |
7442 */ | 9297 */ |
7443 _SVGGlyphRefElement.created() : super.created(); | 9298 _SVGGlyphRefElement.created() : super.created(); |
7444 | 9299 |
| 9300 // Override these methods for Dartium _SVGGlyphRefElement can't be abstract. |
| 9301 AnimatedString get href => wrap_jso(_blink.BlinkSVGGlyphRefElement.instance.hr
ef_Getter_(unwrap_jso(this))); |
7445 } | 9302 } |
| 9303 |
7446 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9304 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7447 // for details. All rights reserved. Use of this source code is governed by a | 9305 // for details. All rights reserved. Use of this source code is governed by a |
7448 // BSD-style license that can be found in the LICENSE file. | 9306 // BSD-style license that can be found in the LICENSE file. |
7449 | 9307 |
7450 // WARNING: Do not edit - generated code. | 9308 // WARNING: Do not edit - generated code. |
7451 | 9309 |
7452 | 9310 |
7453 @DocsEditable() | 9311 @DocsEditable() |
7454 @DomName('SVGHKernElement') | 9312 @DomName('SVGHKernElement') |
7455 @Unstable() | 9313 @Unstable() |
7456 abstract class _SVGHKernElement extends SvgElement { | 9314 class _SVGHKernElement extends SvgElement { |
7457 // To suppress missing implicit constructor warnings. | 9315 // To suppress missing implicit constructor warnings. |
7458 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); } | 9316 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); } |
7459 | 9317 |
7460 @DomName('SVGHKernElement.SVGHKernElement') | 9318 @DomName('SVGHKernElement.SVGHKernElement') |
7461 @DocsEditable() | 9319 @DocsEditable() |
7462 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"hkern"); | 9320 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"hkern"); |
| 9321 |
| 9322 |
| 9323 static _SVGHKernElement internalCreate_SVGHKernElement() { |
| 9324 return new _SVGHKernElement._internalWrap(); |
| 9325 } |
| 9326 |
| 9327 factory _SVGHKernElement._internalWrap() { |
| 9328 return new _SVGHKernElement.internal_(); |
| 9329 } |
| 9330 |
| 9331 _SVGHKernElement.internal_() : super.internal_(); |
| 9332 |
7463 /** | 9333 /** |
7464 * Constructor instantiated by the DOM when a custom element has been created. | 9334 * Constructor instantiated by the DOM when a custom element has been created. |
7465 * | 9335 * |
7466 * This can only be called by subclasses from their created constructor. | 9336 * This can only be called by subclasses from their created constructor. |
7467 */ | 9337 */ |
7468 _SVGHKernElement.created() : super.created(); | 9338 _SVGHKernElement.created() : super.created(); |
7469 | 9339 |
7470 } | 9340 } |
7471 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9341 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7472 // for details. All rights reserved. Use of this source code is governed by a | 9342 // for details. All rights reserved. Use of this source code is governed by a |
7473 // BSD-style license that can be found in the LICENSE file. | 9343 // BSD-style license that can be found in the LICENSE file. |
7474 | 9344 |
7475 // WARNING: Do not edit - generated code. | |
7476 | |
7477 | 9345 |
7478 @DocsEditable() | 9346 @DocsEditable() |
7479 @DomName('SVGMPathElement') | 9347 @DomName('SVGMPathElement') |
7480 abstract class _SVGMPathElement extends SvgElement implements UriReference { | 9348 class _SVGMPathElement extends SvgElement implements UriReference { |
7481 // To suppress missing implicit constructor warnings. | 9349 // To suppress missing implicit constructor warnings. |
7482 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); } | 9350 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); } |
7483 | 9351 |
7484 @DomName('SVGMPathElement.SVGMPathElement') | 9352 @DomName('SVGMPathElement.SVGMPathElement') |
7485 @DocsEditable() | 9353 @DocsEditable() |
7486 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"mpath"); | 9354 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"mpath"); |
| 9355 |
| 9356 |
| 9357 static _SVGMPathElement internalCreate_SVGMPathElement() { |
| 9358 return new _SVGMPathElement._internalWrap(); |
| 9359 } |
| 9360 |
| 9361 factory _SVGMPathElement._internalWrap() { |
| 9362 return new _SVGMPathElement.internal_(); |
| 9363 } |
| 9364 |
| 9365 _SVGMPathElement.internal_() : super.internal_(); |
| 9366 |
7487 /** | 9367 /** |
7488 * Constructor instantiated by the DOM when a custom element has been created. | 9368 * Constructor instantiated by the DOM when a custom element has been created. |
7489 * | 9369 * |
7490 * This can only be called by subclasses from their created constructor. | 9370 * This can only be called by subclasses from their created constructor. |
7491 */ | 9371 */ |
7492 _SVGMPathElement.created() : super.created(); | 9372 _SVGMPathElement.created() : super.created(); |
7493 | 9373 |
| 9374 // Override these methods for Dartium _SVGMPathElement can't be abstract. |
| 9375 AnimatedString get href => wrap_jso(_blink.BlinkSVGMPathElement.instance.href_
Getter_(unwrap_jso(this))); |
7494 } | 9376 } |
| 9377 |
7495 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9378 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7496 // for details. All rights reserved. Use of this source code is governed by a | 9379 // for details. All rights reserved. Use of this source code is governed by a |
7497 // BSD-style license that can be found in the LICENSE file. | 9380 // BSD-style license that can be found in the LICENSE file. |
7498 | 9381 |
7499 // WARNING: Do not edit - generated code. | 9382 // WARNING: Do not edit - generated code. |
7500 | 9383 |
7501 | 9384 |
7502 @DocsEditable() | 9385 @DocsEditable() |
7503 @DomName('SVGMissingGlyphElement') | 9386 @DomName('SVGMissingGlyphElement') |
7504 @Unstable() | 9387 @Unstable() |
7505 abstract class _SVGMissingGlyphElement extends SvgElement { | 9388 class _SVGMissingGlyphElement extends SvgElement { |
7506 // To suppress missing implicit constructor warnings. | 9389 // To suppress missing implicit constructor warnings. |
7507 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte
d"); } | 9390 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 9391 |
| 9392 |
| 9393 static _SVGMissingGlyphElement internalCreate_SVGMissingGlyphElement() { |
| 9394 return new _SVGMissingGlyphElement._internalWrap(); |
| 9395 } |
| 9396 |
| 9397 factory _SVGMissingGlyphElement._internalWrap() { |
| 9398 return new _SVGMissingGlyphElement.internal_(); |
| 9399 } |
| 9400 |
| 9401 _SVGMissingGlyphElement.internal_() : super.internal_(); |
| 9402 |
7508 /** | 9403 /** |
7509 * Constructor instantiated by the DOM when a custom element has been created. | 9404 * Constructor instantiated by the DOM when a custom element has been created. |
7510 * | 9405 * |
7511 * This can only be called by subclasses from their created constructor. | 9406 * This can only be called by subclasses from their created constructor. |
7512 */ | 9407 */ |
7513 _SVGMissingGlyphElement.created() : super.created(); | 9408 _SVGMissingGlyphElement.created() : super.created(); |
7514 | 9409 |
7515 } | 9410 } |
7516 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9411 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7517 // for details. All rights reserved. Use of this source code is governed by a | 9412 // for details. All rights reserved. Use of this source code is governed by a |
7518 // BSD-style license that can be found in the LICENSE file. | 9413 // BSD-style license that can be found in the LICENSE file. |
7519 | 9414 |
7520 // WARNING: Do not edit - generated code. | 9415 // WARNING: Do not edit - generated code. |
7521 | 9416 |
7522 | 9417 |
7523 @DocsEditable() | 9418 @DocsEditable() |
7524 @DomName('SVGVKernElement') | 9419 @DomName('SVGVKernElement') |
7525 @Unstable() | 9420 @Unstable() |
7526 abstract class _SVGVKernElement extends SvgElement { | 9421 class _SVGVKernElement extends SvgElement { |
7527 // To suppress missing implicit constructor warnings. | 9422 // To suppress missing implicit constructor warnings. |
7528 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } | 9423 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } |
7529 | 9424 |
7530 @DomName('SVGVKernElement.SVGVKernElement') | 9425 @DomName('SVGVKernElement.SVGVKernElement') |
7531 @DocsEditable() | 9426 @DocsEditable() |
7532 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 9427 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
| 9428 |
| 9429 |
| 9430 static _SVGVKernElement internalCreate_SVGVKernElement() { |
| 9431 return new _SVGVKernElement._internalWrap(); |
| 9432 } |
| 9433 |
| 9434 factory _SVGVKernElement._internalWrap() { |
| 9435 return new _SVGVKernElement.internal_(); |
| 9436 } |
| 9437 |
| 9438 _SVGVKernElement.internal_() : super.internal_(); |
| 9439 |
7533 /** | 9440 /** |
7534 * Constructor instantiated by the DOM when a custom element has been created. | 9441 * Constructor instantiated by the DOM when a custom element has been created. |
7535 * | 9442 * |
7536 * This can only be called by subclasses from their created constructor. | 9443 * This can only be called by subclasses from their created constructor. |
7537 */ | 9444 */ |
7538 _SVGVKernElement.created() : super.created(); | 9445 _SVGVKernElement.created() : super.created(); |
7539 | 9446 |
7540 } | 9447 } |
OLD | NEW |