diff options
Diffstat (limited to 'src/com/vaadin/shared/ui/video/VideoState.java')
-rw-r--r-- | src/com/vaadin/shared/ui/video/VideoState.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/com/vaadin/shared/ui/video/VideoState.java b/src/com/vaadin/shared/ui/video/VideoState.java deleted file mode 100644 index 1dc8d07b7c..0000000000 --- a/src/com/vaadin/shared/ui/video/VideoState.java +++ /dev/null @@ -1,20 +0,0 @@ -/* -@VaadinApache2LicenseForJavaFiles@ - */ -package com.vaadin.shared.ui.video; - -import com.vaadin.shared.communication.URLReference; -import com.vaadin.shared.ui.AbstractMediaState; - -public class VideoState extends AbstractMediaState { - private URLReference poster; - - public URLReference getPoster() { - return poster; - } - - public void setPoster(URLReference poster) { - this.poster = poster; - } - -} |