- 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.- See Also:
- Serialized Form
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces declared in class javax.swing.event.HyperlinkEventHyperlinkEvent.EventType
 
- 
 - 
Field Summary- 
Fields declared in class java.util.EventObjectsource
 
- 
 - 
Constructor SummaryConstructors 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 SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetTarget()returns the target for the link.- 
Methods declared in class javax.swing.event.HyperlinkEventgetDescription, getEventType, getInputEvent, getSourceElement, getURL
 - 
Methods declared in class java.util.EventObjectgetSource, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
HTMLFrameHyperlinkEventpublic 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 event
- type- the event type
- targetURL- the affected URL
- targetFrame- the Frame to display the document in
 
 - 
HTMLFrameHyperlinkEventpublic 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 event
- type- the event type
- targetURL- the affected URL
- desc- a description
- targetFrame- the Frame to display the document in
 
 - 
HTMLFrameHyperlinkEventpublic 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 event
- type- the event type
- targetURL- the affected URL
- sourceElement- the element that corresponds to the source of the event
- targetFrame- the Frame to display the document in
 
 - 
HTMLFrameHyperlinkEventpublic 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 event
- type- the event type
- targetURL- the affected URL
- desc- a description
- sourceElement- the element that corresponds to the source of the event
- targetFrame- the Frame to display the document in
 
 - 
HTMLFrameHyperlinkEventpublic 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 event
- type- the event type
- targetURL- the affected URL
- desc- a description
- sourceElement- the element that corresponds to the source of the event
- inputEvent- InputEvent that triggered the hyperlink event
- targetFrame- the Frame to display the document in
- Since:
- 1.7
 
 
- 
 - 
Method Detail- 
getTargetpublic String getTarget() returns the target for the link.- Returns:
- the target for the link
 
 
- 
 
-