| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 class _TextTrackCueWrappingImplementation extends DOMWrapperBase implements Text
TrackCue { |
| 8 _TextTrackCueWrappingImplementation() : super() {} |
| 9 |
| 10 static create__TextTrackCueWrappingImplementation() native { |
| 11 return new _TextTrackCueWrappingImplementation(); |
| 12 } |
| 13 |
| 14 String get alignment() { return _get__TextTrackCue_alignment(this); } |
| 15 static String _get__TextTrackCue_alignment(var _this) native; |
| 16 |
| 17 String get direction() { return _get__TextTrackCue_direction(this); } |
| 18 static String _get__TextTrackCue_direction(var _this) native; |
| 19 |
| 20 num get endTime() { return _get__TextTrackCue_endTime(this); } |
| 21 static num _get__TextTrackCue_endTime(var _this) native; |
| 22 |
| 23 String get id() { return _get__TextTrackCue_id(this); } |
| 24 static String _get__TextTrackCue_id(var _this) native; |
| 25 |
| 26 int get linePosition() { return _get__TextTrackCue_linePosition(this); } |
| 27 static int _get__TextTrackCue_linePosition(var _this) native; |
| 28 |
| 29 bool get pauseOnExit() { return _get__TextTrackCue_pauseOnExit(this); } |
| 30 static bool _get__TextTrackCue_pauseOnExit(var _this) native; |
| 31 |
| 32 int get size() { return _get__TextTrackCue_size(this); } |
| 33 static int _get__TextTrackCue_size(var _this) native; |
| 34 |
| 35 bool get snapToLines() { return _get__TextTrackCue_snapToLines(this); } |
| 36 static bool _get__TextTrackCue_snapToLines(var _this) native; |
| 37 |
| 38 num get startTime() { return _get__TextTrackCue_startTime(this); } |
| 39 static num _get__TextTrackCue_startTime(var _this) native; |
| 40 |
| 41 int get textPosition() { return _get__TextTrackCue_textPosition(this); } |
| 42 static int _get__TextTrackCue_textPosition(var _this) native; |
| 43 |
| 44 TextTrack get track() { return _get__TextTrackCue_track(this); } |
| 45 static TextTrack _get__TextTrackCue_track(var _this) native; |
| 46 |
| 47 DocumentFragment getCueAsHTML() { |
| 48 return _getCueAsHTML(this); |
| 49 } |
| 50 static DocumentFragment _getCueAsHTML(receiver) native; |
| 51 |
| 52 String getCueAsSource() { |
| 53 return _getCueAsSource(this); |
| 54 } |
| 55 static String _getCueAsSource(receiver) native; |
| 56 |
| 57 String get typeName() { return "TextTrackCue"; } |
| 58 } |
| OLD | NEW |