1 /* 2 * Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of 3 * Technology, Institut National de Recherche en Informatique et en 4 * Automatique, Keio University). 5 * All Rights Reserved. http://www.w3.org/Consortium/Legal/ 6 */ 7 8 package org.w3c.dom.html; 9 10 import org.w3c.dom; 11 12 /** 13 * Organizes form controls into logical groups. See the FIELDSET element 14 * definition in HTML 4.0. 15 */ 16 public interface HTMLFieldSetElement extends HTMLElement { 17 /** 18 * Returns the <code>FORM</code> element containing this control.Returns 19 * null if this control is not within the context of a form. 20 */ 21 public HTMLFormElement getForm(); 22 } 23