您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

VideoState.java 424B

1234567891011121314151617181920
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.shared.ui.video;
  5. import com.vaadin.shared.communication.URLReference;
  6. import com.vaadin.shared.ui.AbstractMediaState;
  7. public class VideoState extends AbstractMediaState {
  8. private URLReference poster;
  9. public URLReference getPoster() {
  10. return poster;
  11. }
  12. public void setPoster(URLReference poster) {
  13. this.poster = poster;
  14. }
  15. }