java.lang.Object
java.util.EventObject
javax.swing.event.HyperlinkEvent
javax.swing.text.html.HTMLFrameHyperlinkEvent
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FormSubmitEvent
public class HTMLFrameHyperlinkEvent extends HyperlinkEvent
HTMLFrameHyperlinkEvent is used to notify interested
parties that link was activated in a frame.
-
Nested Class Summary
Nested classes/interfaces declared in class javax.swing.event.HyperlinkEvent
HyperlinkEvent.EventType
-
Field Summary
-
Constructor Summary
Constructors Constructor Description HTMLFrameHyperlinkEvent(Object source, HyperlinkEvent.EventType type, URL targetURL, String targetFrame)
Creates a new object representing a html frame hypertext link event.HTMLFrameHyperlinkEvent(Object source, HyperlinkEvent.EventType type, URL targetURL, String desc, String targetFrame)
Creates a new object representing a hypertext link event.HTMLFrameHyperlinkEvent(Object source, HyperlinkEvent.EventType type, URL targetURL, String desc, Element sourceElement, InputEvent inputEvent, String targetFrame)
Creates a new object representing a hypertext link event.HTMLFrameHyperlinkEvent(Object source, HyperlinkEvent.EventType type, URL targetURL, String desc, Element sourceElement, String targetFrame)
Creates a new object representing a hypertext link event.HTMLFrameHyperlinkEvent(Object source, HyperlinkEvent.EventType type, URL targetURL, Element sourceElement, String targetFrame)
Creates a new object representing a hypertext link event. -
Method Summary
Methods declared in class javax.swing.event.HyperlinkEvent
getDescription, getEventType, getInputEvent, getSourceElement, getURL
-
Constructor Details
-
HTMLFrameHyperlinkEvent
public HTMLFrameHyperlinkEvent(Object source, HyperlinkEvent.EventType type, URL targetURL, String targetFrame)Creates a new object representing a html frame hypertext link event.- Parameters:
source
- the object responsible for the eventtype
- the event typetargetURL
- the affected URLtargetFrame
- the Frame to display the document in
-
HTMLFrameHyperlinkEvent
public HTMLFrameHyperlinkEvent(Object source, HyperlinkEvent.EventType type, URL targetURL, String desc, String targetFrame)Creates a new object representing a hypertext link event.- Parameters:
source
- the object responsible for the eventtype
- the event typetargetURL
- the affected URLdesc
- a descriptiontargetFrame
- the Frame to display the document in
-
HTMLFrameHyperlinkEvent
public HTMLFrameHyperlinkEvent(Object source, HyperlinkEvent.EventType type, URL targetURL, Element sourceElement, String targetFrame)Creates a new object representing a hypertext link event.- Parameters:
source
- the object responsible for the eventtype
- the event typetargetURL
- the affected URLsourceElement
- the element that corresponds to the source of the eventtargetFrame
- the Frame to display the document in
-
HTMLFrameHyperlinkEvent
public HTMLFrameHyperlinkEvent(Object source, HyperlinkEvent.EventType type, URL targetURL, String desc, Element sourceElement, String targetFrame)Creates a new object representing a hypertext link event.- Parameters:
source
- the object responsible for the eventtype
- the event typetargetURL
- the affected URLdesc
- a descriptionsourceElement
- the element that corresponds to the source of the eventtargetFrame
- the Frame to display the document in
-
HTMLFrameHyperlinkEvent
public HTMLFrameHyperlinkEvent(Object source, HyperlinkEvent.EventType type, URL targetURL, String desc, Element sourceElement, InputEvent inputEvent, String targetFrame)Creates a new object representing a hypertext link event.- Parameters:
source
- the object responsible for the eventtype
- the event typetargetURL
- the affected URLdesc
- a descriptionsourceElement
- the element that corresponds to the source of the eventinputEvent
- InputEvent that triggered the hyperlink eventtargetFrame
- the Frame to display the document in- Since:
- 1.7
-
-
Method Details
-
getTarget
returns the target for the link.- Returns:
- the target for the link
-