You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }