1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964
|
// Copyright 2009 The Closure Library Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS-IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/**
* @fileoverview Provides the base media model consistent with the Yahoo Media
* RSS specification {@link http://search.yahoo.com/mrss/}.
*/
goog.provide('goog.ui.media.MediaModel');
goog.provide('goog.ui.media.MediaModel.Category');
goog.provide('goog.ui.media.MediaModel.Credit');
goog.provide('goog.ui.media.MediaModel.Credit.Role');
goog.provide('goog.ui.media.MediaModel.Credit.Scheme');
goog.provide('goog.ui.media.MediaModel.Medium');
goog.provide('goog.ui.media.MediaModel.MimeType');
goog.provide('goog.ui.media.MediaModel.Player');
goog.provide('goog.ui.media.MediaModel.SubTitle');
goog.provide('goog.ui.media.MediaModel.Thumbnail');
goog.require('goog.array');
goog.require('goog.html.TrustedResourceUrl');
/**
* An base data value class for all media data models.
*
* MediaModels are exact matches to the fields defined in the Yahoo RSS media
* specification {@link http://search.yahoo.com/mrss/}.
*
* The current common data shared by medias is to have URLs, mime types,
* captions, descriptions, thumbnails and players. Some of these may not be
* available, or applications may not want to render them, so {@code null}
* values are allowed. {@code goog.ui.media.MediaRenderer} checks whether the
* values are available before creating DOMs for them.
*
* @param {string=} opt_url An optional URL of the media.
* @param {string=} opt_caption An optional caption of the media.
* @param {string=} opt_description An optional description of the media.
* @param {goog.ui.media.MediaModel.MimeType=} opt_type The type of the media.
* @param {goog.ui.media.MediaModel.Medium=} opt_medium The medium of the media.
* @param {number=} opt_duration The duration of the media in seconds.
* @param {number=} opt_width The width of the media in pixels.
* @param {number=} opt_height The height of the media in pixels.
* @constructor
*/
goog.ui.media.MediaModel = function(
opt_url, opt_caption, opt_description, opt_type, opt_medium, opt_duration,
opt_width, opt_height) {
/**
* The URL of the media.
* @type {string|undefined}
* @private
*/
this.url_ = opt_url;
/**
* The caption of the media.
* @type {string|undefined}
* @private
*/
this.caption_ = opt_caption;
/**
* A description of the media, typically user generated comments about it.
* @type {string|undefined}
* @private
*/
this.description_ = opt_description;
/**
* The mime type of the media.
* @type {goog.ui.media.MediaModel.MimeType|undefined}
* @private
*/
this.type_ = opt_type;
/**
* The medium of the media.
* @type {goog.ui.media.MediaModel.Medium|undefined}
* @private
*/
this.medium_ = opt_medium;
/**
* The duration of the media in seconds.
* @type {number|undefined}
* @private
*/
this.duration_ = opt_duration;
/**
* The width of the media in pixels.
* @type {number|undefined}
* @private
*/
this.width_ = opt_width;
/**
* The height of the media in pixels.
* @type {number|undefined}
* @private
*/
this.height_ = opt_height;
/**
* A list of thumbnails representations of the media (eg different sizes of
* the same photo, etc).
* @type {Array<goog.ui.media.MediaModel.Thumbnail>}
* @private
*/
this.thumbnails_ = [];
/**
* The list of categories that are applied to this media.
* @type {Array<goog.ui.media.MediaModel.Category>}
* @private
*/
this.categories_ = [];
/**
* The list of credits that pertain to this media object.
* @type {!Array<goog.ui.media.MediaModel.Credit>}
* @private
*/
this.credits_ = [];
/**
* The list of subtitles for the media object.
* @type {Array<goog.ui.media.MediaModel.SubTitle>}
* @private
*/
this.subTitles_ = [];
};
/**
* The supported media mime types, a subset of the media types found here:
* {@link http://www.iana.org/assignments/media-types/} and here
* {@link http://en.wikipedia.org/wiki/Internet_media_type}
* @enum {string}
*/
goog.ui.media.MediaModel.MimeType = {
HTML: 'text/html',
PLAIN: 'text/plain',
FLASH: 'application/x-shockwave-flash',
JPEG: 'image/jpeg',
GIF: 'image/gif',
PNG: 'image/png'
};
/**
* Supported mediums, found here:
* {@link http://video.search.yahoo.com/mrss}
* @enum {string}
*/
goog.ui.media.MediaModel.Medium = {
IMAGE: 'image',
AUDIO: 'audio',
VIDEO: 'video',
DOCUMENT: 'document',
EXECUTABLE: 'executable'
};
/**
* The media player.
* @type {goog.ui.media.MediaModel.Player}
* @private
*/
goog.ui.media.MediaModel.prototype.player_;
/**
* Gets the URL of this media.
* @return {string|undefined} The URL of the media.
*/
goog.ui.media.MediaModel.prototype.getUrl = function() {
return this.url_;
};
/**
* Sets the URL of this media.
* @param {string} url The URL of the media.
* @return {!goog.ui.media.MediaModel} The object itself, used for chaining.
*/
goog.ui.media.MediaModel.prototype.setUrl = function(url) {
this.url_ = url;
return this;
};
/**
* Gets the caption of this media.
* @return {string|undefined} The caption of the media.
*/
goog.ui.media.MediaModel.prototype.getCaption = function() {
return this.caption_;
};
/**
* Sets the caption of this media.
* @param {string} caption The caption of the media.
* @return {!goog.ui.media.MediaModel} The object itself, used for chaining.
*/
goog.ui.media.MediaModel.prototype.setCaption = function(caption) {
this.caption_ = caption;
return this;
};
/**
* Gets the media mime type.
* @return {goog.ui.media.MediaModel.MimeType|undefined} The media mime type.
*/
goog.ui.media.MediaModel.prototype.getType = function() {
return this.type_;
};
/**
* Sets the media mime type.
* @param {goog.ui.media.MediaModel.MimeType} type The media mime type.
* @return {!goog.ui.media.MediaModel} The object itself, used for chaining.
*/
goog.ui.media.MediaModel.prototype.setType = function(type) {
this.type_ = type;
return this;
};
/**
* Gets the media medium.
* @return {goog.ui.media.MediaModel.Medium|undefined} The media medium.
*/
goog.ui.media.MediaModel.prototype.getMedium = function() {
return this.medium_;
};
/**
* Sets the media medium.
* @param {goog.ui.media.MediaModel.Medium} medium The media medium.
* @return {!goog.ui.media.MediaModel} The object itself, used for chaining.
*/
goog.ui.media.MediaModel.prototype.setMedium = function(medium) {
this.medium_ = medium;
return this;
};
/**
* Gets the description of this media.
* @return {string|undefined} The description of the media.
*/
goog.ui.media.MediaModel.prototype.getDescription = function() {
return this.description_;
};
/**
* Sets the description of this media.
* @param {string} description The description of the media.
* @return {!goog.ui.media.MediaModel} The object itself, used for chaining.
*/
goog.ui.media.MediaModel.prototype.setDescription = function(description) {
this.description_ = description;
return this;
};
/**
* Gets the thumbnail urls.
* @return {Array<goog.ui.media.MediaModel.Thumbnail>} The list of thumbnails.
*/
goog.ui.media.MediaModel.prototype.getThumbnails = function() {
return this.thumbnails_;
};
/**
* Sets the thumbnail list.
* @param {Array<goog.ui.media.MediaModel.Thumbnail>} thumbnails The list of
* thumbnail.
* @return {!goog.ui.media.MediaModel} The object itself, used for chaining.
*/
goog.ui.media.MediaModel.prototype.setThumbnails = function(thumbnails) {
this.thumbnails_ = thumbnails;
return this;
};
/**
* Gets the duration of the media.
* @return {number|undefined} The duration in seconds.
*/
goog.ui.media.MediaModel.prototype.getDuration = function() {
return this.duration_;
};
/**
* Sets duration of the media.
* @param {number} duration The duration of the media, in seconds.
* @return {!goog.ui.media.MediaModel} The object itself, used for chaining.
*/
goog.ui.media.MediaModel.prototype.setDuration = function(duration) {
this.duration_ = duration;
return this;
};
/**
* Gets the width of the media in pixels.
* @return {number|undefined} The width in pixels.
*/
goog.ui.media.MediaModel.prototype.getWidth = function() {
return this.width_;
};
/**
* Sets the width of the media.
* @param {number} width The width of the media, in pixels.
* @return {!goog.ui.media.MediaModel} The object itself, used for chaining.
*/
goog.ui.media.MediaModel.prototype.setWidth = function(width) {
this.width_ = width;
return this;
};
/**
* Gets the height of the media in pixels.
* @return {number|undefined} The height in pixels.
*/
goog.ui.media.MediaModel.prototype.getHeight = function() {
return this.height_;
};
/**
* Sets the height of the media.
* @param {number} height The height of the media, in pixels.
* @return {!goog.ui.media.MediaModel} The object itself, used for chaining.
*/
goog.ui.media.MediaModel.prototype.setHeight = function(height) {
this.height_ = height;
return this;
};
/**
* Gets the player data.
* @return {goog.ui.media.MediaModel.Player|undefined} The media player data.
*/
goog.ui.media.MediaModel.prototype.getPlayer = function() {
return this.player_;
};
/**
* Sets the player data.
* @param {goog.ui.media.MediaModel.Player} player The media player data.
* @return {!goog.ui.media.MediaModel} The object itself, used for chaining.
*/
goog.ui.media.MediaModel.prototype.setPlayer = function(player) {
this.player_ = player;
return this;
};
/**
* Gets the categories of the media.
* @return {Array<goog.ui.media.MediaModel.Category>} The categories of the
* media.
*/
goog.ui.media.MediaModel.prototype.getCategories = function() {
return this.categories_;
};
/**
* Sets the categories of the media
* @param {Array<goog.ui.media.MediaModel.Category>} categories The categories
* of the media.
* @return {!goog.ui.media.MediaModel} The object itself, used for chaining.
*/
goog.ui.media.MediaModel.prototype.setCategories = function(categories) {
this.categories_ = categories;
return this;
};
/**
* Finds the first category with the given scheme.
* @param {string} scheme The scheme to search for.
* @return {goog.ui.media.MediaModel.Category} The category that has the
* given scheme. May be null.
*/
goog.ui.media.MediaModel.prototype.findCategoryWithScheme = function(scheme) {
if (!this.categories_) {
return null;
}
var category = goog.array.find(this.categories_, function(category) {
return category ? (scheme == category.getScheme()) : false;
});
return /** @type {goog.ui.media.MediaModel.Category} */ (category);
};
/**
* Gets the credits of the media.
* @return {!Array<goog.ui.media.MediaModel.Credit>} The credits of the media.
*/
goog.ui.media.MediaModel.prototype.getCredits = function() {
return this.credits_;
};
/**
* Sets the credits of the media
* @param {!Array<goog.ui.media.MediaModel.Credit>} credits The credits of the
* media.
* @return {!goog.ui.media.MediaModel} The object itself, used for chaining.
*/
goog.ui.media.MediaModel.prototype.setCredits = function(credits) {
this.credits_ = credits;
return this;
};
/**
* Finds all credits with the given role.
* @param {string} role The role to search for.
* @return {!Array<!goog.ui.media.MediaModel.Credit>} An array of credits
* with the given role. May be empty.
*/
goog.ui.media.MediaModel.prototype.findCreditsWithRole = function(role) {
var credits = goog.array.filter(
this.credits_, function(credit) { return role == credit.getRole(); });
return /** @type {!Array<!goog.ui.media.MediaModel.Credit>} */ (credits);
};
/**
* Gets the subtitles for the media.
* @return {Array<goog.ui.media.MediaModel.SubTitle>} The subtitles.
*/
goog.ui.media.MediaModel.prototype.getSubTitles = function() {
return this.subTitles_;
};
/**
* Sets the subtitles for the media
* @param {Array<goog.ui.media.MediaModel.SubTitle>} subtitles The subtitles.
* @return {!goog.ui.media.MediaModel} The object itself.
*/
goog.ui.media.MediaModel.prototype.setSubTitles = function(subtitles) {
this.subTitles_ = subtitles;
return this;
};
/**
* Constructs a thumbnail containing details of the thumbnail's image URL and
* optionally its size.
* @param {string} url The URL of the thumbnail's image.
* @param {goog.math.Size=} opt_size The size of the thumbnail's image if known.
* @constructor
* @final
*/
goog.ui.media.MediaModel.Thumbnail = function(url, opt_size) {
/**
* The thumbnail's image URL.
* @type {string}
* @private
*/
this.url_ = url;
/**
* The size of the thumbnail's image if known.
* @type {goog.math.Size}
* @private
*/
this.size_ = opt_size || null;
};
/**
* Gets the thumbnail URL.
* @return {string} The thumbnail's image URL.
*/
goog.ui.media.MediaModel.Thumbnail.prototype.getUrl = function() {
return this.url_;
};
/**
* Sets the thumbnail URL.
* @param {string} url The thumbnail's image URL.
* @return {!goog.ui.media.MediaModel.Thumbnail} The object itself, used for
* chaining.
*/
goog.ui.media.MediaModel.Thumbnail.prototype.setUrl = function(url) {
this.url_ = url;
return this;
};
/**
* Gets the thumbnail size.
* @return {goog.math.Size} The size of the thumbnail's image if known.
*/
goog.ui.media.MediaModel.Thumbnail.prototype.getSize = function() {
return this.size_;
};
/**
* Sets the thumbnail size.
* @param {goog.math.Size} size The size of the thumbnail's image.
* @return {!goog.ui.media.MediaModel.Thumbnail} The object itself, used for
* chaining.
*/
goog.ui.media.MediaModel.Thumbnail.prototype.setSize = function(size) {
this.size_ = size;
return this;
};
/**
* Constructs a player containing details of the player's URL and
* optionally its size.
* @param {!goog.html.TrustedResourceUrl} url The URL of the player.
* @param {Object=} opt_vars Optional map of arguments to the player.
* @param {goog.math.Size=} opt_size The size of the player if known.
* @constructor
* @final
*/
goog.ui.media.MediaModel.Player = function(url, opt_vars, opt_size) {
/**
* The player's URL.
* @type {!goog.html.TrustedResourceUrl}
* @private
*/
this.trustedResourceUrl_ = url;
/**
* Player arguments, typically flash arguments.
* @type {Object}
* @private
*/
this.vars_ = opt_vars || null;
/**
* The size of the player if known.
* @type {goog.math.Size}
* @private
*/
this.size_ = opt_size || null;
};
/**
* Gets the player URL.
* @return {!goog.html.TrustedResourceUrl} The player's URL.
*/
goog.ui.media.MediaModel.Player.prototype.getTrustedResourceUrl = function() {
return this.trustedResourceUrl_;
};
/**
* Gets the player URL.
* @return {string} The player's URL.
*/
goog.ui.media.MediaModel.Player.prototype.getUrl = function() {
return this.trustedResourceUrl_.getTypedStringValue();
};
/**
* Sets the player URL.
* @param {!goog.html.TrustedResourceUrl} url The player's URL.
* @return {!goog.ui.media.MediaModel.Player} The object itself, used for
* chaining.
*/
goog.ui.media.MediaModel.Player.prototype.setUrl = function(url) {
this.trustedResourceUrl_ = url;
return this;
};
/**
* Gets the player arguments.
* @return {Object} The media player arguments.
*/
goog.ui.media.MediaModel.Player.prototype.getVars = function() {
return this.vars_;
};
/**
* Sets the player arguments.
* @param {Object} vars The media player arguments.
* @return {!goog.ui.media.MediaModel.Player} The object itself, used for
* chaining.
*/
goog.ui.media.MediaModel.Player.prototype.setVars = function(vars) {
this.vars_ = vars;
return this;
};
/**
* Gets the size of the player.
* @return {goog.math.Size} The size of the player if known.
*/
goog.ui.media.MediaModel.Player.prototype.getSize = function() {
return this.size_;
};
/**
* Sets the size of the player.
* @param {goog.math.Size} size The size of the player.
* @return {!goog.ui.media.MediaModel.Player} The object itself, used for
* chaining.
*/
goog.ui.media.MediaModel.Player.prototype.setSize = function(size) {
this.size_ = size;
return this;
};
/**
* A taxonomy to be set that gives an indication of the type of media content,
* and its particular contents.
* @param {string} scheme The URI that identifies the categorization scheme.
* @param {string} value The value of the category.
* @param {string=} opt_label The human readable label that can be displayed in
* end user applications.
* @constructor
* @final
*/
goog.ui.media.MediaModel.Category = function(scheme, value, opt_label) {
/**
* The URI that identifies the categorization scheme.
* @type {string}
* @private
*/
this.scheme_ = scheme;
/**
* The value of the category.
* @type {string}
* @private
*/
this.value_ = value;
/**
* The human readable label that can be displayed in end user applications.
* @type {string}
* @private
*/
this.label_ = opt_label || '';
};
/**
* Gets the category scheme.
* @return {string} The category scheme URI.
*/
goog.ui.media.MediaModel.Category.prototype.getScheme = function() {
return this.scheme_;
};
/**
* Sets the category scheme.
* @param {string} scheme The category's scheme.
* @return {!goog.ui.media.MediaModel.Category} The object itself, used for
* chaining.
*/
goog.ui.media.MediaModel.Category.prototype.setScheme = function(scheme) {
this.scheme_ = scheme;
return this;
};
/**
* Gets the categor's value.
* @return {string} The category's value.
*/
goog.ui.media.MediaModel.Category.prototype.getValue = function() {
return this.value_;
};
/**
* Sets the category value.
* @param {string} value The category value to be set.
* @return {!goog.ui.media.MediaModel.Category} The object itself, used for
* chaining.
*/
goog.ui.media.MediaModel.Category.prototype.setValue = function(value) {
this.value_ = value;
return this;
};
/**
* Gets the label of the category.
* @return {string} The label of the category.
*/
goog.ui.media.MediaModel.Category.prototype.getLabel = function() {
return this.label_;
};
/**
* Sets the label of the category.
* @param {string} label The label of the category.
* @return {!goog.ui.media.MediaModel.Category} The object itself, used for
* chaining.
*/
goog.ui.media.MediaModel.Category.prototype.setLabel = function(label) {
this.label_ = label;
return this;
};
/**
* Indicates an entity that has contributed to a media object. Based on
* 'media.credit' in the rss spec.
* @param {string} value The name of the entity being credited.
* @param {goog.ui.media.MediaModel.Credit.Role=} opt_role The role the entity
* played.
* @param {goog.ui.media.MediaModel.Credit.Scheme=} opt_scheme The URI that
* identifies the role scheme.
* @constructor
* @final
*/
goog.ui.media.MediaModel.Credit = function(value, opt_role, opt_scheme) {
/**
* The name of entity being credited.
* @type {string}
* @private
*/
this.value_ = value;
/**
* The role the entity played.
* @type {goog.ui.media.MediaModel.Credit.Role|undefined}
* @private
*/
this.role_ = opt_role;
/**
* The URI that identifies the role scheme
* @type {goog.ui.media.MediaModel.Credit.Scheme|undefined}
* @private
*/
this.scheme_ = opt_scheme;
};
/**
* The types of known roles.
* @enum {string}
*/
goog.ui.media.MediaModel.Credit.Role = {
UPLOADER: 'uploader',
OWNER: 'owner'
};
/**
* The types of known schemes.
* @enum {string}
*/
goog.ui.media.MediaModel.Credit.Scheme = {
EUROPEAN_BROADCASTING: 'urn:ebu',
YAHOO: 'urn:yvs',
YOUTUBE: 'urn:youtube'
};
/**
* Gets the name of the entity being credited.
* @return {string} The name of the entity.
*/
goog.ui.media.MediaModel.Credit.prototype.getValue = function() {
return this.value_;
};
/**
* Sets the value of the credit object.
* @param {string} value The value.
* @return {!goog.ui.media.MediaModel.Credit} The object itself.
*/
goog.ui.media.MediaModel.Credit.prototype.setValue = function(value) {
this.value_ = value;
return this;
};
/**
* Gets the role of the entity being credited.
* @return {goog.ui.media.MediaModel.Credit.Role|undefined} The role of the
* entity.
*/
goog.ui.media.MediaModel.Credit.prototype.getRole = function() {
return this.role_;
};
/**
* Sets the role of the credit object.
* @param {goog.ui.media.MediaModel.Credit.Role} role The role.
* @return {!goog.ui.media.MediaModel.Credit} The object itself.
*/
goog.ui.media.MediaModel.Credit.prototype.setRole = function(role) {
this.role_ = role;
return this;
};
/**
* Gets the scheme of the credit object.
* @return {goog.ui.media.MediaModel.Credit.Scheme|undefined} The URI that
* identifies the role scheme.
*/
goog.ui.media.MediaModel.Credit.prototype.getScheme = function() {
return this.scheme_;
};
/**
* Sets the scheme of the credit object.
* @param {goog.ui.media.MediaModel.Credit.Scheme} scheme The scheme.
* @return {!goog.ui.media.MediaModel.Credit} The object itself.
*/
goog.ui.media.MediaModel.Credit.prototype.setScheme = function(scheme) {
this.scheme_ = scheme;
return this;
};
/**
* A reference to the subtitle URI for a media object.
* Implements the 'media.subTitle' in the rss spec.
*
* @param {string} href The subtitle's URI.
* to fetch the subtitle file.
* @param {string} lang An RFC 3066 language.
* @param {string} type The MIME type of the URI.
* @constructor
* @final
*/
goog.ui.media.MediaModel.SubTitle = function(href, lang, type) {
/**
* The subtitle href.
* @type {string}
* @private
*/
this.href_ = href;
/**
* The RFC 3066 language.
* @type {string}
* @private
*/
this.lang_ = lang;
/**
* The MIME type of the resource.
* @type {string}
* @private
*/
this.type_ = type;
};
/**
* Sets the href for the subtitle object.
* @param {string} href The subtitle's URI.
* @return {!goog.ui.media.MediaModel.SubTitle} The object itself.
*/
goog.ui.media.MediaModel.SubTitle.prototype.setHref = function(href) {
this.href_ = href;
return this;
};
/**
* Get the href for the subtitle object.
* @return {string} href The subtitle's URI.
*/
goog.ui.media.MediaModel.SubTitle.prototype.getHref = function() {
return this.href_;
};
/**
* Sets the language for the subtitle object.
* @param {string} lang The RFC 3066 language.
* @return {!goog.ui.media.MediaModel.SubTitle} The object itself.
*/
goog.ui.media.MediaModel.SubTitle.prototype.setLang = function(lang) {
this.lang_ = lang;
return this;
};
/**
* Get the lang for the subtitle object.
* @return {string} lang The RFC 3066 language.
*/
goog.ui.media.MediaModel.SubTitle.prototype.getLang = function() {
return this.lang_;
};
/**
* Sets the type for the subtitle object.
* @param {string} type The MIME type.
* @return {!goog.ui.media.MediaModel.SubTitle} The object itself.
*/
goog.ui.media.MediaModel.SubTitle.prototype.setType = function(type) {
this.type_ = type;
return this;
};
/**
* Get the type for the subtitle object.
* @return {string} type The MIME type.
*/
goog.ui.media.MediaModel.SubTitle.prototype.getType = function() {
return this.type_;
};
|