/* * @(#)FormSubmitEvent.java 1.3 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package javax.swing.text.html; import javax.swing.text.*; import java.net.URL; /** * FormSubmitEvent is used to notify interested * parties that a form was submited. * * @version 1.3 12/19/03 * @since 1.5 * @author Denis Sharypov */ public class FormSubmitEvent extends HTMLFrameHyperlinkEvent { /** * Represents an HTML form method type. *
GET
corresponds to the GET form methodPOST
corresponds to the POST from methodMethod.GET
or Method.POST
.
*/
public MethodType getMethod() {
return method;
}
/**
* Gets the form submission data.
*
* @return the string representing the form submission data.
*/
public String getData() {
return data;
}
private MethodType method;
private String data;
}