/* * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE 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 submitted. * * @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;
}