ReplaceURLEventpublic class ReplaceURLEvent extends ControllerEvent This class is a JMF event that represent a hot link occurence in HotMedia
Player. KThe event is assoiciated with a URL which should replace the
current played URL. |
Fields Summary |
---|
private URL | u |
Constructors Summary |
---|
public ReplaceURLEvent(Controller from, URL u)Constructor
super(from);
this.u = u;
|
Methods Summary |
---|
public java.net.URL | getURL()Returns the URL associated with the event
return u;
|
|