public class

FormSubmitEvent

extends HTMLFrameHyperlinkEvent
java.lang.Object
   ↳ java.util.EventObject
     ↳ javax.swing.event.HyperlinkEvent
       ↳ javax.swing.text.html.HTMLFrameHyperlinkEvent
         ↳ javax.swing.text.html.FormSubmitEvent

Class Overview

FormSubmitEvent is used to notify interested parties that a form was submited.

Summary

Nested Classes
enum FormSubmitEvent.MethodType Represents an HTML form method type. 
[Expand]
Inherited Fields
From class java.util.EventObject
Public Methods
String getData()
Gets the form submission data.
FormSubmitEvent.MethodType getMethod()
Gets the form method type.
[Expand]
Inherited Methods
From class javax.swing.text.html.HTMLFrameHyperlinkEvent
From class javax.swing.event.HyperlinkEvent
From class java.util.EventObject
From class java.lang.Object

Public Methods

public String getData ()

Gets the form submission data.

Returns
  • the string representing the form submission data.

public FormSubmitEvent.MethodType getMethod ()

Gets the form method type.

Returns
  • the form method type, either Method.GET or Method.POST.