HTMLFrameHyperlinkEventpublic class HTMLFrameHyperlinkEvent extends HyperlinkEvent HTMLFrameHyperlinkEvent is used to notify interested
parties that link was activated in a frame. |
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.
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.
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.
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.
super(source, type, targetURL, desc, sourceElement);
this.targetFrame = targetFrame;
|
Methods Summary |
---|
public java.lang.String | getTarget()returns the target for the link.
return targetFrame;
|
|