FileDocCategorySizeDatePackage
HTMLFrameHyperlinkEvent.javaAPI DocJava SE 6 API3020Tue Jun 10 00:27:00 BST 2008javax.swing.text.html

HTMLFrameHyperlinkEvent

public class HTMLFrameHyperlinkEvent extends HyperlinkEvent
HTMLFrameHyperlinkEvent is used to notify interested parties that link was activated in a frame.
author
Sunita Mani
version
1.10, 11/17/05

Fields Summary
private String
targetFrame
Constructors Summary
public HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, String targetFrame)
Creates a new object representing a html frame hypertext link event.

param
source the object responsible for the event
param
type the event type
param
targetURL the affected URL
param
targetFrame the Frame to display the document in

        super(source, type, targetURL);
	this.targetFrame = targetFrame;
    
public HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, String desc, String targetFrame)
Creates a new object representing a hypertext link event.

param
source the object responsible for the event
param
type the event type
param
targetURL the affected URL
param
desc a description
param
targetFrame the Frame to display the document in

        super(source, type, targetURL, desc);
	this.targetFrame = targetFrame;
    
public HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, Element sourceElement, String targetFrame)
Creates a new object representing a hypertext link event.

param
source the object responsible for the event
param
type the event type
param
targetURL the affected URL
param
sourceElement the element that corresponds to the source of the event
param
targetFrame the Frame to display the document in

        super(source, type, targetURL, null, sourceElement);
	this.targetFrame = targetFrame;
    
public HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, String desc, Element sourceElement, String targetFrame)
Creates a new object representing a hypertext link event.

param
source the object responsible for the event
param
type the event type
param
targetURL the affected URL
param
desc a desription
param
sourceElement the element that corresponds to the source of the event
param
targetFrame the Frame to display the document in

        super(source, type, targetURL, desc, sourceElement);
	this.targetFrame = targetFrame;
    
Methods Summary
public java.lang.StringgetTarget()
returns the target for the link.

	return targetFrame;