FileDocCategorySizeDatePackage
ShowDocumentEvent.javaAPI DocJMF 2.1.1e1149Mon May 12 12:21:04 BST 2003com.ibm.media

ShowDocumentEvent

public class ShowDocumentEvent extends ControllerEvent
This class is a JMF event that represent a hot link occurence in HotMedia Player. The event is assoiciated with a URL (HTML page) which should be showed.

Fields Summary
private URL
u
private String
s
Constructors Summary
public ShowDocumentEvent(Controller from, URL u, String s)
Constructor

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

      
    super(from);
    this.u = u;
    this.s = s;
  
Methods Summary
public java.lang.StringgetString()
Returns the Sting associated with the event

return
the URL

    
    return s;
  
public java.net.URLgetURL()
Returns the URL associated with the event

return
the URL

    
    return u;