Added Android code
[wl-app.git] / Android / folioreader / src / main / java / com / folioreader / model / event / MediaOverlayPlayPauseEvent.java
1 package com.folioreader.model.event;
2
3 /**
4  * @author gautam chibde on 13/6/17.
5  */
6
7 public class MediaOverlayPlayPauseEvent {
8     private boolean play;
9     private String href;
10     private boolean stateChanged;
11
12     public MediaOverlayPlayPauseEvent(String href, boolean play, boolean stateChanged) {
13         this.href = href;
14         this.play = play;
15         this.stateChanged = stateChanged;
16     }
17
18     public String getHref() {
19         return href;
20     }
21
22     public boolean isPlay() {
23         return play;
24     }
25
26     public boolean isStateChanged() {
27         return stateChanged;
28     }
29 }