View Javadoc

1   package org.rpi.player.events;
2   
3   
4   public class EventVolumeChanged implements EventBase {
5   
6   //	public EventVolumeChanged(Object source) {
7   //		super(source);
8   //	}
9   	
10  	public EnumPlayerEvents getType()
11  	{
12  		return EnumPlayerEvents.EVENTVOLUMECHANGED;
13  	}
14  	
15  	public long getVolume() {
16  		return volume;
17  	}
18  
19  	public void setVolume(long volume) {
20  		this.volume = volume;
21  	}
22  
23  	private long volume = 0;
24  	
25  
26  }