View Javadoc

1   package org.rpi.player.events;
2   
3   
4   public class EventTimeUpdate implements EventBase {
5   
6   //	public EventTimeUpdate(Object source) {
7   //		super(source);
8   //
9   //	}
10  	
11  	public EnumPlayerEvents getType()
12  	{
13  		return EnumPlayerEvents.EVENTTIMEUPDATED;
14  	}
15  	
16  	/**
17  	 * @return the time
18  	 */
19  	public long getTime() {
20  		return time;
21  	}
22  
23  	/**
24  	 * @param time the time to set
25  	 */
26  	public void setTime(long time) {
27  		this.time = time;
28  	}
29  
30  	private long time = 0;
31  	
32  
33  }