FileDocCategorySizeDatePackage
ReplaceURLEvent.javaAPI DocJMF 2.1.1e868Mon May 12 12:21:04 BST 2003com.ibm.media

ReplaceURLEvent

public 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

param
from the Controller that generated the event
param
u the URL assoiciated with the event

      
    super(from);
    this.u = u;
  
Methods Summary
public java.net.URLgetURL()
Returns the URL associated with the event

return
the URL

    
    return u;